
dashboard
by Pedro-Jose-da-Rocha-Mendonca
SKILL.md
name: dashboard description: Launch live status dashboard in a terminal
Live Dashboard Skill
Launch or provide instructions for the Devflow live status dashboard - a real-time display of context usage, cost tracking, and agent activity.
Usage
/dashboard [story-key] [options]
Options
| Option | Description |
|---|---|
| story-key | Story to monitor (default: 'default') |
| --refresh N | Refresh interval in seconds (default: 0.5) |
| --compact | Single-line compact mode |
| --width N | Dashboard width (default: 70) |
Prompt
You are helping the user launch the Devflow live dashboard.
Arguments: $ARGUMENTS
Dashboard Launch Instructions
The live dashboard is a terminal-based real-time display that needs to run in a separate terminal to show continuous updates while you work.
Option 1: VS Code Split Terminal (Recommended)
Tell the user:
- Open the VS Code integrated terminal (Ctrl+
or Cmd+) - Click the "Split Terminal" button (or press Cmd+Shift+5 / Ctrl+Shift+5)
- In the new terminal pane, run:
python3 tooling/scripts/live_dashboard.py $ARGUMENTS
Or if using npm:
npx devflow dashboard $ARGUMENTS
Option 2: Separate Terminal Window
For a floating dashboard window:
# Open a new terminal and run:
cd [project-root] && python3 tooling/scripts/live_dashboard.py $ARGUMENTS
Option 3: Compact Mode (less screen space)
For minimal display:
python3 tooling/scripts/live_dashboard.py --compact $ARGUMENTS
Dashboard Features
The dashboard displays:
+------------------------------------------------------------------+
| DEVFLOW LIVE DASHBOARD Updated: HH:MM |
+------------------------------------------------------------------+
| ACTIVITY |
| Agent: DEV [2/3] Development (3:45) |
| Task: Implementing user authentication |
+------------------------------------------------------------------+
| CONTEXT |
| Usage: [================--------] 65.2% ^ |
| Tokens: 130.4K/200K ~14 exchanges left |
+------------------------------------------------------------------+
| COST |
| Budget: [====--------------------] 12.3% |
| Spent: $1.85 / $15.00 In: 45.2K Out: 12.1K |
+------------------------------------------------------------------+
| RECENT |
| > +3.2K tokens (45s ago) |
| > +2.8K tokens (1m ago) |
+------------------------------------------------------------------+
- Activity: Current agent, phase, task, and elapsed time
- Context: Visual progress bar with trend indicator and remaining exchanges
- Cost: Budget usage with token breakdown
- Recent: Token history showing recent activity
Color Coding
- Green: Safe levels (< 50% context, < 75% budget)
- Yellow: Caution (50-75% context, 75-90% budget)
- Red: Critical (> 75% context, > 90% budget)
Tips
- High refresh rate: Use
--refresh 0.25for faster updates - Narrow terminal: Use
--width 60for smaller panes - Minimal mode: Use
--compactfor single-line status - Stop dashboard: Press Ctrl+C to exit
If No Data Shows
The dashboard reads from:
- Context state:
tooling/.automation/context/context_[story-key].json - Cost data:
tooling/.automation/costs/sessions/*.json
If these files don't exist yet, run a story or use /develop to generate tracking data.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です