Skip to main content
vigie docs GitHub ↗

CLI reference

Every vigie command — daemon control, the dashboard, and sessions.

Daemon

Start the daemon in the background:

vigie daemon start

Start the daemon in the foreground (logs to stdout, useful for debugging):

vigie daemon start --fg

Stop the daemon:

vigie daemon stop

Check daemon status:

vigie daemon status

Dashboard

Open the dashboard in your default browser (localhost:19191):

vigie open

Agents & sessions

Run Claude Code interactively:

vigie claude

Run Claude Code with a one-shot prompt:

vigie claude -p "Your prompt here"

List all sessions (active and historical):

vigie session list

Attach to an active session (watch output in the terminal):

vigie session attach --id <session-id>

Resume a paused or ended session:

vigie session resume --id <session-id>

Where to next