8gent Code
Reference

This reference is generated from the canonical registry in apps/tui/src/lib/slash-commands.ts. Aliases are listed exactly as the dispatcher accepts them.

Core

CommandAliasesDescription
/help/h, /?Show available commands
/clear/cls, /cClear the chat screen
/quit/q, /exitExit 8gent
/status/s, /stShow session status
/plan/plShow current execution plan
CommandAliasesDescription
/kanban/k, /boardToggle kanban board view
/predict/p, /nextShow predicted next steps
/avenues/a, /pathsShow all planned avenues
/evidence/ev, /proofShow full evidence breakdown for this session

Models & Routing

CommandAliasesDescriptionUsage
/model/mSelect LLM model (↑↓ to scroll)/model [name]
/provider/prSelect LLM provider (↑↓ to scroll)/provider [name]
/router/route, /routingTask router. Assign models to task categories/router [on|off|set|test|stats|status]
/language/lang, /lSet response language/language [code]
/infinite/inf, /∞Autonomous mode until done/infinite [task]

Personalization

CommandAliasesDescriptionUsage
/onboarding/onboard, /setup, /introStart or restart personalization setup/onboarding
/preferences/prefs, /settingsView or edit preferences/preferences [category]
/skip/laterSkip current onboarding question/skip [all]
/voice/vVoice TTS settings/voice [on|off|test]
/animations/anim, /fxPreview ASCII animations/animations [matrix|fire|dna|stars|dots|glitch|confetti|wave|all]
/adhd/focusADHD mode. Text + audio focus toolkit/adhd [on|off|lofi|rainsound|whitenoise|ambient|classical|stop]
/settingsOpen the settings view/settings

Music & Audio

CommandAliasesDescriptionUsage
/music/audio, /soundscapeGenerate & play focus music (ACE-Step)/music [lofi|rain|white|ambient|piano|gen <prompt>|stop|config]
/dj/play, /radioDJ Eight. YouTube, radio, produce, mix/dj [play|radio|produce|pause|stop|skip|np|vol|loop|queue|dl|bpm|mix]
/quiet/mute, /shut, /silenceStop the launch instrumental immediately. Kills any in-flight intro music/quiet

Sessions

CommandAliasesDescriptionUsage
/session/sessNamed session management/session [name|list|resume] <args>
/resume/resResume a recent session (pick from last 5)/resume
/continue/cont, /lastContinue most recent session automatically/continue
/history/hist, /sessionsBrowse all past sessions/history
/compact/compress, /summarizeSummarize and compress current conversation/compact
/fork/fFork conversation at current message/fork [label]
/branch/branches, /brList or switch conversation branches/branch [list|switch <id>]
/export/saveExport current session as self-contained HTML/export
/chat/talkToggle chat mode. Background work continues/chat

Multi-Agent

CommandAliasesDescriptionUsage
/agent/agents, /agManage sub-agents/agent [list|spawn|kill|auto|settings]
/spawnSpawn an external agent CLI as a new tab/spawn <claude|codex|hermes|openclaw|aider>
/rename/renRename current tab/rename <new name>

Skills & Tools

CommandAliasesDescriptionUsage
/skills/skList and manage skills/skills [list|search|info] [name]
/quarantine/quar, /sandboxManage skill quarantine/quarantine [add|scan|list|release|reject] [args]
/toolshed/shed, /toolsQuery available tools and capabilities/toolshed [list|search|stats]
/design/d, /ui, /styleSuggest design systems for current task/design [task description]
/vision/vis, /ocr, /eyeVision & OCR model settings/vision [status|model|ocr|pull] [args]

Integrations

CommandAliasesDescriptionUsage
/auth/login, /accountAuthentication. Login, logout, status/auth [login|logout|status]
/github/ghGitHub integration. Issues, PRs, repos/github [issues|pr|repos|status]
/telegram/tgTelegram integration and setup/telegram [status|setup]
/deploy/redeployTrigger Vercel deploy of current project/deploy
/vercel/vcVercel deployment management/vercel [status|env|logs|projects|domains]
/cron/jobs, /scheduleManage scheduled cron jobs/cron [list|add|remove|enable|disable]

Companions & Debug

CommandAliasesDescriptionUsage
/pet/companion, /lileightSpawn Lil Eight dock companion + show companion card/pet [start|stop|deck|card]
/debug/inspect, /logsSession debugger/debug [sessions|health|tools|errors|inspect <id>|export <id>]

Hotkeys

The HUD music player accepts hotkeys when a track is loaded (no slash needed):

HotkeyAction
⌃⇧PPlay / pause toggle
⌃⇧BPrevious track
⌃⇧NNext track
⌃⇧↑Volume up
⌃⇧↓Volume down
⌃⇧MMute toggle

All Ctrl+Shift+ to avoid clashing with chat input.

Adding new commands

New commands are registered in apps/tui/src/lib/slash-commands.ts (canonical name, aliases, description, optional usage hint), then dispatched in apps/tui/src/app.tsx. The smoke harness check slash/dispatch-coverage ensures every registered name has a dispatch case before merge.