Command Reference
Type / in the editor to see the command palette with fuzzy search.
All commands are prefixed with /.
Slim mode note: In om (slim mode), /help shows
core commands only — design tree, cleave, delegate, and milestone commands are hidden to
keep things focused. Type /help all to see every command, or /warp
to switch to full mode. Hidden commands still work when typed directly.
Model & Inference
| Command | Description |
/model [name] | View or switch model. Opens selector popup, or pass a model ID directly. |
/think [level] | Set thinking level: off, low, medium, high. |
/context [class] | Select context class: squad (128k), maniple (272k), clan (400k), legion (1M). |
/context compact | Trigger context compaction to free context window space. |
/context clear | Save the current session and start a fresh conversation with cleared live context. |
/detail [mode] | Toggle tool display: compact or detailed. |
Session & Memory
| Command | Description |
/stats | Session telemetry — turns, tool calls, tokens, duration. |
/new | Save the current session and start a fresh one. |
/memory | Memory statistics — facts, episodes, working memory. |
/sessions | List saved sessions. Resume with --resume flag. |
/note [text] | Capture a note for later (persists across sessions). |
/notes [clear] | Show or clear pending notes. |
Authentication
| Command | Description |
/login [provider] | Log in to a provider such as anthropic, openai-codex, openai, openrouter, or ollama-cloud. |
/logout [provider] | Log out of a provider. |
/auth [action] | Authentication management: status, unlock. |
/secrets [action] | Manage stored secrets: list, set, get, delete. /secrets set NAME opens hidden input for raw values; /secrets get NAME checks resolution without printing the value. |
/vault [action] | HashiCorp Vault integration: status, unseal, login, configure, init-policy. |
Secrets
| Command | Description |
/secrets | Show configured secret names and recipes. Values are never shown. |
/secrets set | Open the common-secret selector. |
/secrets set VAULT_ROOT_TOKEN | Capture an arbitrary operator secret through hidden input and store it in the OS keyring. |
/secrets set VAULT_TOKEN keyring:VAULT_ROOT_TOKEN | Create a keyring alias recipe without copying or exposing the value. |
/secrets get VAULT_ROOT_TOKEN | Check that a secret resolves. This does not print the value. |
/secrets delete VAULT_ROOT_TOKEN | Remove the recipe and best-effort keyring entry. |
Development lifecycle
| Command | Description |
/init [action] | Initialize project — scan & migrate agent conventions. Args: scan, migrate. |
/migrate [source] | Import from other tools: auto, claude-code, codex, cursor, aider. |
/checkin | Triage what needs attention now — open designs, active changes, recent issues. |
/status | Show harness status — providers, secrets, routing state, and runtime health. |
/milestone [action] | Release milestone management: freeze, status. |
/delegate [status] | Delegate task management across sessions. |
/chronos [sub] | Date/time context: week, month, quarter, relative, iso, epoch, tz, range, all. |
/update | Check for updates, inspect release notes, and install verified stable, RC, or nightly builds depending on the selected update lane. |
Long-Running Automation
| CLI | Description |
omegon sentry | Run the autonomous task executor with trigger intake, task budgets, run logs, and a local HTTP control plane. |
omegon run | Run one bounded headless task and exit with a structured status code. |
omegon serve | Run the persistent daemon/control-plane process. |
omegon acp | Run Agent Client Protocol over stdio or WebSocket. |
OpenSpec
OpenSpec lifecycle operations are currently agent tool actions on
openspec_manage, not /opsx:* slash commands.
| Tool action | Description |
openspec_manage(status) | Show all active OpenSpec changes. |
openspec_manage(get) | Show one change and its spec/task state. |
openspec_manage(propose) | Create a new OpenSpec change proposal. |
openspec_manage(add_spec) | Add specs to a change. |
openspec_manage(register_tasks) | Register task progress from tasks.md. |
openspec_manage(register_test_file) | Register required test coverage before implementation. |
openspec_manage(archive) | Archive a verifying change to baseline. |
Interface
| Command | Description |
/auspex | Show Auspex attachability and handoff status. |
/auspex open | Launch the primary browser surface. If the local compatibility server is not running yet, Omegon starts it first. |
/dash | Open Omegon's local browser compatibility/debug surface (real-time live state over WebSocket). |
/focus | Toggle selected-segment focus mode for terminal-native text selection. |
/warp | Toggle live between om (slim) and omegon (full) runtime posture. |
/shackle | Force slim om-style posture: copy-friendly, conversation-first, lower-pressure surfaces. |
/unshackle | Force full omegon posture with the broader harness surfaces. |
/tree [sub] | Design tree summary: list, frontier, ready, blocked. |
/tutorial [action] | Interactive tutorial overlay. Primary paths: /tutorial for the current-project flow and /tutorial demo for the scripted showcase. Management args: status, reset. |
/splash | Replay the splash animation. |
System
| Command | Description |
/version | Show build version, git SHA, and build date. |
/help | Show available commands (filtered in slim mode). Use /help all for the complete list. |
/exit | Quit (or double Ctrl+C). |
Agent tools
In addition to slash commands, the agent has access to structured tools that it calls autonomously.
Always available
These tools are available in both om (slim) and omegon (full) modes:
read / edit / write / bash / change / commit — file and system operations with atomic edits and commits memory_store / memory_recall / memory_query / memory_episodes — persistent project memory across sessions web_search — multi-provider web search api_* — project REST API tools generated from .omegon/openapi.toml when configured codebase_search — ranked discovery across code and project knowledge chronos — authoritative date/time whoami — auth status across development tools manage_tools — enable/disable tools or whole tool groups
Full mode only
These tools are hidden from the agent in slim mode to keep the coding loop focused. Switch to full mode with /warp or enable them individually with manage_tools.
design_tree / design_tree_update — query and mutate the design knowledge graph openspec_manage — manage OpenSpec lifecycle (propose, spec, verify, archive) cleave_assess / cleave_run — assess complexity and execute parallel decomposition delegate / delegate_result / delegate_status — cross-session task delegation lifecycle_doctor — audit lifecycle and design state health set_model_tier / set_thinking_level / switch_to_offline_driver — adjust inference parameters or drop to local/offline execution view — render images and visual content serve — manage long-lived background processes ask_local_model / list_local_models / manage_ollama — local inference and Ollama control codebase_index — full codebase indexing session_log — session transcript management
Tool groups
Tools are organized into named groups that can be toggled together via the manage_tools tool:
harness-lifecycle — design_tree, design_tree_update, openspec_manage cleave — cleave_assess, cleave_run delegate — delegate, delegate_result, delegate_status memory-advanced — memory_connect, memory_search_archive, memory_ingest_lifecycle model-control — set_model_tier, switch_to_offline_driver, set_thinking_level lifecycle-advanced — lifecycle_doctor, codebase_search, codebase_index openapi-tools — generated api_* tools for project-configured OpenAPI specs