Type / in the TUI to see all available commands. Here’s the complete list.
Utility
| Command | Description |
|---|
/help | Show commands and shortcuts |
/clear | Clear the session |
/clear queue | Clear the message queue |
/quit | Exit Nyzhi |
/exit | Exit Nyzhi |
/status | Show session status and usage |
/commands | List custom commands |
/settings | Open settings menu |
/doctor | Run diagnostics |
/bug | Generate a bug report |
/stop | Stop continuation mechanisms |
Provider & Model
| Command | Description |
|---|
/model | Choose model |
/connect | Connect a provider |
/login | Show OAuth login status |
/trust | Show or set trust mode |
/thinking | Set thinking effort level |
/thinking toggle | Toggle thinking display |
/think | Toggle extended thinking |
/voice | Toggle voice input |
/profile | Switch model profile |
/style | Change output verbosity |
Session & Context
| Command | Description |
|---|
/sessions | List saved sessions |
/resume | Restore a saved session |
/session delete | Delete saved session |
/session rename | Rename current session |
/context | Show context window usage |
/compact | Compress conversation history |
/retry | Resend last prompt |
/search | Search session messages |
/export | Export conversation as markdown |
/handoff | Create session handoff for continuation |
/resume-work | Load latest handoff and resume |
/share | Share session to share.nyzhi.com |
Checkpoints
| Command | Description |
|---|
/checkpoint | Manage session checkpoints |
/checkpoint save | Save a named checkpoint |
/checkpoint list | List all checkpoints |
/checkpoint restore | Restore a checkpoint by ID or name |
| Command | Description |
|---|
/index | Force re-index codebase |
/index status | Show index stats |
/index off | Disable auto-context for session |
/mcp | List connected MCP servers |
/hooks | List configured hooks |
/memory | View auto-memory index and status |
/memory toggle | Toggle auto-memory |
/memory clear | Clear project memory |
/docs | View/manage cached documentation |
/docs add | Cache docs by key from URL or text |
/docs get | Retrieve cached docs by key |
/docs clear | Clear cached docs |
/verify | Detect and list project checks |
/notify | Configure notifications |
/enable_exa | Set up Exa web search |
Planning & Execution
| Command | Description |
|---|
/autopilot | Autonomous multi-step execution |
/deep | Deep mode: autonomous research then implement |
/qa | Run autonomous QA cycling |
/review | Code review mode |
/refactor | Structured refactoring workflow |
/walkthrough | Generate codebase walkthrough diagram |
/quick | Ad-hoc task with commit discipline |
/map | Map codebase stack/architecture/conventions |
/init-project | Structured project initialization with research |
/plan | View or create execution plans |
/persist | Enable verify-and-fix mode |
Teams & Subagents
| Command | Description |
|---|
/team | Spawn coordinated sub-agents |
/teams-config | List teams and config |
/teams-config show | Detailed team view |
/teams-config set | Set team defaults |
/teams-config member | Set member override |
/teams-config reset | Clear team overrides |
/subagent-config | Show model overrides per role |
/subagent-config set | Set model for role |
/subagent-config reset | Clear model overrides |
/agents | List available agent roles |
Theme & UX
| Command | Description |
|---|
/theme | Choose theme |
/accent | Change accent color |
/bg | Manage background tasks |
/background | Alias for /bg |
Worktree & Undo
| Command | Description |
|---|
/worktree | Manage git worktrees |
/worktree create | Create isolated worktree |
/worktree list | List worktrees |
/worktree merge | Merge worktree back |
/worktree remove | Remove worktree |
/undo | Undo last file change |
/undo all | Undo all file changes in session |
/undo git | Restore all files from git HEAD |
Other
| Command | Description |
|---|
/analytics | Session analytics and friction detection |
/changes | List file changes this session |
/diff | Show file changes as diffs |
/editor | Open $EDITOR for multi-line input |
/image | Attach image to next prompt |
/init | Initialize .nyzhi/ project config |
/init-deep | Generate AGENTS.md files across project |
/learn | Create or list learned skills |
/notepad | View saved notepads |
/todo | View todo list and progress |
/todo enforce on | Enable todo enforcer |
/todo enforce off | Pause todo enforcer |
/todo clear | Clear 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
| Type | Behavior |
|---|
| Instant | Runs locally without a model turn |
| StreamingSafe | Can execute while the agent is streaming |
| Prompt | Dispatched as a prompt to the agent |
Next Steps