forge-workflow 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/dev.md +314 -0
- package/.claude/commands/plan.md +389 -0
- package/.claude/commands/premerge.md +179 -0
- package/.claude/commands/research.md +42 -0
- package/.claude/commands/review.md +442 -0
- package/.claude/commands/rollback.md +721 -0
- package/.claude/commands/ship.md +134 -0
- package/.claude/commands/sonarcloud.md +152 -0
- package/.claude/commands/status.md +77 -0
- package/.claude/commands/validate.md +237 -0
- package/.claude/commands/verify.md +221 -0
- package/.claude/rules/greptile-review-process.md +285 -0
- package/.claude/rules/workflow.md +105 -0
- package/.claude/scripts/greptile-resolve.sh +526 -0
- package/.claude/scripts/load-env.sh +32 -0
- package/.forge/hooks/check-tdd.js +240 -0
- package/.github/PLUGIN_TEMPLATE.json +32 -0
- package/.mcp.json.example +12 -0
- package/AGENTS.md +169 -0
- package/CLAUDE.md +99 -0
- package/LICENSE +21 -0
- package/README.md +414 -0
- package/bin/forge-cmd.js +313 -0
- package/bin/forge-validate.js +303 -0
- package/bin/forge.js +4228 -0
- package/docs/AGENT_INSTALL_PROMPT.md +342 -0
- package/docs/ENHANCED_ONBOARDING.md +602 -0
- package/docs/EXAMPLES.md +482 -0
- package/docs/GREPTILE_SETUP.md +400 -0
- package/docs/MANUAL_REVIEW_GUIDE.md +106 -0
- package/docs/ROADMAP.md +359 -0
- package/docs/SETUP.md +632 -0
- package/docs/TOOLCHAIN.md +849 -0
- package/docs/VALIDATION.md +363 -0
- package/docs/WORKFLOW.md +400 -0
- package/docs/planning/PROGRESS.md +396 -0
- package/docs/plans/.gitkeep +0 -0
- package/docs/plans/2026-02-27-forge-test-suite-v2-decisions.md +21 -0
- package/docs/plans/2026-02-27-forge-test-suite-v2-design.md +362 -0
- package/docs/plans/2026-02-27-forge-test-suite-v2-tasks.md +343 -0
- package/docs/plans/2026-03-02-superpowers-gaps-decisions.md +26 -0
- package/docs/plans/2026-03-02-superpowers-gaps-design.md +239 -0
- package/docs/plans/2026-03-02-superpowers-gaps-tasks.md +260 -0
- package/docs/plans/2026-03-04-agent-command-parity-design.md +163 -0
- package/docs/plans/2026-03-04-verify-worktree-cleanup-decisions.md +7 -0
- package/docs/plans/2026-03-04-verify-worktree-cleanup-design.md +165 -0
- package/docs/plans/2026-03-05-forge-uto-decisions.md +6 -0
- package/docs/plans/2026-03-05-forge-uto-design.md +116 -0
- package/docs/plans/2026-03-05-forge-uto-tasks.md +244 -0
- package/docs/plans/2026-03-10-command-creator-and-eval-decisions.md +52 -0
- package/docs/plans/2026-03-10-command-creator-and-eval-design.md +350 -0
- package/docs/plans/2026-03-10-command-creator-and-eval-tasks.md +426 -0
- package/docs/plans/2026-03-10-stale-workflow-refs-decisions.md +8 -0
- package/docs/plans/2026-03-10-stale-workflow-refs-design.md +80 -0
- package/docs/plans/2026-03-10-stale-workflow-refs-tasks.md +90 -0
- package/docs/plans/2026-03-14-beads-plan-context-decisions.md +9 -0
- package/docs/plans/2026-03-14-beads-plan-context-design.md +171 -0
- package/docs/plans/2026-03-14-beads-plan-context-tasks.md +160 -0
- package/docs/plans/2026-03-14-skill-eval-loop-decisions.md +33 -0
- package/docs/plans/2026-03-14-skill-eval-loop-design.md +118 -0
- package/docs/plans/2026-03-14-skill-eval-loop-results.md +78 -0
- package/docs/plans/2026-03-14-skill-eval-loop-tasks.md +160 -0
- package/docs/plans/2026-03-15-agent-command-parity-v2-decisions.md +11 -0
- package/docs/plans/2026-03-15-agent-command-parity-v2-design.md +145 -0
- package/docs/plans/2026-03-15-agent-command-parity-v2-tasks.md +211 -0
- package/docs/research/TEMPLATE.md +292 -0
- package/docs/research/advanced-testing.md +297 -0
- package/docs/research/agent-permissions.md +167 -0
- package/docs/research/dependency-chain.md +328 -0
- package/docs/research/forge-workflow-v2.md +550 -0
- package/docs/research/plugin-architecture.md +772 -0
- package/docs/research/pr4-cli-automation.md +326 -0
- package/docs/research/premerge-verify-restructure.md +205 -0
- package/docs/research/skills-restructure.md +508 -0
- package/docs/research/sonarcloud-perfection-plan.md +166 -0
- package/docs/research/sonarcloud-quality-gate.md +184 -0
- package/docs/research/superpowers-integration.md +403 -0
- package/docs/research/superpowers.md +319 -0
- package/docs/research/test-environment.md +519 -0
- package/install.sh +1062 -0
- package/lefthook.yml +39 -0
- package/lib/agents/README.md +198 -0
- package/lib/agents/claude.plugin.json +28 -0
- package/lib/agents/cline.plugin.json +22 -0
- package/lib/agents/codex.plugin.json +19 -0
- package/lib/agents/copilot.plugin.json +24 -0
- package/lib/agents/cursor.plugin.json +25 -0
- package/lib/agents/kilocode.plugin.json +22 -0
- package/lib/agents/opencode.plugin.json +20 -0
- package/lib/agents/roo.plugin.json +23 -0
- package/lib/agents-config.js +2112 -0
- package/lib/commands/dev.js +513 -0
- package/lib/commands/plan.js +696 -0
- package/lib/commands/recommend.js +119 -0
- package/lib/commands/ship.js +377 -0
- package/lib/commands/status.js +378 -0
- package/lib/commands/validate.js +602 -0
- package/lib/context-merge.js +359 -0
- package/lib/plugin-catalog.js +360 -0
- package/lib/plugin-manager.js +166 -0
- package/lib/plugin-recommender.js +141 -0
- package/lib/project-discovery.js +491 -0
- package/lib/setup.js +118 -0
- package/lib/workflow-profiles.js +203 -0
- package/package.json +115 -0
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
# Research: obra/superpowers — Integration Analysis for Forge
|
|
2
|
+
|
|
3
|
+
**Feature slug**: `superpowers`
|
|
4
|
+
**Date**: 2026-02-26
|
|
5
|
+
**Sources**: All claims below cite exact URLs.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## What Is Superpowers?
|
|
10
|
+
|
|
11
|
+
**Repository**: https://github.com/obra/superpowers
|
|
12
|
+
**Author**: Jesse Vincent (@obra) — keyboard designer at keyboard.io, creator of K-9 Mail for Android, former Perl 5 project lead
|
|
13
|
+
**Description**: "An agentic skills framework & software development methodology that works."
|
|
14
|
+
**License**: MIT
|
|
15
|
+
**Version**: v4.3.1 (2026-02-21)
|
|
16
|
+
**Language**: Shell
|
|
17
|
+
**Stars**: ~62,000 (4th most installed plugin in Claude Code marketplace, surpassed GitHub's own plugin)
|
|
18
|
+
**Source**: https://www.threads.com/@obrajesse/post/DVANeBYEfuF/ — Jesse Vincent's own announcement
|
|
19
|
+
|
|
20
|
+
Superpowers is a **Claude Code plugin** (also supports Cursor, Codex, OpenCode) that ships a library of 14 composable "skills" — structured instructions the agent reads and follows automatically. Skills trigger based on context, not user commands. The agent reads the right skill before taking action.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
### Claude Code (Native Plugin Marketplace)
|
|
27
|
+
```bash
|
|
28
|
+
/plugin marketplace add obra/superpowers-marketplace
|
|
29
|
+
/plugin install superpowers@superpowers-marketplace
|
|
30
|
+
```
|
|
31
|
+
Marketplace repo: https://github.com/obra/superpowers-marketplace
|
|
32
|
+
|
|
33
|
+
### Cursor
|
|
34
|
+
```text
|
|
35
|
+
/plugin-add superpowers
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Codex / OpenCode
|
|
39
|
+
Manual: Fetch and follow `.codex/INSTALL.md` or `.opencode/INSTALL.md`
|
|
40
|
+
|
|
41
|
+
**Source**: https://github.com/obra/superpowers/blob/main/README.md
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Repository Structure
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
superpowers/
|
|
49
|
+
├── .claude-plugin/ # Claude Code plugin manifest
|
|
50
|
+
├── .codex/ # Codex integration
|
|
51
|
+
├── .cursor-plugin/ # Cursor integration
|
|
52
|
+
├── .opencode/ # OpenCode integration
|
|
53
|
+
├── agents/
|
|
54
|
+
│ └── code-reviewer.md # Custom code-reviewer agent definition
|
|
55
|
+
├── commands/ # CLI commands
|
|
56
|
+
├── docs/
|
|
57
|
+
│ ├── README.codex.md
|
|
58
|
+
│ ├── README.opencode.md
|
|
59
|
+
│ ├── plans/ # Design docs written here
|
|
60
|
+
│ └── testing.md
|
|
61
|
+
├── hooks/ # Git hooks
|
|
62
|
+
├── lib/ # Shared libraries
|
|
63
|
+
├── skills/ # 14 skills (core value)
|
|
64
|
+
└── tests/
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
**Source**: https://github.com/obra/superpowers (file tree)
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## The 14 Skills (Full List)
|
|
72
|
+
|
|
73
|
+
| Skill | Purpose |
|
|
74
|
+
|-------|---------|
|
|
75
|
+
| `brainstorming` | Socratic design refinement with hard gate — MUST complete before any code |
|
|
76
|
+
| `writing-plans` | Break approved design into 2-5 minute tasks with exact file paths and code |
|
|
77
|
+
| `executing-plans` | Batch execution with human checkpoints |
|
|
78
|
+
| `subagent-driven-development` | Dispatch fresh subagent per task, two-stage review |
|
|
79
|
+
| `dispatching-parallel-agents` | Concurrent subagent workflows |
|
|
80
|
+
| `test-driven-development` | Enforced RED-GREEN-REFACTOR cycle with anti-patterns reference |
|
|
81
|
+
| `systematic-debugging` | 4-phase root cause analysis (root-cause-tracing, defense-in-depth, condition-based-waiting) |
|
|
82
|
+
| `verification-before-completion` | Verify fix actually works before declaring done |
|
|
83
|
+
| `requesting-code-review` | Pre-review checklist |
|
|
84
|
+
| `receiving-code-review` | Structured response to feedback |
|
|
85
|
+
| `using-git-worktrees` | Isolated workspace per task on new branch |
|
|
86
|
+
| `finishing-a-development-branch` | Merge/PR decision workflow, worktree cleanup |
|
|
87
|
+
| `writing-skills` | Meta-skill: create new skills following best practices |
|
|
88
|
+
| `using-superpowers` | Introduction and dispatch logic |
|
|
89
|
+
|
|
90
|
+
**Source**: https://github.com/obra/superpowers/tree/main/skills
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## Core Workflow (How It Runs)
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
1. brainstorming → Explore context → ask questions one at a time → propose 2-3 approaches
|
|
98
|
+
→ present design in sections → user approves → write design doc to
|
|
99
|
+
docs/plans/YYYY-MM-DD-<topic>-design.md → commit
|
|
100
|
+
|
|
101
|
+
2. using-git-worktrees → Create isolated workspace on new branch → run project setup
|
|
102
|
+
→ verify clean test baseline
|
|
103
|
+
|
|
104
|
+
3. writing-plans → Break approved design into tasks (2-5 min each)
|
|
105
|
+
→ each task: exact file paths, complete code, verification steps
|
|
106
|
+
|
|
107
|
+
4. subagent-driven-development OR executing-plans
|
|
108
|
+
→ Fresh subagent per task
|
|
109
|
+
→ Two-stage review: (1) spec compliance, (2) code quality
|
|
110
|
+
|
|
111
|
+
5. test-driven-development → RED fails → GREEN passes → REFACTOR → commit
|
|
112
|
+
→ Deletes code written before tests
|
|
113
|
+
|
|
114
|
+
6. requesting-code-review → Reviews against plan, reports by severity
|
|
115
|
+
→ Critical issues block progress
|
|
116
|
+
|
|
117
|
+
7. finishing-a-development-branch → Verify tests → present options (merge/PR/keep/discard)
|
|
118
|
+
→ clean up worktree
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
**Key mechanic**: Skills auto-trigger based on context. The agent checks for relevant skills before any task. No user command needed.
|
|
122
|
+
|
|
123
|
+
**Source**: https://github.com/obra/superpowers/blob/main/README.md and https://blog.fsck.com/2025/10/09/superpowers/
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## The HARD-GATE Pattern
|
|
128
|
+
|
|
129
|
+
The brainstorming skill uses explicit blocking tags:
|
|
130
|
+
|
|
131
|
+
```
|
|
132
|
+
<HARD-GATE>
|
|
133
|
+
Do NOT invoke any implementation skill, write any code, scaffold any project,
|
|
134
|
+
or take any implementation action until you have presented a design and the user
|
|
135
|
+
has approved it. This applies to EVERY project regardless of perceived simplicity.
|
|
136
|
+
</HARD-GATE>
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
**Why this matters**: This is a structural enforcement mechanism — not a soft instruction. It explicitly names forbidden actions and conditions. Soft instructions ("read AGENTS.md first") fail. Hard gates with explicit prohibitions work.
|
|
140
|
+
|
|
141
|
+
**Source**: brainstorming/SKILL.md content from https://github.com/obra/superpowers/blob/main/skills/brainstorming/SKILL.md
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Community Reception
|
|
146
|
+
|
|
147
|
+
| Source | Signal |
|
|
148
|
+
|--------|--------|
|
|
149
|
+
| Hacker News | 435 points, 231 comments — https://news.ycombinator.com/item?id=45547344 |
|
|
150
|
+
| Simon Willison | "Jesse is one of the most creative users of coding agents I know" — https://simonwillison.net/2025/Oct/10/superpowers/ |
|
|
151
|
+
| Cornell Innovation Hub | "How I Built a 3600 Line Feature in 4 Hours Without Writing a Single Line of Code" — https://innovationhub.ai.cornell.edu/articles/how-i-built-a-3600-line-feature-in-4-hours-without-writing-a-single-line-of-code/ |
|
|
152
|
+
| Claude Code Marketplace | 4th most installed plugin, surpassed GitHub — https://www.threads.com/@obrajesse/post/DVANeBYEfuF/ |
|
|
153
|
+
| r/ClaudeCode | "actually delivers" — https://www.reddit.com/r/ClaudeCode/comments/1r9y2ka/ |
|
|
154
|
+
| Dev Genius | "the Claude plugin that enforces TDD, subagents, and planning" — https://blog.devgenius.io/superpowers-explained-the-claude-plugin-that-enforces-tdd-subagents-and-planning-c7fe698c3b82 |
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## Forge vs Superpowers: Side-by-Side
|
|
159
|
+
|
|
160
|
+
### What Both Do (Overlap)
|
|
161
|
+
|
|
162
|
+
| Capability | Forge | Superpowers |
|
|
163
|
+
|-----------|-------|------------|
|
|
164
|
+
| TDD enforcement | `/dev` RED-GREEN-REFACTOR | `test-driven-development` skill |
|
|
165
|
+
| Planning phase | `/plan` command + Beads | `writing-plans` skill |
|
|
166
|
+
| Code review | `/review` command | `requesting-code-review` + `receiving-code-review` |
|
|
167
|
+
| Parallel agents | Parallel AI skills | `dispatching-parallel-agents` skill |
|
|
168
|
+
| PR workflow | `/ship`, `/premerge` | `finishing-a-development-branch` |
|
|
169
|
+
|
|
170
|
+
### What Superpowers Has That Forge Doesn't
|
|
171
|
+
|
|
172
|
+
| Gap | Superpowers Solution | Forge Status |
|
|
173
|
+
|-----|---------------------|-------------|
|
|
174
|
+
| **Design before code** | `brainstorming` skill with HARD-GATE | No equivalent — `/plan` goes straight to beads/branch |
|
|
175
|
+
| **Git worktree isolation** | `using-git-worktrees` skill | Not in Forge workflow |
|
|
176
|
+
| **Systematic debugging** | `systematic-debugging` (4 phases) | No equivalent |
|
|
177
|
+
| **Verification before done** | `verification-before-completion` | Implicit in `/check` but not explicit |
|
|
178
|
+
| **Meta-skill authoring** | `writing-skills` skill | No equivalent |
|
|
179
|
+
| **Two-stage code review** | spec compliance → code quality | Single-stage review |
|
|
180
|
+
| **Hard gate enforcement** | `<HARD-GATE>` tags | Soft instructions only |
|
|
181
|
+
| **Design docs** | Saved to `docs/plans/YYYY-MM-DD-*.md` | Research docs only (`docs/research/`) |
|
|
182
|
+
| **Plugin distribution** | Claude Code + Cursor marketplace | Not distributable as plugin |
|
|
183
|
+
|
|
184
|
+
### What Forge Has That Superpowers Doesn't
|
|
185
|
+
|
|
186
|
+
| Capability | Forge | Superpowers Status |
|
|
187
|
+
|-----------|-------|-------------------|
|
|
188
|
+
| **Web research stage** | `/research` + parallel AI search | No research phase |
|
|
189
|
+
| **Formal spec proposals** | OpenSpec (`openspec/changes/`) | No equivalent |
|
|
190
|
+
| **Issue tracking** | Beads (`bd create`, `bd update`) | `obra/issue-cards` (separate repo, not integrated) |
|
|
191
|
+
| **Multi-agent file support** | AGENTS.md/CLAUDE.md/GEMINI.md | Claude Code + Cursor only |
|
|
192
|
+
| **Security analysis** | OWASP per feature in `/dev` | No security phase |
|
|
193
|
+
| **Full PR lifecycle** | `/ship`, `/review`, `/premerge`, `/verify` | Only `finishing-a-development-branch` |
|
|
194
|
+
| **SonarCloud integration** | `/sonarcloud` command | None |
|
|
195
|
+
| **Greptile integration** | `.claude/rules/greptile-review-process.md` | None |
|
|
196
|
+
| **Post-merge verification** | `/verify` | None |
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## Integration Options
|
|
201
|
+
|
|
202
|
+
### Option A: Install Superpowers Plugin Alongside Forge (Non-Breaking)
|
|
203
|
+
|
|
204
|
+
Install Superpowers as a Claude Code plugin. It adds its skills to your agent's context. Forge commands continue to work. Superpowers skills auto-trigger for gaps Forge doesn't cover.
|
|
205
|
+
|
|
206
|
+
**Benefit**: Immediately gets brainstorming gate, systematic debugging, git worktrees, verification
|
|
207
|
+
**Risk**: Workflow overlap — both have planning, review phases. Agent may get confused about which to use.
|
|
208
|
+
**Verdict**: Valid short-term, but needs clear role definition in AGENTS.md/CLAUDE.md
|
|
209
|
+
|
|
210
|
+
**Source on overlap concerns**: https://www.reddit.com/r/ClaudeCode/comments/1qlsdjb/superpowers_vs_gsd_vs_others/
|
|
211
|
+
|
|
212
|
+
### Option B: Cherry-Pick Key Skills Into Forge (Best Fit)
|
|
213
|
+
|
|
214
|
+
Import specific Superpowers skills into Forge's `skills/` directory:
|
|
215
|
+
- `brainstorming` → insert between `/research` and `/plan` as a new stage
|
|
216
|
+
- `systematic-debugging` → add as `/debug` command
|
|
217
|
+
- `writing-skills` → use for authoring new Forge skills
|
|
218
|
+
- `verification-before-completion` → integrate into `/check` command
|
|
219
|
+
- HARD-GATE pattern → add to `/research`, `/plan`, `/dev` commands
|
|
220
|
+
|
|
221
|
+
**Benefit**: Gets Superpowers' best ideas without workflow collision
|
|
222
|
+
**Risk**: Maintenance burden — skills diverge from upstream
|
|
223
|
+
**Verdict**: Best long-term approach for Forge as a standalone workflow
|
|
224
|
+
|
|
225
|
+
### Option C: Replace OpenSpec With Superpowers' `writing-plans`
|
|
226
|
+
|
|
227
|
+
Superpowers' `writing-plans` creates detailed task-level implementation plans. OpenSpec creates formal architecture proposals with `proposal.md`, `tasks.md`, `design.md`.
|
|
228
|
+
|
|
229
|
+
**Assessment**: These solve different problems.
|
|
230
|
+
- `writing-plans` → task-level implementation checklist (tactical)
|
|
231
|
+
- OpenSpec → architecture-level proposals requiring approval (strategic)
|
|
232
|
+
- **Do not replace** — they are complementary. OpenSpec for "what to build", `writing-plans` for "how to build it."
|
|
233
|
+
|
|
234
|
+
### Option D: Adopt HARD-GATE Pattern Into Forge Commands (Quickest Win)
|
|
235
|
+
|
|
236
|
+
Add `<HARD-GATE>` blocks to existing Forge commands. Example for `/plan`:
|
|
237
|
+
|
|
238
|
+
```
|
|
239
|
+
<HARD-GATE>
|
|
240
|
+
Do NOT proceed to /dev or write any code until:
|
|
241
|
+
1. Research doc exists at docs/research/<slug>.md
|
|
242
|
+
2. Beads issue is created and in_progress
|
|
243
|
+
3. Branch exists at feat/<slug>
|
|
244
|
+
</HARD-GATE>
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
**Benefit**: Addresses the core scope discipline problem without changing workflow
|
|
248
|
+
**Risk**: None — purely additive
|
|
249
|
+
**Verdict**: Should be done immediately regardless of other options
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
## Key Insight: Skills vs Commands
|
|
254
|
+
|
|
255
|
+
Superpowers skills auto-trigger. Forge uses explicit commands (`/plan`, `/dev`). These are philosophically different:
|
|
256
|
+
|
|
257
|
+
- **Forge**: User explicitly controls each stage. Good for learning, transparency.
|
|
258
|
+
- **Superpowers**: Agent decides when to invoke skills. Good for autonomy, fewer user interruptions.
|
|
259
|
+
|
|
260
|
+
For Forge's use case (multi-agent support, OpenSpec, Beads, full PR lifecycle), the explicit command model is correct. But Superpowers' brainstorming gate and systematic debugging are worth importing as skills, not auto-triggers.
|
|
261
|
+
|
|
262
|
+
---
|
|
263
|
+
|
|
264
|
+
## Related obra Repos Worth Knowing
|
|
265
|
+
|
|
266
|
+
| Repo | Description | URL |
|
|
267
|
+
|------|-------------|-----|
|
|
268
|
+
| `obra/superpowers-marketplace` | Claude Code plugin marketplace | https://github.com/obra/superpowers-marketplace |
|
|
269
|
+
| `obra/issue-cards` | AI-optimized CLI issue tracker (similar to Beads) | https://github.com/obra/issue-cards |
|
|
270
|
+
| `obra/coderabbit-review-helper` | Extract CodeRabbit PR reviews for AI agent consumption | https://github.com/obra/coderabbit-review-helper |
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## Recommendations for Forge
|
|
275
|
+
|
|
276
|
+
**Priority 1 (Quick wins, no new features needed):**
|
|
277
|
+
1. Adopt `<HARD-GATE>` pattern in `/research`, `/plan`, `/dev` commands — prevents stage-skipping
|
|
278
|
+
2. Add `brainstorming` as a new stage between `/research` and `/plan` (or make it optional in `/plan`)
|
|
279
|
+
3. Add `verification-before-completion` logic to `/check` command
|
|
280
|
+
|
|
281
|
+
**Priority 2 (New skills):**
|
|
282
|
+
4. Port `systematic-debugging` as `/debug` command
|
|
283
|
+
5. Port `writing-skills` as `/skill` command for authoring new Forge skills
|
|
284
|
+
6. Add git worktree support to `/dev` command (isolated implementation)
|
|
285
|
+
|
|
286
|
+
**Priority 3 (Infrastructure):**
|
|
287
|
+
7. Explore distributing Forge as a Claude Code plugin (`.claude-plugin/` directory) — same distribution model as Superpowers
|
|
288
|
+
8. Add two-stage code review to `/review` command (spec compliance first, then code quality)
|
|
289
|
+
|
|
290
|
+
**What NOT to take:**
|
|
291
|
+
- Don't replace Beads with `obra/issue-cards` — Beads has cross-session persistence and is already integrated
|
|
292
|
+
- Don't replace OpenSpec with `writing-plans` — different purpose levels
|
|
293
|
+
- Don't install Superpowers plugin directly — workflow collision risk until roles are defined
|
|
294
|
+
|
|
295
|
+
---
|
|
296
|
+
|
|
297
|
+
## Sources Index
|
|
298
|
+
|
|
299
|
+
| # | URL | Used For |
|
|
300
|
+
|---|-----|---------|
|
|
301
|
+
| 1 | https://github.com/obra/superpowers | Repo structure, README, skills list |
|
|
302
|
+
| 2 | https://github.com/obra/superpowers/blob/main/README.md | Workflow, installation, philosophy |
|
|
303
|
+
| 3 | https://blog.fsck.com/2025/10/09/superpowers/ | Origin story, session-start hook |
|
|
304
|
+
| 4 | https://simonwillison.net/2025/Oct/10/superpowers/ | Community reception, feelings journal mention |
|
|
305
|
+
| 5 | https://news.ycombinator.com/item?id=45547344 | HN reception (435 pts, 231 comments) |
|
|
306
|
+
| 6 | https://www.threads.com/@obrajesse/post/DVANeBYEfuF/ | 4th most installed in Claude marketplace |
|
|
307
|
+
| 7 | https://github.com/obra/superpowers-marketplace | Marketplace companion repo |
|
|
308
|
+
| 8 | https://github.com/obra/issue-cards | Related obra issue tracker |
|
|
309
|
+
| 9 | https://github.com/obra/coderabbit-review-helper | Related obra PR review tool |
|
|
310
|
+
| 10 | https://mcpmarket.com/server/superpowers | MCP market listing |
|
|
311
|
+
| 11 | https://www.reddit.com/r/ClaudeCode/comments/1r9y2ka/ | User experience reports |
|
|
312
|
+
| 12 | https://www.reddit.com/r/ClaudeCode/comments/1qlsdjb/superpowers_vs_gsd_vs_others/ | Comparison with GSD workflow |
|
|
313
|
+
| 13 | https://www.reddit.com/r/ClaudeCode/comments/1ra8rdy/plan_mode_vs_superpowers_brainstorming_which/ | Plan mode vs brainstorming comparison |
|
|
314
|
+
| 14 | https://blog.devgenius.io/superpowers-explained-the-claude-plugin-that-enforces-tdd-subagents-and-planning-c7fe698c3b82 | Technical explanation |
|
|
315
|
+
| 15 | https://innovationhub.ai.cornell.edu/articles/how-i-built-a-3600-line-feature-in-4-hours-without-writing-a-single-line-of-code/ | Real-world results |
|
|
316
|
+
| 16 | https://sitepoint.com/agentic-engineering-superpowers-framework-agent-capabilities/ | Architecture patterns analysis |
|
|
317
|
+
| 17 | https://st0012.dev/links/2026-01-15-a-claude-code-workflow-with-the-superpowers-plugin/ | `/superpowers:brainstorm` and `/superpowers:write-plan` usage |
|
|
318
|
+
| 18 | https://medium.com/vibe-coding/every-ai-tool-has-plan-mode-none-of-them-do-it-right-6bd540155690 | Plan mode vs Superpowers brainstorming |
|
|
319
|
+
| 19 | https://dev.to/tumf/superpowers-the-technology-to-persuade-ai-agents-why-psychological-principles-change-code-quality-2d2f | Psychological principles in AI instructions |
|