Commands
$ arqzero --docs-commands
Type any command in the ArqZero TUI input. All commands start with /. Tab completion is supported.
$ /help ............. list all commands
$ /tools ............ list available tools
$ /undo ............. revert last file change
$ /think ............ deep reasoning mode
Basic
6Available to all users.
/helpShow all available commands and usage.
/clearClear the conversation and start fresh.
/configView current configuration values.
/quitExit ArqZero.
/statusShow session info: model, tokens, cost.
/modelSwitch the active LLM model.
Session
6Manage conversation state and history.
/compressCompact the conversation to reduce token usage.
/memoryView and manage cross-session memory.
/undoRewind to the last checkpoint before a file edit.
/contextShow what context is loaded in the current session.
/costDisplay token usage and estimated cost.
/exportExport the conversation transcript.
Agent Control
6Direct the agent behavior and capabilities.
/thinkForce extended reasoning before the next response.
/agentsList active sub-agents and their status.
/loopRun the agent in a loop until a condition is met.
/vimToggle vim-style keybindings in the TUI.
/permissionsView and modify tool permission levels.
/toolsList all available tools and their status.
System
8Setup, plugins, and administration.
/setupInteractive first-run configuration wizard.
/checkRun health checks on config, API keys, and tools.
/reload-pluginsHot-reload all plugins without restarting.
/pluginInstall, remove, or list plugins.
/loginAuthenticate with a provider account.
/logoutClear stored authentication credentials.
/upgradeCheck for and install ArqZero updates.
/skillList or invoke registered skills.
Custom Commands
Create your own slash commands by adding Markdown files to .arqzero/commands/ in your project directory.
# .arqzero/commands/deploy.md
Run the deployment pipeline for $ARGUMENTS.
1. Build the project
2. Run all tests
3. Deploy to the specified environment
Then use it: /deploy staging