AI scrum master for GitHub team collaboration. Use at session start, for status checks, debriefing, or team coordination. Triggers on "thunderdome", "run scrum", "status", "debrief", "session start".
View on GitHubplugins/thunderdome/skills/thunderdome/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/chickensintrees/claude-thunderdome/blob/main/plugins/thunderdome/skills/thunderdome/SKILL.md -a claude-code --skill thunderdomeInstallation paths:
.claude/skills/thunderdome/# Protocol Thunderdome
> "Two devs enter. One codebase."
AI-powered scrum master for GitHub team collaboration. Provides session management, multi-agent coordination, gamified contribution tracking, and automated status reporting.
## Commands
| Command | Description |
|---------|-------------|
| `/thunderdome` | Full status report |
| `/thunderdome status` | Same as above |
| `/thunderdome debrief` | End-of-session checklist |
| `/thunderdome scores` | Gamification leaderboard |
| `/thunderdome agents` | Multi-agent coordination status |
## Status Report Workflow
When invoked, generate a comprehensive status report:
### 1. Git State
```bash
# Fetch latest
git fetch origin --quiet
# Check uncommitted files
git status --porcelain
```
**Report:**
- CRITICAL: X uncommitted files (list first 5)
- WARNING: X unpushed commits
- OK: Working directory clean
- INFO: Current branch
### 2. GitHub State
```bash
# Recent commits
gh api repos/{owner}/{repo}/commits --jq '.[:5] | .[] | "\(.sha[0:7]) \(.author.login): \(.commit.message | split("\n")[0])"'
# Open PRs
gh api repos/{owner}/{repo}/pulls --jq '.[] | "PR #\(.number): \(.title)"'
# Open issues (excluding PRs)
gh api repos/{owner}/{repo}/issues --jq '.[] | select(.pull_request == null) | "#\(.number) \(.title)"'
# Branches
gh api repos/{owner}/{repo}/branches --jq '.[].name'
```
**Report:**
- X open PRs awaiting review (list them)
- X issues in backlog
- Recent commits by contributor
- Branch inventory
### 3. Test Status
Detect and run project tests:
- `package.json` → `npm test`
- `Makefile` → `make test`
- `swift` project → `swift test`
- `pytest` → `pytest`
**Report:**
- Tests: X passed, Y failed
- CRITICAL if any failures
### 4. Contributor Stats
For each contributor, count:
- Commits today
- Commits this week
- Calculate gamification score
### 5. Summary
End with assessment:
- **ALL CLEAR** - Ready for battle
- **WARNINGS** - List items needing attention
- **CRITICAL** - Blockers that must be res