https://github.com/plwp/chief-wiggum
Agentic SDLC orchestration for Claude Code — transcribe, triage, plan, implement, review, ship
https://github.com/plwp/chief-wiggum
Last synced: 3 months ago
JSON representation
Agentic SDLC orchestration for Claude Code — transcribe, triage, plan, implement, review, ship
- Host: GitHub
- URL: https://github.com/plwp/chief-wiggum
- Owner: plwp
- License: apache-2.0
- Created: 2026-02-25T10:46:27.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-09T00:43:22.000Z (4 months ago)
- Last Synced: 2026-03-09T05:53:03.110Z (4 months ago)
- Language: Python
- Size: 148 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chief Wiggum
Agentic SDLC orchestration for Claude Code. A reusable set of skills that power an AI-driven software development lifecycle.
## Quick Start
```bash
# 1. Clone and verify
cd ~/repos/chief-wiggum
claude /setup
# 2. Add as skill source to your target project
# In your-project/.claude/settings.local.json:
{
"commandDirs": ["~/repos/chief-wiggum/.claude/commands"]
}
# 3. Use from your target project directory (not chief-wiggum)
claude /transcribe ~/recordings/client-call.mp4
claude /triage owner/repo
claude /implement owner/repo#42
```
**Important**: Run skills from your target project directory, not from chief-wiggum itself.
## Skills
| Skill | Purpose |
|-------|---------|
| `/setup` | Verify and install all dependencies |
| `/transcribe` | Whisper transcription → structured requirements |
| `/triage` | Read and prioritise GitHub issues |
| `/plan-sprint` | Interactive sprint planning session |
| `/create-issue` | Create well-structured GitHub issues |
| `/implement` | Full implementation loop with multi-AI consultation |
| `/ship` | PR creation with mermaid architecture diagrams |
| `/update` | Refresh AI model IDs and library versions |
## Pipeline
```
Audio/Video → /transcribe → /triage → /plan-sprint → /create-issue
↓
/ship ← review ← /implement
```
## Requirements
- **Python >= 3.11**
- Claude Code CLI (`claude`)
- OpenAI Codex CLI (`codex`)
- Google Gemini CLI (`gemini`)
- GitHub CLI (`gh`)
- ffmpeg, openai-whisper (for transcription)
- Secrets stored in system keyring (managed via `python3 scripts/keychain.py`)