DevTeam Status Command banner
michael-harris michael-harris

DevTeam Status Command

Development community intermediate

Description

**Command:** `/devteam:status [options]` Display system health, current progress, costs, and execution history.

Installation

Terminal
claude install-skill https://github.com/michael-harris/devteam

README

DevTeam Status Command

**Command:** `/devteam:status [options]`

Display system health, current progress, costs, and execution history.

Usage

# Current session status
/devteam:status

# Show execution history
/devteam:status --history
/devteam:status --history 20    # Last 20 sessions

# Cost breakdown
/devteam:status --costs
/devteam:status --costs --detailed

# Agent performance metrics
/devteam:status --agents

# Check specific session
/devteam:status --session session-20260129-123456-abc123

# Show all (comprehensive report)
/devteam:status --all

Options

Option Description
--history [n] Show last n sessions (default: 10)
--costs Show cost breakdown
--detailed Show detailed breakdown (with --costs)
--agents Show agent performance metrics
--session Show specific session details
--all Show comprehensive report
--json Output as JSON

Your Process

Check for Running Session

source scripts/state.sh

if is_session_running; then
    show_current_session_status
else
    show_system_overview
fi

Output: Current Session

═══════════════════════════════════════════════════════════════════
 DevTeam Status
═══════════════════════════════════════════════════════════════════

Session: session-20260129-103045-a1b2c3
Started: 2026-01-29 10:30:45 (23 min ago)
Command: /devteam:implement --sprint 1

┌─────────────────────────────────────────────────────────────────┐
│ Progress                                                         │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  Sprint: SPRINT-001 (Add user authentication)                   │
│  Tasks:  ████████████░░░░░░░░ 60% (3/5 complete)                │
│                                                                  │
│  Current Task: TASK-004 - Implement JWT middleware              │
│    Agent: backend:api-developer-typescript                        │
│    Model: sonnet (escalated from haiku)                         │
│    Iteration: 3 of 10                                           │
│                                                                  │
└─────────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────────┐
│ Model Usage                                                      │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  Model    │ Runs │ Success │ Tokens  │ Cost                     │
│  ─────────┼──────┼─────────┼─────────┼──────                    │
│  haiku    │   12 │   83%   │  45,231 │ $0.06                    │
│  sonnet   │    4 │   75%   │  28,102 │ $0.42                    │
│  opus     │    1 │  100%   │  15,883 │ $2.38                    │
│  ─────────┼──────┼─────────┼─────────┼─────