|
|
11 месяцев назад | |
|---|---|---|
| .claude-plugin | 11 месяцев назад | |
| commands | 11 месяцев назад | |
| hooks | 11 месяцев назад | |
| skills | 11 месяцев назад | |
| LICENSE | 11 месяцев назад | |
| README.md | 11 месяцев назад |
Give Claude Code superpowers with a comprehensive skills library of proven techniques, patterns, and tools.
Plus:
/brainstorm, /write-plan, /execute-planRead the introduction: Superpowers for Claude Code
# In Claude Code
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
That's it! On first session, the plugin automatically:
~/.config/superpowers/ as your personal skills repository/brainstorm, /write-plan, and /execute-plan commands# Check that commands appear
/help
# Should see:
# /brainstorm - Interactive design refinement
# /write-plan - Create implementation plan
# /execute-plan - Execute plan in batches
Write your own skills to ~/.config/superpowers/skills/:
See skills/meta/writing-skills for how to create new skills.
See skills/meta/sharing-skills for how to contribute to core.
Search both personal and core skills before starting any task:
${CLAUDE_PLUGIN_ROOT}/skills/getting-started/list-skills # See all available
${CLAUDE_PLUGIN_ROOT}/skills/getting-started/skills-search 'test.*driven|TDD'
${CLAUDE_PLUGIN_ROOT}/skills/getting-started/skills-search 'debug.*systematic'
Brainstorm a design:
/brainstorm
Create an implementation plan:
/write-plan
Execute the plan:
/execute-plan
Testing (skills/testing/)
Debugging (skills/debugging/)
Collaboration (skills/collaboration/)
Meta (skills/meta/)
~/.config/superpowers/skills/) + Core skills (plugin)list-skills and skills-search find skills from both locations~/.config/superpowers/search-log.jsonlThe plugin auto-creates your personal superpowers directory on first session.
Default location: ~/.config/superpowers/
Customize via environment variables:
# Option 1: Set exact location
export PERSONAL_SUPERPOWERS_DIR="$HOME/my-superpowers"
# Option 2: Use XDG standard
export XDG_CONFIG_HOME="$HOME/.local/config" # Uses $HOME/.local/config/superpowers
Structure:
~/.config/superpowers/ # (or your custom location)
├── .git/ # Git repository
├── .gitignore # Ignores logs and indexes
├── README.md # About your personal superpowers
├── skills/ # Your personal skills
│ └── your-skill/
│ └── SKILL.md
├── search-log.jsonl # Failed skill searches (not tracked)
└── conversation-index/ # Indexed conversations (not tracked)
Why git? Track your skills evolution, share with others, contribute back to core.
Write personal skills:
~/.config/superpowers/skills/your-skill/skills/meta/writing-skillsShare with everyone:
skills/meta/sharing-skillsMissing a skill? Edit skills/REQUESTS.md or open an issue
MIT License - see LICENSE file for details