CLI Reference
Every subcommand and REPL slash command the agent exposes
The Minara Agent CLI has two surfaces:
- Pre-REPL subcommands:
minara <subcommand> [args]. Each runs once and exits. Scriptable. - REPL slash commands: typed inside the interactive chat.
Prefixed with
/. Everything else typed in the REPL goes to the agent as a natural-language prompt.
Bare minara and minara chat both drop straight into the REPL.
Every other subcommand runs once and exits.
Overview
- Subcommands: detailed reference
for every
minara <subcommand>. - Slash Commands: detailed
reference for every
/commandavailable inside the REPL.
Source of truth
| Surface | File |
|---|---|
| Subcommand dispatch | apps/agent/src/gateway/cli.ts |
| Subcommand implementations | apps/agent/src/gateway/*-cli.ts |
| REPL command registry | apps/agent/src/gateway/repl-commands.ts |
| Auth helpers | apps/agent/src/gateway/auth-cli.ts |
| Setup wizard | apps/agent/src/gateway/setup-wizard.ts |
Doc sync requirement
Adding, renaming, or removing any subcommand or slash command must update the pages in this section in the same commit. The convention is recorded in Conventions §6 and enforced on every PR.