Skip to content

Commit 43559f3

Browse files
backnotpropclaude
andcommitted
fix: clarify build dependency comments
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0e1c1e7 commit 43559f3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.agents/skills/release/SKILL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ The VS Code extension (`apps/vscode-extension/package.json`) has independent ver
133133
Build in dependency order. Each step depends on the previous:
134134

135135
```bash
136-
bun run build:review # 1. Code review editor (independent Vite build)
137-
bun run build:hook # 2. Plan review + hook server (copies review output)
138-
bun run build:opencode # 3. OpenCode plugin (copies HTML from hook + review)
139-
bun run build:pi # 4. Pi extension (chains: review → hook → pi internally, but since 1-2 are done, it just builds pi)
136+
bun run build:review # 1. Code review editor (standalone Vite build)
137+
bun run build:hook # 2. Plan review + hook server (copies review's built HTML into hook dist)
138+
bun run build:opencode # 3. OpenCode plugin (copies built HTML from hook + review)
139+
bun run build:pi # 4. Pi extension (chains review → hook → pi internally, safe to run after 1-2)
140140
```
141141

142142
The `build:pi` script internally runs `bun run build:review && bun run build:hook && bun run --cwd apps/pi-extension build`, so if you've already run steps 1-2, you can just run `bun run --cwd apps/pi-extension build` directly. But running the full `build:pi` is also fine — it's idempotent.

0 commit comments

Comments
 (0)