LogoRobo.js

CLI

Terminal commands for inspecting AI engine state and token usage during development.

The AI plugin extends the robo dev interactive terminal with /ai commands. Monitor your AI engine, check token usage, and inspect configuration without leaving your dev session.

Terminal Commands

/ai

Show available AI subcommands:

/ai

/ai status

Display an AI engine status dashboard:

/ai status

Shows:

  • Engine info (name, version, model)
  • Ready state
  • Supported features (voice, vision, voice transcription)
  • Active MCP servers
  • Voice session status
  • Channel configuration (whitelist and restrict lists)

/ai usage

View token usage statistics:

/ai usage
OptionDescriptionDefault
-w, --window <string>Time window: day, week, month, or lifetimelifetime
-m, --model <string>Filter by model identifierAll models
-p, --page <number>Page number1
-n, --per-page <number>Items per page15
# Show daily usage
/ai usage -w day

# Show usage for a specific model
/ai usage -m gpt-4o

# Show weekly usage, page 2
/ai usage -w week -p 2

Displays token counts (input, output, total) per model. Shows configured token limits when present.

Next steps

On this page