Documentation

Slash Commands

Every TUI slash command — quick reference with descriptions.

Edit on GitHub

Type / in the TUI to see all available commands. Here’s the complete list.

Utility

CommandDescription
/helpShow commands and shortcuts
/clearClear the session
/clear queueClear the message queue
/quitExit Nyzhi
/exitExit Nyzhi
/statusShow session status and usage
/commandsList custom commands
/settingsOpen settings menu
/doctorRun diagnostics
/bugGenerate a bug report
/stopStop continuation mechanisms

Provider & Model

CommandDescription
/modelChoose model
/connectConnect a provider
/loginShow OAuth login status
/trustShow or set trust mode
/thinkingSet thinking effort level
/thinking toggleToggle thinking display
/thinkToggle extended thinking
/voiceToggle voice input
/profileSwitch model profile
/styleChange output verbosity

Session & Context

CommandDescription
/sessionsList saved sessions
/resumeRestore a saved session
/session deleteDelete saved session
/session renameRename current session
/contextShow context window usage
/compactCompress conversation history
/retryResend last prompt
/searchSearch session messages
/exportExport conversation as markdown
/handoffCreate session handoff for continuation
/resume-workLoad latest handoff and resume
/shareShare session to share.nyzhi.com

Checkpoints

CommandDescription
/checkpointManage session checkpoints
/checkpoint saveSave a named checkpoint
/checkpoint listList all checkpoints
/checkpoint restoreRestore a checkpoint by ID or name

Project Tooling

CommandDescription
/indexForce re-index codebase
/index statusShow index stats
/index offDisable auto-context for session
/mcpList connected MCP servers
/hooksList configured hooks
/memoryView auto-memory index and status
/memory toggleToggle auto-memory
/memory clearClear project memory
/docsView/manage cached documentation
/docs addCache docs by key from URL or text
/docs getRetrieve cached docs by key
/docs clearClear cached docs
/verifyDetect and list project checks
/notifyConfigure notifications
/enable_exaSet up Exa web search

Planning & Execution

CommandDescription
/autopilotAutonomous multi-step execution
/deepDeep mode: autonomous research then implement
/qaRun autonomous QA cycling
/reviewCode review mode
/refactorStructured refactoring workflow
/walkthroughGenerate codebase walkthrough diagram
/quickAd-hoc task with commit discipline
/mapMap codebase stack/architecture/conventions
/init-projectStructured project initialization with research
/planView or create execution plans
/persistEnable verify-and-fix mode

Teams & Subagents

CommandDescription
/teamSpawn coordinated sub-agents
/teams-configList teams and config
/teams-config showDetailed team view
/teams-config setSet team defaults
/teams-config memberSet member override
/teams-config resetClear team overrides
/subagent-configShow model overrides per role
/subagent-config setSet model for role
/subagent-config resetClear model overrides
/agentsList available agent roles

Theme & UX

CommandDescription
/themeChoose theme
/accentChange accent color
/bgManage background tasks
/backgroundAlias for /bg

Worktree & Undo

CommandDescription
/worktreeManage git worktrees
/worktree createCreate isolated worktree
/worktree listList worktrees
/worktree mergeMerge worktree back
/worktree removeRemove worktree
/undoUndo last file change
/undo allUndo all file changes in session
/undo gitRestore all files from git HEAD

Other

CommandDescription
/analyticsSession analytics and friction detection
/changesList file changes this session
/diffShow file changes as diffs
/editorOpen $EDITOR for multi-line input
/imageAttach image to next prompt
/initInitialize .nyzhi/ project config
/init-deepGenerate AGENTS.md files across project
/learnCreate or list learned skills
/notepadView saved notepads
/todoView todo list and progress
/todo enforce onEnable todo enforcer
/todo enforce offPause todo enforcer
/todo clearClear todos

Custom Commands

You can add project-specific slash commands by creating markdown files in .nyzhi/commands/:

<!-- .nyzhi/commands/review.md -->
Review the staged changes. Focus on bugs, security issues, and missing tests.
Provide feedback as a numbered list.

Custom commands are merged into the completion candidates automatically.

Command Types

TypeBehavior
InstantRuns locally without a model turn
StreamingSafeCan execute while the agent is streaming
PromptDispatched as a prompt to the agent

Next Steps