Revert "Move superpowers plugin into plugins/superpowers-bootstrap subdirectory"

This reverts commit 809956f3bf.
This commit is contained in:
Jesse Vincent
2025-10-15 22:34:56 -07:00
parent 809956f3bf
commit d6ac9a8b5d
11 changed files with 0 additions and 0 deletions

36
commands/README.md Normal file
View File

@@ -0,0 +1,36 @@
# Claude Commands
Slash commands for Claude that reference skills.
## Available Commands
- `/brainstorm` - Interactive idea refinement using Socratic method (→ `@skills/collaboration/brainstorming/SKILL.md`)
- `/write-plan` - Create detailed implementation plan (→ `@skills/collaboration/writing-plans/SKILL.md`)
- `/execute-plan` - Execute plan in batches with review (→ `@skills/collaboration/executing-plans/SKILL.md`)
## Format
Each command is a simple markdown file containing a single `@` reference to a skill:
```markdown
@skills/collaboration/brainstorming/SKILL.md
```
When you run the command (e.g., `/brainstorm`), Claude loads and follows that skill.
## Creating Custom Commands
To add your own commands:
1. Create `your-command.md` in this directory
2. Add a single line referencing a skill:
```markdown
@skills/your-category/your-skill/SKILL.md
```
3. The command `/your-command` is now available
## Installation
These commands are automatically symlinked to `~/.claude/commands/` by the clank installer.
See `@skills/meta/installing-skills/SKILL.md` for installation details.

5
commands/brainstorm.md Normal file
View File

@@ -0,0 +1,5 @@
---
description: Interactive design refinement using Socratic method
---
Read and follow: ${SUPERPOWERS_SKILLS_ROOT}/skills/collaboration/brainstorming/SKILL.md

5
commands/execute-plan.md Normal file
View File

@@ -0,0 +1,5 @@
---
description: Execute plan in batches with review checkpoints
---
Read and follow: ${SUPERPOWERS_SKILLS_ROOT}/skills/collaboration/executing-plans/SKILL.md

5
commands/write-plan.md Normal file
View File

@@ -0,0 +1,5 @@
---
description: Create detailed implementation plan with bite-sized tasks
---
Read and follow: ${SUPERPOWERS_SKILLS_ROOT}/skills/collaboration/writing-plans/SKILL.md