Skip to content

Commands

claude-dashboard provides four commands for setup, usage checking, shell integration, and updating.

Configure the status line display mode, language, plan, and theme.

Terminal window
# Interactive mode (asks questions)
/claude-dashboard:setup
# Direct mode with arguments
/claude-dashboard:setup [displayMode] [language] [plan] ["customWidgets"]
ArgumentOptionsDefaultDescription
displayModecompact, normal, detailed, customcompactNumber of lines and widget selection
languageauto, en, koautoUI language
planmax, promaxSubscription plan (affects available rate limit widgets)
customWidgets"widget1,widget2|widget3"Custom layout (only for custom mode)
Terminal window
/claude-dashboard:setup # Interactive
/claude-dashboard:setup compact # 1 line, defaults
/claude-dashboard:setup normal en pro # 2 lines, English, Pro
/claude-dashboard:setup detailed ko max # 5 lines, Korean, Max
/claude-dashboard:setup custom auto max "model,context,cost|projectInfo,todoProgress"
  • The status line updates on the next message after setup
  • Run this command again at any time to change settings
  • Interactive mode is best for preset selection; for full widget control, use direct mode or edit the JSON file directly

Check usage limits for all installed AI CLIs and get a recommendation for which one has the most available capacity.

Terminal window
/claude-dashboard:check-usage # Interactive output with colors
/claude-dashboard:check-usage --json # JSON output for scripting
/claude-dashboard:check-usage --lang ko # Specify language
/claude-dashboard:check-usage --lang en # Specify language

Shows usage for each installed CLI:

  • Claude: 5h and 7d rate limits with reset times
  • Codex: 5h and 7d limits with plan info (if installed)
  • Gemini: Usage percentage with model info (if installed)
  • z.ai: Token and MCP usage with model info (if configured)

At the bottom, recommends the CLI with the lowest current usage.

Add a check-ai shell alias to quickly check all AI CLI usage from your terminal. Supports macOS/Linux (zsh/bash) and Windows (PowerShell).

Terminal window
/claude-dashboard:setup-alias

Once the alias is installed, you can run it directly from your terminal (outside of Claude Code):

Terminal window
check-ai # Pretty output
check-ai --json # JSON output for scripting
  • macOS / Linux: Adds a shell function to ~/.zshrc or ~/.bashrc
  • Windows: Adds a PowerShell function to your PowerShell profile
  • The function dynamically finds the latest plugin version, so it continues to work after updates
  • Run this command again if you need to reinstall the alias
  • The alias works independently of Claude Code

Update the statusLine path in settings.json to point to the latest cached plugin version.

Terminal window
/claude-dashboard:update

Run this command after updating the plugin via /plugin update claude-dashboard. It ensures that the statusLine path in your settings points to the latest installed version.

  1. Finds the latest version in the plugin cache directory
  2. Updates the statusLine.command path in ~/.claude/settings.json
  3. Shows the previous and new version paths

After running this command, restart Claude Code for the changes to take effect.