Skip to main content

Command Catalog

This is a categorized map of the major built-in command families wired through src/commands.ts. It is intentionally organizational rather than exhaustive line-by-line command documentation, because the full surface also includes dynamic skills, plugin commands, and workflow-generated commands.

Session & Navigation

Session lifecycle
/clear/resume/session/rewind/exit
Source signals
commands/clear, commands/resume, commands/session, commands/rewind, commands/exit
Discovery / help
/help/status/stats/version
Source signals
commands/help, commands/status, commands/stats, commands/version
Output / clipboard
/copy/output-style/statusline
Source signals
commands/copy, commands/output-style, commands/statusline

Config, Permissions & Personalization

Core config
/model/config/permissions/privacy-settings
Source signals
commands/model, commands/config, commands/permissions, commands/privacy-settings
UX preferences
/theme/vim/keybindings/color
Source signals
commands/theme, commands/vim, commands/keybindings, commands/color
Execution posture
/plan/fast/effort/passes/sandbox-toggle
Source signals
commands/plan, commands/fast, commands/effort, commands/passes, commands/sandbox-toggle

Context, Memory & Files

Memory / compaction
/memory/compact/context
Source signals
commands/memory, commands/compact, commands/context
File / repo helpers
/files/diff/branch/rename
Source signals
commands/files, commands/diff, commands/branch, commands/rename
Hooks / tags
/hooks/tag
Source signals
commands/hooks, commands/tag

Review & Development Workflows

Reviews
/review/ultrareview/security-review
Source signals
commands/review, commands/security-review
Change workflows
/commit/pr_comments
Source signals
commands/commit, commands/pr_comments
Diagnostics / support
/doctor/feedback/bughunter/advisor
Source signals
commands/doctor, commands/feedback, commands/bughunter, commands/advisor

Extensions & Multi-Agent Features

MCP / plugins / skills
/mcp/plugin/reload-plugins/skills
Source signals
commands/mcp, commands/plugin, commands/reload-plugins, commands/skills
Agents / tasks
/agents/tasks
Source signals
commands/agents, commands/tasks
IDE / remote env
/ide/remote-env
Source signals
commands/ide, commands/remote-env

Auth, Usage & Installation

Auth / account
/login/logout/status
Source signals
commands/login, commands/logout, commands/status
Usage / limits
/usage/extra-usage/cost/rate-limit-options
Source signals
commands/usage, commands/extra-usage, commands/cost, commands/rate-limit-options
Setup / upgrade
/init/upgrade/terminalSetup/install-github-app/install-slack-app
Source signals
commands/init, commands/upgrade, commands/terminalSetup, commands/install-github-app, commands/install-slack-app

Feature-Gated & Internal Families

These families are present in src/commands.ts but only load when a feature flag, subscriber type, or internal build condition allows them.

Remote / bridge
bridgeremoteControlServerCommandteleportmobiledesktop
Source signals
feature-gated imports in src/commands.ts
Assistant / proactive
assistantbriefproactivesubscribe-pr
Source signals
feature-gated imports in src/commands.ts
Voice / peer / buddy flows
voicepeersbuddyfork
Source signals
feature-gated imports in src/commands.ts
Workflow / automation
workflowsdynamic workflow commands from WorkflowTool
Source signals
feature-gated imports and workflow command generation
Internal-only imports
autofix-pragents-platformsummaryant-tracebridge-kick
Source signals
INTERNAL_ONLY_COMMANDS in src/commands.ts

How the Registry Is Assembled

getCommands() merges several sources:

  1. Built-in commands from src/commands.ts
  2. Bundled skills
  3. User skill-directory commands
  4. Plugin commands and plugin skills
  5. Workflow-generated commands when workflow scripts are enabled
  6. Dynamic skills discovered during file operations

That is why the command surface is broader than the examples on the main Command System page.

Key Source Files

FilePurpose
src/commands.tsBuilt-in command registry and merge order
src/types/command.tsCommand type system (prompt, local, local-jsx)
src/commands/Built-in command implementations
src/tools/WorkflowTool/Workflow-generated command support when enabled