agent-teams
Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team…
Show session analytics, learning patterns, correction trends, heatmaps, and productivity metrics. Computes stats from project memory and session history. Use when asking for stats, statistics, progress, how am I doing, coding history, or dashboard.
$ npx -y skills add rohitg00/pro-workflow --skill insights --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/insightsContext preview
The summary Claude sees to decide when to auto-load this skill.
Show session analytics, learning patterns, correction trends, heatmaps, and productivity metrics. Computes stats from project memory and session history. Use when asking for stats, statistics, progress, how am I doing, coding history, or dashboard.
name: insights description: Show session analytics, learning patterns, correction trends, heatmaps, and productivity metrics. Computes stats from project memory and session history. Use when asking for stats, statistics, progress, how am I doing, coding history, or dashboard. user-invocable: true
Surface patterns from learnings and session history.
Use when asking "show stats", "how am I doing", "analytics", "insights", "heatmap", or "correction rate".
Gather data from these locations before computing metrics:
# Session history and learnings cat .claude/LEARNED.md 2>/dev/null || cat CLAUDE.md | grep -A999 "LEARNED" cat .claude/learning-log.md 2>/dev/null # Session activity git log --oneline --since="today" --author="$(git config user.name)" git diff --stat
A **correction** is any instance where the user redirected, fixed, or overrode agent output during a session. Count `[LEARN]` entries and explicit correction markers in session history.
Session Insights Duration: 47 min Edits: 23 files modified Corrections: 2 self-corrections applied Learnings: 3 new patterns captured Context: 62% used (safe)
Learning Insights (42 total) Top categories: Testing 12 learnings (29%) Navigation 8 learnings (19%) Git 7 learnings (17%) Quality 6 learnings (14%) Most applied: #12 [Testing] Run tests before commit — 15 times #8 [Navigation] Confirm path for common names — 11 times Stale learnings (never applied): #15 [Editing] Prefer named exports — 0 times (45 days old)
Correction Heatmap
By category (all time):
████████████ Testing 34 corrections
████████ Navigation 22 corrections
██████ Git 18 corrections
████ Quality 12 corrections
Hot learnings (most corrected, least learned):
- [Testing] Mock external deps — corrected 8x, learned 0x
→ Consider: /learn-rule to capture this permanently
Cold learnings (learned but never applied):
- [Editing] Use named exports — learned 45 days ago, applied 0x
→ Consider removing if no longer relevantProductivity (last 10 sessions) Avg session: 35 min Avg edits/session: 18 Correction rate: 12% (improving) Learning capture: 2.1 per session
Formatted analytics report with:
Claude Code learns from your corrections: self-correcting memory that compounds over 50+ sessions. Context engineering, parallel worktrees, agent teams, and 17 battle-tested skills.
Repo: rohitg00/pro-workflow
Coordinate multiple Claude Code sessions as a team — lead + teammates with shared task lists, mailbox messaging, and file-lock claiming. Patterns for team…
Auto-configure quality gates, hooks, and settings for a new project. Detects project type and sets up appropriate tooling. Use when onboarding a new codebase.
Decompose large-scale changes into independent units and spawn parallel agents in isolated worktrees. Use for migrations, refactors, codemods, and any change…
Capture a user-reported defect as a durable GitHub issue written in the project's own domain language. Explores the codebase in parallel for context but never…
Smart context compaction with state preservation. Saves critical files, task progress, and working state before compaction, restores after. Use before manual…
Master the four operations of context engineering — Write, Select, Compress, Isolate. Manage token budgets, compaction strategies, and context partitioning to…