Autonomous agent workflows for software development teams. Built on Superpowers with GitHub Project automation for bug fixes and feature development.
Fork of obra/superpowers - a complete agent workflow system with composable skills:
- brainstorming - Design refinement before coding
- writing-plans - Implementation plans for autonomous execution
- subagent-driven-development - Multi-agent parallel development
- test-driven-development - RED-GREEN-REFACTOR enforcement
- systematic-debugging - Root cause analysis process
All the battle-tested workflows from Superpowers, plus team collaboration features.
Structured processes that improve first-time resolution rates:
Bug Flow (5 stages):
Triage → Fix → Test → UserTest → Done
- Parallel hypothesis testing for root cause
- Evidence-driven testing with RED-GREEN discipline
- Automated CI gates
- Optional UAT validation
Feature Flow (7 stages):
Brainstorm → Design Review → Plan → Implement → Test → Review → Done
- Socratic design refinement
- Spec validation before implementation
- Subagent-driven parallel development
- Two-stage review (spec compliance, then code quality)
Kanban boards that map workflow stages to GitHub Projects:
- Organization-level projects - Manage issues across repos
- Status field automation - Track progress through stages
- Board views - Visualize work in progress
- Marker-based idempotency - Resume from interruptions
Set up in minutes with /setup command.
Autonomous agents that process issues through workflow stages:
/loop bug # Process bug issues
/loop feature # Process feature issues
/loop all # Process both flowsHow it works:
- Reads issues from GitHub Projects
- Checks Status field to determine current stage
- Dispatches appropriate skill for that stage
- Posts progress markers to issue comments
- Advances to next stage on completion
- Never blocks - communicates async via GitHub
Example:
Issue #123 in "Triage" stage
→ Loop dispatches bug-triage skill
→ Investigates root cause with parallel hypotheses
→ Posts [TRIAGE_READY] marker
→ Moves to "Fix" stage
Issue #123 in "Fix" stage
→ Loop dispatches bug-fix skill
→ Implements the fix
→ Posts [FIX_COMPLETE] marker
→ Moves to "Test" stage
...continues through all stages automatically
Choose your platform:
Claude Code Official Marketplace:
/plugin install superpowers@claude-plugins-officialCursor:
/add-plugin superpowersSee Installation for all platforms.
From your repository:
/setupCreates projects, configures workflows, generates configuration files.
See Integration Guide for detailed walkthrough.
gh issue create --title "Login timeout" --body "Users timing out after 5s"
gh project item-add 1 --url <issue-url>/loop bugAgents process issues automatically through all stages.
This project is built on Superpowers by Jesse Vincent and the Prime Radiant team.
If Superpowers has helped you, consider sponsoring Jesse's opensource work.
- Integration Guide - Add to existing repo, configure workflows
- GitHub Project Setup - Manual project configuration steps
- Branch Strategy - Promotion flow (feature → dev → staging → main)
- Bug Triage - Root cause investigation with parallel hypotheses
- Bug Fix - Evidence-driven fix implementation
- Testing Gates - Automated CI validation
- Committing - Git workflow and PR creation
- Loop Orchestrator - Issue processing automation
- Updating from Super Agents - Pull upstream changes
- Contributing Lessons Learned - When and how to contribute back
Choose your platform:
Claude Code:
/plugin install superpowers@claude-plugins-officialCursor:
/add-plugin superpowersCodex:
Fetch and follow instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.codex/INSTALL.md
OpenCode:
Fetch and follow instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.opencode/INSTALL.md
Gemini:
gemini extensions install https://github.com/obra/superpowersSee Installation below for detailed instructions.
All skills from Superpowers, plus GitHub Project workflow automation:
GitHub Project Workflows:
- bug-triage - Parallel hypothesis testing for root cause
- bug-fix - Evidence-driven fix implementation
- testing-gates - Automated CI validation (linting, type checking, tests)
- user-acceptance-testing - UAT coordination
- loop-orchestrator - Automated issue processing
- committing - Git workflow and PR creation
Feature Development (from Superpowers):
- brainstorming - Socratic design refinement
- writing-plans - Detailed implementation plans
- subagent-driven-development - Multi-agent parallel development
- requesting-code-review - Pre-review checklist
- finishing-a-development-branch - Merge/PR workflow
Testing & Debugging (from Superpowers):
- test-driven-development - RED-GREEN-REFACTOR enforcement
- systematic-debugging - Root cause analysis
- verification-before-completion - Ensure fixes work
Supporting Skills (from Superpowers):
- dispatching-parallel-agents - Concurrent subagent workflows
- using-git-worktrees - Isolated development branches
- evidence-driven-testing - Scratch/promoted/permanent test commitment
- handler-authority - Async authority model for loop mode
Full skill list: skills/
- Evidence over claims - Verify before declaring success
- Systematic over ad-hoc - Process over guessing
- Test-Driven Development - Write tests first, always
- Structured workflows - Clear stages, clear progression
- Async coordination - Work through GitHub, not blocking terminal
Read more: Superpowers for Claude Code
Install from the official marketplace:
/plugin install superpowers@claude-plugins-officialRegister the marketplace first:
/plugin marketplace add obra/superpowers-marketplaceThen install:
/plugin install superpowers@superpowers-marketplaceInstall from marketplace:
/add-plugin superpowersOr search "superpowers" in plugin marketplace UI.
Tell Codex:
Fetch and follow instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.codex/INSTALL.md
See docs/README.codex.md for details.
Tell OpenCode:
Fetch and follow instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.opencode/INSTALL.md
See docs/README.opencode.md for details.
gemini extensions install https://github.com/obra/superpowersUpdate with:
gemini extensions update superpowersAfter installation, verify skills are active:
/brainstorm
Agent should invoke the brainstorming skill.
Contributions welcome! See CONTRIBUTING_LESSONS_LEARNED.md for guidelines on:
- What to contribute vs keep local
- How to extract generic improvements
- PR submission process
Quick contributions:
- Bug fixes in skills or commands
- Documentation improvements
- New generic skills
Keep local:
- Project-specific configuration
- Company workflows
- Proprietary techniques
- Discord: Join us
- Issues: Report bugs
- Superpowers: Original project
Built on Superpowers by Jesse Vincent and Prime Radiant.
MIT License - see LICENSE file for details