Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

thunderdome

verified

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 GitHub

Marketplace

thunderdome

chickensintrees/claude-thunderdome

Plugin

thunderdome

Repository

chickensintrees/claude-thunderdome
2stars

plugins/thunderdome/skills/thunderdome/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/chickensintrees/claude-thunderdome/blob/main/plugins/thunderdome/skills/thunderdome/SKILL.md -a claude-code --skill thunderdome

Installation paths:

Claude
.claude/skills/thunderdome/
Powered by add-skill CLI

Instructions

# 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

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
6536 chars