Slash Commands
Kollab CLI includes powerful slash commands for common operations. Type / in the input to see available commands.
Quick Reference
/helpShow all available commands
/saveSave conversation to file
/profileSwitch LLM profile
/agentSwitch to different agent
/skillLoad/unload skills
/branchCreate git branch from context
/clearClear conversation history
/matrixEnter the Matrix effect
Conversation Commands
/save [filename]CoreSave the current conversation to a file. Supports JSON and Markdown formats.
/save conversation.json/save notes.md/save# Uses default filename/clearCoreClear the current conversation history and start fresh. Does not affect saved files.
/clear/history [n]CoreShow recent conversation history. Optionally specify number of messages to show.
/history# Show last 10 messages/history 5# Show last 5 messagesConfiguration Commands
/profile [name]ConfigSwitch to a different LLM profile. Shows available profiles if no name provided. Use the modal's "Save to Config" option to persist environment variables to config.json.
/profile# List profiles/profile anthropic# Switch to anthropic/profile local# Switch to local OllamaCLI Flag: Use --profile NAME --save when launching to auto-create a profile from env vars and save it to config.
/agent [name]ConfigSwitch to a different agent. Agents are custom configurations with specialized system prompts and skills.
/agent# Show current agent/agent lint-editor# Switch to lint-editor agent/agents# List all available agents/skill [name]ConfigLoad a skill into the current session. Skills are markdown files that append instructions to the system prompt.
/skill fix-file# Load the fix-file skill/skill -u fix-file# Unload a skill/skills# List available skills/model [name]ConfigChange the current model within the active profile.
/model gpt-4o-mini/model claude-3-5-haiku-20241022/configConfigShow current configuration including active profile, model, and settings.
/configGit Commands
/branch [name]GitCreate a new git branch based on the current conversation context. AI will suggest a branch name if not provided.
/branch# AI suggests name/branch feature/add-auth/commitGitGenerate a commit message based on staged changes. Review and confirm before committing.
/commitUtility Commands
/help [command]UtilityShow help for all commands or a specific command.
/help# All commands/help save# Help for /save/exitUtility Exit Kollab CLI. Also available via Ctrl+D or Ctrl+C.
/exit/matrixFunEnter the Matrix. A fun terminal effect. Press any key to exit.
/matrixPlugin Commands
Plugins can register custom slash commands. Use /help to see all available commands including those added by plugins.
See the Quick Start Guide for examples of creating custom plugin commands.
Keyboard Shortcuts
| Shortcut | Action |
|---|---|
Enter | Submit message |
Shift+Enter | New line (multi-line input) |
Ctrl+C | Cancel current operation / Exit |
Ctrl+D | Exit Kollabor |
Up Arrow | Previous input from history |
Down Arrow | Next input from history |
Tab | Command/path autocomplete |