Thanks for your interest in contributing! bigpowers is an open-source system of 69+ AI agent skills for spec-driven, test-first software development. This guide will help you get started.
Be respectful, constructive, and patient. We're building tools for developers — treat each other like the professionals we are.
- Read the docs. Start with
README.md,CLAUDE.md, andCONVENTIONS.md. These define the project's architecture, conventions, and engineering standards. - Run bigpowers. Install with
npm install -g bigpowers && bigpowers setupand walk through the experience as a user before contributing as a developer. - Understand the lifecycle. bigpowers follows a 6-phase methodology: Discover → Elaborate → Plan → Build → Verify → Release. Read
docs/WORKFLOW-SOP-v2.mdfor the full SOP.
- Search existing issues first.
- Use the bug report template if one exists.
- Include: what you did, what you expected, what happened, your OS, Node version, and any error output.
- If the bug is in a specific skill, name the skill.
- Open a discussion before opening a PR for a new feature. We want to align on the approach before you invest time.
- New skills must follow the verb-noun kebab-case naming convention (ADR-0001).
- New features should include: a description of the problem, the proposed solution, and any alternatives considered.
Skills are the core of bigpowers. To propose a new one:
- Check the index.
SKILL-INDEX.mdlists all 69+ active skills. Make sure your idea doesn't overlap with an existing skill. - Identify the phase. Every skill belongs to one of 7 phases: Discover, Design, Plan, Build, Verify, Release, Sustain.
- Write a SKILL.md draft. Follow the structure of existing skills. Every SKILL.md needs: a description, phase, instructions, and references.
- Open a discussion. Share your SKILL.md draft in a GitHub discussion. We'll review whether it fits the roadmap before you invest in a full PR.
- Once approved, open a PR with:
- A new directory:
[verb]-[noun]/containingSKILL.md - Evidence that you ran
bash scripts/sync-skills.shto regenerate artifacts - A Conventional Commit:
feat(skills): add [verb]-[noun] skill
- A new directory:
- Branch from main. Use
kickoff-branchor create a feature branch manually. - Follow CONVENTIONS.md. F.I.R.S.T tests. SOLID. Boy Scout Rule. No
anytypes. Functions under 20 lines. - Run sync. After any SKILL.md change, run
bash scripts/sync-skills.shto regenerate generated artifacts. Do not edit.cursor/rulesor.gemini/extensions/directly. - Validate YAML. Run
bash scripts/validate-specs-yaml.shif you've changed anyspecs/*.yamlfiles. - Write Conventional Commits. Format:
type(scope): description. See CONVENTIONS.md for the full spec. - Open a PR. Use
gh pr create. Include: what you changed, why, how to verify, and any open questions. - Wait for review. A maintainer will review within a few days. Be responsive to feedback.
Documentation is a first-class contribution. You don't need to write code to help.
- README improvements: Clearer install instructions, better examples, fixed typos.
- Skill docs: Every SKILL.md should be clear enough for a new user to understand without asking.
- Guides and tutorials: Walkthroughs for specific use cases (e.g., "Using bigpowers with a Next.js project").
- Translations: Help make bigpowers accessible to non-English-speaking developers.
# Clone the repo
git clone https://github.com/danielvm-git/bigpowers.git
cd bigpowers
# Install dependencies
npm install
# Sync skills and set up symlinks
bash scripts/install.sh
# Or manually:
bash scripts/install.sh
npm run sync- Bash — required for all scripts
- Node.js v14+
- jq — highly recommended for YAML validation scripts
- An AI coding tool — Claude Code, Cursor, Gemini CLI, or pi (to test skills end-to-end)
bigpowers/
├── skills/[skill-name]/ # Each skill has its own directory with SKILL.md
├── scripts/ # Install, sync, validation, and compliance scripts
├── specs/ # YAML cockpit — state.yaml, release-plan.yaml, epics/
├── docs/ # Guides and references
├── profiles/ # Stack-specific conventions (TypeScript+Vue, Node Service, etc.)
├── .cursor/rules/ # Generated — do not edit directly
├── .gemini/extensions/ # Generated — do not edit directly
└── .pi/skills/ # Generated — do not edit directly
Never edit generated files. Always edit the source SKILL.md and run bash scripts/sync-skills.sh.
- Skill validation:
bash scripts/sync-skills.shvalidates SKILL.md syntax and structure. - YAML validation:
bash scripts/validate-specs-yaml.shchecks the YAML cockpit for correctness. - Compliance check:
npm run complianceruns a comprehensive check of the repo. - Manual testing: The best test of a skill is using it with an AI coding tool. After changes, run
survey-contextor invoke the skill to verify it works.
- Questions? Open a GitHub discussion.
- Bug? Open an issue.
- Want to chat? [Link to Discord/Slack — to be added]
All contributors are recognized in the README and release notes. Significant contributions (new skills, major features) get a shoutout in the changelog and on social media. We believe in giving credit where it's due.
bigpowers is MIT-licensed. By contributing, you agree that your contributions will be licensed under the same terms.