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) |
/memory-keys [prefix] | List memory key families and stored keys by tier/store |
/contacts | Preview: list AlgoChat contacts (requires fledge-plugin-algochat or fledge-plugin-algochat-rs) |
/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)
ollama (ollama, model: qwen3.5:cloud)
Pass a provider name to switch:
> /model ollama
✓ Switched to ollama (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 broad memory-recall --query. 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...
For exact key or key-family lookup, call the plugin directly:
fledge plugins run memory-recall --key user-leif-1
fledge plugins run memory-recall --prefix user-leif
/memory-keys [prefix]
Lists the flat memory key families, then stored keys from session short-term SQL, project ephemeral memory, and long-term memory:
> /memory-keys user-leif
Memory key families (flat):
...
Stored keys:
- [long-term/mutable] user-leif-preference-1
Use this when you need to see which memory keys exist and whether they are short-term session rows, ephemeral project rows, or long-term rows.
/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.