Docs

Slash Commands

Slash commands are shortcuts you type in the Agenties chat input to navigate, configure, and control your agent workspace. Type a / in the chat bar to see an autocomplete menu, or use/help for a full list.

Tip:Custom slash commands can be added by placing skill files in ~/.claude/commands/. The heartbeat self-improvement agent can write new commands here automatically. See the Heartbeats docs for details.

Jump to different sections of the Agenties UI.

CommandArgumentsDescription
/activityOpen the Activity feed — a timeline of all agent events, spawns, completions, and sync events.
/agentsOpen the Agents panel — live view of all running and recent agent processes.
/chatReturn to the main chat with the orchestrator.
/dashboardOpen the project dashboard — summary of open issues, active agents, and recent activity.
/heartbeatsOpen the Heartbeats panel — configure and view scheduled agent spawns.
/historyOpen the message history — full mailbox timeline with type filters.
/issuesOpen the issue tracker.
/managerOpen the Intelligent Manager config — tune the orchestrator's system prompt and behaviour.
/routinesOpen the Routines panel — manage schedule, API, and GitHub automation routines.
/settingsOpen Settings.
/teamOpen the Team tab — manage your agent roster.

Configuration

Adjust the current session's model, effort, and other settings.

CommandArgumentsDescription
/model<model-id>Set the model for the current orchestrator session. Example: /model claude-opus-4-7. Takes effect on the next orchestrator turn.
/effort<level>Set the effort level for the current session: off, low, medium, high, xhigh, or max.
/memoryShow the current shared state, vault connection status, and last 3 session summaries.
/permissionsOpen the permissions manager — view auto-allowed tools and permission history.
/mcpShow the status of all connected MCP servers and their available tools.

Information

Query usage, costs, and project status.

CommandArgumentsDescription
/costShow token usage and estimated cost for the current session and the last 7 days, broken down by model.
/statusShow a compact status summary: active agents, open issues, current phase, and sync status.
/doctorRun a health check: verify Claude Code CLI, MCP server, vault connection, and sync status. Suggests fixes for any issues found.
/usageDetailed usage statistics: tokens per agent role, cost per team member, tasks per day.
/tokensShow the current context window usage for the orchestrator session — useful for deciding when to /wrapup.

Session

Manage the orchestrator session, export data, and control context.

CommandArgumentsDescription
/clearClear the current orchestrator session and start fresh. Shared state and vault are preserved. The old session ID is discarded.
/export[markdown|json]Export the current chat history. Default: markdown. JSON export includes full message metadata.
/retryResend the last message. Useful if the orchestrator produced a poor response or timed out.
/initInitialise context: load CONTEXT.md, decisions.md, and recent session notes into the orchestrator. Run at the start of each new session.
/wrapupClose the session: write a structured summary to vault/sessions/YYYY-MM-DD.md, upload to NotebookLM, and start a fresh orchestrator session.
/projects[N]List recent projects. N defaults to 5. Click a project name to switch to it.
/vault[path]Browse the project vault. If a path is provided, show that note's content directly in the chat.

General

Utility commands.

CommandArgumentsDescription
/help[command]Show all available commands, or detailed help for a specific command.
/stopStop all running agents immediately. Triggers the BFS cancel cascade. Equivalent to clicking the Stop button in the UI.

Custom commands

You can create your own slash commands by adding Markdown files to ~/.claude/commands/. The filename (without .md) becomes the command name. The file content is the system prompt for that command.

~/.claude/commands/sprint-review.md
---
description: Generate a sprint review summary from this week's done issues
---

Read all issues with status=done that were closed this week using list_issues.
For each issue, summarise what was implemented.
Write a sprint review document to vault/reports/YYYY-WW-sprint.md.
Post a brief summary to the chat when done.

This creates a /sprint-review command. Type it in the chat and the orchestrator runs the command as a new turn with the custom prompt injected.