Dashboard view of project status: plan progress, active tasks, git state. Single command to see everything.
Displays unified dashboard of plan progress, active tasks, and git state.
/plugin marketplace add 0xDarkMatter/claude-mods/plugin install 0xdarkmatter-claude-mods@0xDarkMatter/claude-modsarchive/session-manager/Single dashboard view showing plan progress, active tasks, and git state.
/status
│
├─→ Read docs/PLAN.md
│ └─ Parse current step, progress, blockers
│
├─→ Read TodoWrite state
│ └─ Get in-progress and pending tasks
│
├─→ Read git state
│ └─ Branch, uncommitted changes, recent commits
│
└─→ Display unified dashboard
📊 Project Status
┌─ Plan ─────────────────────────────────────────────────────────────────────────────────────────┐
│ docs/PLAN.md (updated 2 hours ago) │
│ │
│ Goal: Add user authentication with OAuth2 │
│ │
│ ✓ Step 1: Research OAuth providers [S] │
│ ✓ Step 2: Set up Google OAuth app [S] │
│ ◐ Step 3: Implement OAuth flow [M] ← CURRENT │
│ ○ Step 4: Add token refresh [S] │
│ ○ Step 5: Write integration tests [M] │
│ │
│ Progress: ██████░░░░ 40% (2/5) │
└────────────────────────────────────────────────────────────────────────────────────────────────┘
┌─ Active Tasks ─────────────────────────────────────────────────────────────────────────────────┐
│ ◐ Fix callback URL handling │
│ ○ Add token refresh logic │
│ ✓ Set up OAuth credentials │
└────────────────────────────────────────────────────────────────────────────────────────────────┘
┌─ Git ──────────────────────────────────────────────────────────────────────────────────────────┐
│ Branch: feature/auth │
│ Uncommitted: 3 files (+45/-12) │
│ • src/auth/oauth.ts +32/-8 │
│ • src/auth/callback.ts +13/-4 │
│ • tests/auth.test.ts (new) │
│ │
│ Recent commits: │
│ • abc123f feat: Add OAuth config │
│ • def456a fix: Handle token expiry │
│ • 789ghij refactor: Extract auth utils │
└────────────────────────────────────────────────────────────────────────────────────────────────┘
┌─ Suggestions ──────────────────────────────────────────────────────────────────────────────────┐
│ → 3 files ready to commit │
│ → Plan is 2 days stale, run: /plan --sync │
│ → Save before leaving: /save │
└────────────────────────────────────────────────────────────────────────────────────────────────┘
# Check if plan exists
cat docs/PLAN.md 2>/dev/null
If no plan found:
┌─ Plan ─────────────────────────────────────────────────────────────────────────────────────────┐
│ ⚠ Plan: No docs/PLAN.md found │
│ Create one with: /plan "your project goal" │
└────────────────────────────────────────────────────────────────────────────────────────────────┘
If no saved state but plan exists:
┌─ Session ──────────────────────────────────────────────────────────────────────────────────────┐
│ ⚠ State: No saved state found in .claude/session-cache.json │
│ ✅ Plan: Project plan found at docs/PLAN.md │
└────────────────────────────────────────────────────────────────────────────────────────────────┘
Extract from docs/PLAN.md:
**Goal**: line✓, ◐, ○, ⚠◐Read current TodoWrite tasks:
in_progress → show with ◐pending → show with ○completed → show with ✓ (recent only)# Current branch
git branch --show-current
# Uncommitted changes with stats
git diff --stat
git diff --cached --stat
# Count changes
git status --porcelain
Based on state, suggest next actions:
| Condition | Suggestion |
|---|---|
| Uncommitted files > 0 | "X files ready to commit" |
| Plan modified > 2 days ago | "Plan may be stale, run: /plan --sync" |
| No saved state exists | "Save progress with: /save" |
| In-progress task exists | "Continue: <task name>" |
| All tasks complete | "Mark plan step complete: /plan --status" |
| Flag | Effect |
|---|---|
--brief | Compact single-line summary |
--plan | Show only plan section |
--tasks | Show only tasks section |
--git | Show only git section |
/status --brief
Output:
📊 Plan: 2/5 (◐ Step 3) │ Tasks: 1 active, 2 pending │ Git: 3 uncommitted
Works with the session management suite:
| Command | Purpose |
|---|---|
/status | See current state (this command) |
/save | Persist state before leaving |
/load | Restore state when returning |
/plan | Manage project plan |