Slash Commands
In the interactive REPL, lines beginning with / are treated as
commands rather than tasks. They run synchronously and don’t engage the
LLM.
Reference
| Command | Action |
|---|---|
/help | List all commands |
/model | Show the active provider and list configured providers |
/model <name> | Swap the active provider mid-session and rebuild the system prompt |
/memory <query> | Search recorded memories (ephemeral / mutable / permanent) |
/contacts | List AlgoChat contacts (requires fledge-plugin-algochat) |
/status | Show active provider, model, and current state |
/verify | Run fledge lanes run verify manually |
/sessions | List past sessions (most recent 10) |
/quit, /exit | Exit the REPL |
Detail
/model
With no argument, lists configured providers and highlights the active one:
> /model
active: anthropic (claude-sonnet-4-6)
claude (anthropic, model: claude-sonnet-4-6)
local (ollama, model: qwen3.5:cloud)
Pass a provider name to switch:
> /model local
✓ Switched to local (model: qwen3.5:cloud)
The system prompt is rebuilt with the new provider/model identity but the conversation history is preserved.
/memory <query>
Wrapper around fledge plugins run memory-recall. Returns the top
matches across all tiers:
> /memory parser refactor
task-add error handling to the parser [ephemeral] -- Added Result returns and three error variants...
/verify
Run the verify lane on demand without engaging the LLM. Useful for sanity-checking changes before asking the agent to continue:
> /verify
Verifying...
✓ Verification passed.
/status
> /status
· Provider: anthropic (claude-sonnet-4-6) | State: Idle
Cancellation
Ctrl+C cancels the in-flight task, returns to Idle, and prints any
files that were modified before the cancel landed.