mirror of
https://github.com/obra/superpowers.git
synced 2026-07-17 23:44:04 +08:00
Compare commits
6 Commits
fix/window
...
tdd-writin
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0e69a4d32c | ||
|
|
8afa64b49d | ||
|
|
deb9d855cb | ||
|
|
78fb4643da | ||
|
|
6f3eca4f2e | ||
|
|
0cfc0a16b4 |
@@ -101,7 +101,7 @@ Skills are not prose — they are code that shapes agent behavior. If you modify
|
|||||||
|
|
||||||
## Eval harness
|
## Eval harness
|
||||||
|
|
||||||
Skill-behavior evals live in [superpowers-evals](https://github.com/prime-radiant-inc/superpowers-evals/), cloned into `evals/` — see `evals/README.md` for setup. Drill (the harness) drives real tmux sessions of Claude Code / Codex / Gemini CLI and judges skill compliance with an LLM verifier. Plugin-infrastructure tests still live at `tests/`.
|
Skill-behavior evals live in [superpowers-evals](https://github.com/prime-radiant-inc/superpowers-evals/), cloned into `evals/` — see `evals/README.md` for setup. The harness drives real tmux sessions of Claude Code / Codex and judges skill compliance with an LLM verifier. Plugin-infrastructure tests still live at `tests/`.
|
||||||
|
|
||||||
## Understand the Project Before Contributing
|
## Understand the Project Before Contributing
|
||||||
|
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -11,7 +11,7 @@ If this sounds like someone you know, definitely send them our way.
|
|||||||
|
|
||||||
## Quickstart
|
## Quickstart
|
||||||
|
|
||||||
Give your agent Superpowers: [Claude Code](#claude-code), [Antigravity](#antigravity), [Codex App](#codex-app), [Codex CLI](#codex-cli), [Cursor](#cursor), [Factory Droid](#factory-droid), [Gemini CLI](#gemini-cli), [GitHub Copilot CLI](#github-copilot-cli), [Kimi Code](#kimi-code), [OpenCode](#opencode), [Pi](#pi).
|
Give your agent Superpowers: [Claude Code](#claude-code), [Antigravity](#antigravity), [Codex App](#codex-app), [Codex CLI](#codex-cli), [Cursor](#cursor), [Factory Droid](#factory-droid), [GitHub Copilot CLI](#github-copilot-cli), [Kimi Code](#kimi-code), [OpenCode](#opencode), [Pi](#pi).
|
||||||
|
|
||||||
## How it works
|
## How it works
|
||||||
|
|
||||||
@@ -122,20 +122,6 @@ Superpowers is available via the [official Codex plugin marketplace](https://git
|
|||||||
droid plugin install superpowers@superpowers
|
droid plugin install superpowers@superpowers
|
||||||
```
|
```
|
||||||
|
|
||||||
### Gemini CLI
|
|
||||||
|
|
||||||
- Install the extension:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
gemini extensions install https://github.com/obra/superpowers
|
|
||||||
```
|
|
||||||
|
|
||||||
- Update later:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
gemini extensions update superpowers
|
|
||||||
```
|
|
||||||
|
|
||||||
### GitHub Copilot CLI
|
### GitHub Copilot CLI
|
||||||
|
|
||||||
- Register the marketplace:
|
- Register the marketplace:
|
||||||
|
|||||||
@@ -784,10 +784,10 @@ Use this as the live index; when in doubt, read the files, not this table.
|
|||||||
|
|
||||||
| Harness | Entry point | Bootstrap mechanism | Tool mapping | Tests | Distribution |
|
| Harness | Entry point | Bootstrap mechanism | Tool mapping | Tests | Distribution |
|
||||||
|---|---|---|---|---|---|
|
|---|---|---|---|---|---|
|
||||||
| Claude Code | `.claude-plugin/plugin.json` + `hooks/hooks.json` | shell hook → `hooks/session-start` (`hookSpecificOutput.additionalContext`) | native `Skill` tool; no adapter file needed | `tests/hooks/` | marketplace |
|
| Claude Code | `.claude-plugin/plugin.json` + `hooks/hooks.json` | shell hook → `hooks/session-start` (`hookSpecificOutput.additionalContext`) | native `Skill` tool; `references/claude-code-tools.md` | `tests/hooks/` | marketplace |
|
||||||
| Codex | `.codex-plugin/plugin.json` (declares empty `hooks`) | native skill discovery (no session-start hook) | `references/codex-tools.md` | `tests/codex/`, `tests/codex-plugin-sync/` | fork sync (`scripts/sync-to-codex-plugin.sh`) |
|
| Codex | `.codex-plugin/plugin.json` (declares empty `hooks`) | native skill discovery (no session-start hook) | `references/codex-tools.md` | `tests/codex/`, `tests/codex-plugin-sync/` | fork sync (`scripts/sync-to-codex-plugin.sh`) |
|
||||||
| Cursor | `.cursor-plugin/plugin.json` + `hooks/hooks-cursor.json` | shell hook → `hooks/session-start` (`additional_context`) | none needed (Claude Code–compatible tool surface) | `tests/hooks/` | hand-authored |
|
| Cursor | `.cursor-plugin/plugin.json` + `hooks/hooks-cursor.json` | shell hook → `hooks/session-start` (`additional_context`) | `references/claude-code-tools.md` | `tests/hooks/` | hand-authored |
|
||||||
| Copilot CLI | (shares Claude Code hook path; `COPILOT_CLI` env) | shell hook → `hooks/session-start` (`additionalContext`) | none needed (Claude Code–compatible tool surface) | `tests/hooks/` | — |
|
| Copilot CLI | (shares Claude Code hook path; `COPILOT_CLI` env) | shell hook → `hooks/session-start` (`additionalContext`) | `references/copilot-tools.md` | `tests/hooks/` | — |
|
||||||
| Gemini CLI | `gemini-extension.json` + `GEMINI.md` | instructions file `@`-includes bootstrap + mapping | `references/gemini-tools.md` | — | `gemini extensions install` |
|
| Gemini CLI | `gemini-extension.json` + `GEMINI.md` | instructions file `@`-includes bootstrap + mapping | `references/gemini-tools.md` | — | `gemini extensions install` |
|
||||||
| Kimi Code | `.kimi-plugin/plugin.json` | manifest `sessionStart.skill` loads `using-superpowers` | inline `skillInstructions` in manifest | `tests/kimi/` | marketplace or `/plugins install` GitHub URL |
|
| Kimi Code | `.kimi-plugin/plugin.json` | manifest `sessionStart.skill` loads `using-superpowers` | inline `skillInstructions` in manifest | `tests/kimi/` | marketplace or `/plugins install` GitHub URL |
|
||||||
| OpenCode | `.opencode/plugins/superpowers.js` (declared via root `package.json` `main`) | in-process: `config` hook registers skills dir; `experimental.chat.messages.transform` injects user message | inline in `superpowers.js` | `tests/opencode/` | `opencode.json` plugin git URL |
|
| OpenCode | `.opencode/plugins/superpowers.js` (declared via root `package.json` `main`) | in-process: `config` hook registers skills dir; `experimental.chat.messages.transform` injects user message | inline in `superpowers.js` | `tests/opencode/` | `opencode.json` plugin git URL |
|
||||||
|
|||||||
@@ -6,18 +6,9 @@ Claude Code plugins need hooks that work on Windows, macOS, and Linux. This docu
|
|||||||
|
|
||||||
## The Problem
|
## The Problem
|
||||||
|
|
||||||
Claude Code runs hook commands through a shell:
|
Claude Code runs hook commands through the system's default shell:
|
||||||
|
- **Windows**: CMD.exe
|
||||||
- **macOS/Linux**: bash or sh
|
- **macOS/Linux**: bash or sh
|
||||||
- **Windows with Git Bash installed**: Git Bash
|
|
||||||
- **Windows without Git Bash**: PowerShell (older versions used CMD.exe)
|
|
||||||
|
|
||||||
Neither Windows fallback shell can parse our command string: PowerShell treats
|
|
||||||
a leading quoted path as a string expression and errors on the next bareword,
|
|
||||||
and CMD.exe's `/c` quoting rules strip the outer quotes when the path contains
|
|
||||||
a metacharacter such as `(`. Our hooks therefore declare `"shell": "bash"`
|
|
||||||
(supported since Claude Code 2.1.81; older versions ignore the key), which
|
|
||||||
forces the Git Bash route and, when Git Bash is absent, produces an actionable
|
|
||||||
"install Git for Windows" error instead of a shell parser failure.
|
|
||||||
|
|
||||||
This creates several challenges:
|
This creates several challenges:
|
||||||
|
|
||||||
@@ -51,7 +42,6 @@ hooks/
|
|||||||
{
|
{
|
||||||
"type": "command",
|
"type": "command",
|
||||||
"command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" session-start",
|
"command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" session-start",
|
||||||
"shell": "bash",
|
|
||||||
"async": false
|
"async": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
{
|
{
|
||||||
"type": "command",
|
"type": "command",
|
||||||
"command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" session-start",
|
"command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd\" session-start",
|
||||||
"shell": "bash",
|
|
||||||
"async": false
|
"async": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -77,7 +77,6 @@ digraph brainstorming {
|
|||||||
- Propose 2-3 different approaches with trade-offs
|
- Propose 2-3 different approaches with trade-offs
|
||||||
- Present options conversationally with your recommendation and reasoning
|
- Present options conversationally with your recommendation and reasoning
|
||||||
- Lead with your recommended option and explain why
|
- Lead with your recommended option and explain why
|
||||||
- YAGNI ruthlessly - remove unnecessary features from every approach and design
|
|
||||||
|
|
||||||
**Presenting the design:**
|
**Presenting the design:**
|
||||||
|
|
||||||
@@ -131,6 +130,15 @@ Wait for the user's response. If they request changes, make them and re-run the
|
|||||||
- Invoke the writing-plans skill to create a detailed implementation plan
|
- Invoke the writing-plans skill to create a detailed implementation plan
|
||||||
- Do NOT invoke any other skill. writing-plans is the next step.
|
- Do NOT invoke any other skill. writing-plans is the next step.
|
||||||
|
|
||||||
|
## Key Principles
|
||||||
|
|
||||||
|
- **One question at a time** - Don't overwhelm with multiple questions
|
||||||
|
- **Multiple choice preferred** - Easier to answer than open-ended when possible
|
||||||
|
- **YAGNI ruthlessly** - Remove unnecessary features from all designs
|
||||||
|
- **Explore alternatives** - Always propose 2-3 approaches before settling
|
||||||
|
- **Incremental validation** - Present design, get approval before moving on
|
||||||
|
- **Be flexible** - Go back and clarify when something doesn't make sense
|
||||||
|
|
||||||
## Visual Companion
|
## Visual Companion
|
||||||
|
|
||||||
A browser-based companion for showing mockups, diagrams, and visual options during brainstorming. Available as a tool — not a mode. Accepting the companion means it's available for questions that benefit from visual treatment; it does NOT mean every question goes through the browser.
|
A browser-based companion for showing mockups, diagrams, and visual options during brainstorming. Available as a tool — not a mode. Accepting the companion means it's available for questions that benefit from visual treatment; it does NOT mean every question goes through the browser.
|
||||||
|
|||||||
@@ -74,13 +74,6 @@ On Windows, the script auto-detects and switches to foreground mode (which block
|
|||||||
scripts/start-server.sh --project-dir /path/to/project --open
|
scripts/start-server.sh --project-dir /path/to/project --open
|
||||||
```
|
```
|
||||||
|
|
||||||
**Gemini CLI:**
|
|
||||||
```bash
|
|
||||||
# Use --foreground and set is_background: true on your shell tool call
|
|
||||||
# so the process survives across turns
|
|
||||||
scripts/start-server.sh --project-dir /path/to/project --open --foreground
|
|
||||||
```
|
|
||||||
|
|
||||||
**Copilot CLI:**
|
**Copilot CLI:**
|
||||||
```bash
|
```bash
|
||||||
# Use --foreground and start the server via the bash tool with mode: "async"
|
# Use --foreground and start the server via the bash tool with mode: "async"
|
||||||
|
|||||||
@@ -158,6 +158,15 @@ Agent 3 → Fix tool-approval-race-conditions.test.ts
|
|||||||
|
|
||||||
**Integration:** All fixes independent, no conflicts, full suite green
|
**Integration:** All fixes independent, no conflicts, full suite green
|
||||||
|
|
||||||
|
**Time saved:** 3 problems solved in parallel vs sequentially
|
||||||
|
|
||||||
|
## Key Benefits
|
||||||
|
|
||||||
|
1. **Parallelization** - Multiple investigations happen simultaneously
|
||||||
|
2. **Focus** - Each agent has narrow scope, less context to track
|
||||||
|
3. **Independence** - Agents don't interfere with each other
|
||||||
|
4. **Speed** - 3 problems solved in time of 1
|
||||||
|
|
||||||
## Verification
|
## Verification
|
||||||
|
|
||||||
After agents return:
|
After agents return:
|
||||||
@@ -165,3 +174,12 @@ After agents return:
|
|||||||
2. **Check for conflicts** - Did agents edit same code?
|
2. **Check for conflicts** - Did agents edit same code?
|
||||||
3. **Run full suite** - Verify all fixes work together
|
3. **Run full suite** - Verify all fixes work together
|
||||||
4. **Spot check** - Agents can make systematic errors
|
4. **Spot check** - Agents can make systematic errors
|
||||||
|
|
||||||
|
## Real-World Impact
|
||||||
|
|
||||||
|
From debugging session (2025-10-03):
|
||||||
|
- 6 failures across 3 files
|
||||||
|
- 3 agents dispatched in parallel
|
||||||
|
- All investigations completed concurrently
|
||||||
|
- All fixes integrated successfully
|
||||||
|
- Zero conflicts between agent changes
|
||||||
|
|||||||
@@ -11,16 +11,15 @@ Load plan, review critically, execute all tasks, report when complete.
|
|||||||
|
|
||||||
**Announce at start:** "I'm using the executing-plans skill to implement this plan."
|
**Announce at start:** "I'm using the executing-plans skill to implement this plan."
|
||||||
|
|
||||||
**Note:** Tell your human partner that Superpowers works much better with access to subagents (Claude Code, Codex CLI, Codex App, Copilot CLI, and Gemini CLI all qualify; see the per-platform tool refs in `../using-superpowers/references/`). If subagents are available, use superpowers:subagent-driven-development instead of this skill.
|
**Note:** Tell your human partner that Superpowers works much better with access to subagents. The quality of its work will be significantly higher if run on a platform with subagent support (Claude Code, Codex CLI, Codex App, and Copilot CLI all qualify; see the per-platform tool refs in `../using-superpowers/references/`). If subagents are available, use superpowers:subagent-driven-development instead of this skill.
|
||||||
|
|
||||||
## The Process
|
## The Process
|
||||||
|
|
||||||
### Step 1: Load and Review Plan
|
### Step 1: Load and Review Plan
|
||||||
1. Ensure an isolated workspace: use superpowers:using-git-worktrees to create one or verify the existing one
|
1. Read plan file
|
||||||
2. Read plan file
|
2. Review critically - identify any questions or concerns about the plan
|
||||||
3. Review critically - identify any questions or concerns about the plan
|
3. If concerns: Raise them with your human partner before starting
|
||||||
4. If concerns: Raise them with your human partner before starting
|
4. If no concerns: Create todos for the plan items and proceed
|
||||||
5. If no concerns: Create todos for the plan items and proceed
|
|
||||||
|
|
||||||
### Step 2: Execute Tasks
|
### Step 2: Execute Tasks
|
||||||
|
|
||||||
@@ -62,3 +61,10 @@ After all tasks complete and verified:
|
|||||||
- Reference skills when plan says to
|
- Reference skills when plan says to
|
||||||
- Stop when blocked, don't guess
|
- Stop when blocked, don't guess
|
||||||
- Never start implementation on main/master branch without explicit user consent
|
- Never start implementation on main/master branch without explicit user consent
|
||||||
|
|
||||||
|
## Integration
|
||||||
|
|
||||||
|
**Required workflow skills:**
|
||||||
|
- **superpowers:using-git-worktrees** - Ensures isolated workspace (creates one or verifies existing)
|
||||||
|
- **superpowers:writing-plans** - Creates the plan this skill executes
|
||||||
|
- **superpowers:finishing-a-development-branch** - Complete development after all tasks
|
||||||
|
|||||||
@@ -1,58 +1,71 @@
|
|||||||
---
|
---
|
||||||
name: finishing-a-development-branch
|
name: finishing-a-development-branch
|
||||||
description: Use when implementation is complete, all tests pass, and you need to decide how to integrate the work
|
description: Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
|
||||||
---
|
---
|
||||||
|
|
||||||
# Finishing a Development Branch
|
# Finishing a Development Branch
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
Guide completion of development work by presenting clear options and handling chosen workflow.
|
||||||
|
|
||||||
**Core principle:** Verify tests → Detect environment → Present options → Execute choice → Clean up.
|
**Core principle:** Verify tests → Detect environment → Present options → Execute choice → Clean up.
|
||||||
|
|
||||||
**Announce at start:** "I'm using the finishing-a-development-branch skill to complete this work."
|
**Announce at start:** "I'm using the finishing-a-development-branch skill to complete this work."
|
||||||
|
|
||||||
## Step 1: Verify Tests
|
## The Process
|
||||||
|
|
||||||
Run the project's full test suite (`npm test` / `cargo test` / `pytest` / `go test ./...`).
|
### Step 1: Verify Tests
|
||||||
|
|
||||||
**If tests fail**, report the failures and stop — the menu comes after a green suite:
|
**Before presenting options, verify tests pass:**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Run project's test suite
|
||||||
|
npm test / cargo test / pytest / go test ./...
|
||||||
|
```
|
||||||
|
|
||||||
|
**If tests fail:**
|
||||||
```
|
```
|
||||||
Tests failing (<N> failures). Must fix before completing:
|
Tests failing (<N> failures). Must fix before completing:
|
||||||
|
|
||||||
[Show failures]
|
[Show failures]
|
||||||
|
|
||||||
|
Cannot proceed with merge/PR until tests pass.
|
||||||
```
|
```
|
||||||
|
|
||||||
**If tests pass:** continue to Step 2.
|
Stop. Don't proceed to Step 2.
|
||||||
|
|
||||||
## Step 2: Detect Environment
|
**If tests pass:** Continue to Step 2.
|
||||||
|
|
||||||
|
### Step 2: Detect Environment
|
||||||
|
|
||||||
|
**Determine workspace state before presenting options:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P)
|
GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P)
|
||||||
GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P)
|
GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P)
|
||||||
# Capture now, while still inside the workspace — Step 5 changes directory
|
|
||||||
# before cleanup (Step 6) needs this value
|
|
||||||
WORKTREE_PATH=$(git rev-parse --show-toplevel)
|
|
||||||
```
|
```
|
||||||
|
|
||||||
This determines which menu to show and how cleanup works:
|
This determines which menu to show and how cleanup works:
|
||||||
|
|
||||||
| State | Menu | Cleanup |
|
| State | Menu | Cleanup |
|
||||||
|-------|------|---------|
|
|-------|------|---------|
|
||||||
| `GIT_DIR == GIT_COMMON` (normal repo) | Standard 3 options | No worktree to clean up |
|
| `GIT_DIR == GIT_COMMON` (normal repo) | Standard 4 options | No worktree to clean up |
|
||||||
| `GIT_DIR != GIT_COMMON`, named branch | Standard 3 options | Provenance-based (see Step 6) |
|
| `GIT_DIR != GIT_COMMON`, named branch | Standard 4 options | Provenance-based (see Step 6) |
|
||||||
| `GIT_DIR != GIT_COMMON`, detached HEAD | Reduced 2 options (no merge) | Externally managed — leave in place |
|
| `GIT_DIR != GIT_COMMON`, detached HEAD | Reduced 3 options (no merge) | No cleanup (externally managed) |
|
||||||
|
|
||||||
## Step 3: Determine Base Branch
|
### Step 3: Determine Base Branch
|
||||||
|
|
||||||
The base branch is whatever this work forked from — usually named in the
|
```bash
|
||||||
plan, the conversation, or the branch's upstream. If it is not already
|
# Try common base branches
|
||||||
known, ask: "This branch split from <your best guess> - is that correct?"
|
git merge-base HEAD main 2>/dev/null || git merge-base HEAD master 2>/dev/null
|
||||||
Confirm before merging: merging into the wrong base is expensive to undo.
|
```
|
||||||
|
|
||||||
## Step 4: Present Options
|
Or ask: "This branch split from main - is that correct?"
|
||||||
|
|
||||||
**Normal repo and named-branch worktree — present exactly these 3 options:**
|
### Step 4: Present Options
|
||||||
|
|
||||||
|
**Normal repo and named-branch worktree — present exactly these 4 options:**
|
||||||
|
|
||||||
```
|
```
|
||||||
Implementation complete. What would you like to do?
|
Implementation complete. What would you like to do?
|
||||||
@@ -60,30 +73,28 @@ Implementation complete. What would you like to do?
|
|||||||
1. Merge back to <base-branch> locally
|
1. Merge back to <base-branch> locally
|
||||||
2. Push and create a Pull Request
|
2. Push and create a Pull Request
|
||||||
3. Keep the branch as-is (I'll handle it later)
|
3. Keep the branch as-is (I'll handle it later)
|
||||||
|
4. Discard this work
|
||||||
|
|
||||||
Which option?
|
Which option?
|
||||||
```
|
```
|
||||||
|
|
||||||
**Detached HEAD — present exactly these 2 options:**
|
**Detached HEAD — present exactly these 3 options:**
|
||||||
|
|
||||||
```
|
```
|
||||||
Implementation complete. You're on a detached HEAD (externally managed workspace).
|
Implementation complete. You're on a detached HEAD (externally managed workspace).
|
||||||
|
|
||||||
1. Push as new branch and create a Pull Request
|
1. Push as new branch and create a Pull Request
|
||||||
2. Keep as-is (I'll handle it later)
|
2. Keep as-is (I'll handle it later)
|
||||||
|
3. Discard this work
|
||||||
|
|
||||||
Which option?
|
Which option?
|
||||||
```
|
```
|
||||||
|
|
||||||
Present the menu exactly as written — concise, with every option coming
|
**Don't add explanation** - keep options concise.
|
||||||
from the list above. Discarding the work happens only in response to your
|
|
||||||
human partner explicitly asking for it (see "If your human partner asks to
|
|
||||||
discard the work" below). Wait for their answer; the integration decision
|
|
||||||
is theirs.
|
|
||||||
|
|
||||||
## Step 5: Execute Choice
|
### Step 5: Execute Choice
|
||||||
|
|
||||||
### Option 1: Merge Locally
|
#### Option 1: Merge Locally
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Get main repo root for CWD safety
|
# Get main repo root for CWD safety
|
||||||
@@ -97,43 +108,34 @@ git merge <feature-branch>
|
|||||||
|
|
||||||
# Verify tests on merged result
|
# Verify tests on merged result
|
||||||
<test command>
|
<test command>
|
||||||
|
|
||||||
|
# Only after merge succeeds: cleanup worktree (Step 6), then delete branch
|
||||||
```
|
```
|
||||||
|
|
||||||
If tests fail on the merged result: stop, leave the worktree and branch in
|
Then: Cleanup worktree (Step 6), then delete branch:
|
||||||
place, and investigate — nothing has been pushed, so the merge is local
|
|
||||||
and recoverable.
|
|
||||||
|
|
||||||
Once the merged result is green: clean up the worktree (Step 6), then
|
|
||||||
delete the branch:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git branch -d <feature-branch>
|
git branch -d <feature-branch>
|
||||||
```
|
```
|
||||||
|
|
||||||
### Option 2: Push and Create PR
|
#### Option 2: Push and Create PR
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# Push branch
|
||||||
git push -u origin <feature-branch>
|
git push -u origin <feature-branch>
|
||||||
# From a detached HEAD, name the new branch on the remote:
|
|
||||||
# git push origin HEAD:refs/heads/<new-branch>
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Then create the pull/merge request against <base-branch> with the forge's
|
**Do NOT clean up worktree** — user needs it alive to iterate on PR feedback.
|
||||||
tooling — its CLI if one is available, or the creation URL most forges
|
|
||||||
print when you push — following the repo's PR template and conventions if
|
|
||||||
present, and report the URL to your human partner.
|
|
||||||
|
|
||||||
Keep the worktree — your human partner iterates on PR feedback there.
|
#### Option 3: Keep As-Is
|
||||||
|
|
||||||
### Option 3: Keep As-Is
|
|
||||||
|
|
||||||
Report: "Keeping branch <name>. Worktree preserved at <path>."
|
Report: "Keeping branch <name>. Worktree preserved at <path>."
|
||||||
|
|
||||||
### If your human partner asks to discard the work
|
**Don't cleanup worktree.**
|
||||||
|
|
||||||
This path exists only as a response to an explicit request to throw the
|
#### Option 4: Discard
|
||||||
work away. Confirm first:
|
|
||||||
|
|
||||||
|
**Confirm first:**
|
||||||
```
|
```
|
||||||
This will permanently delete:
|
This will permanently delete:
|
||||||
- Branch <name>
|
- Branch <name>
|
||||||
@@ -143,39 +145,41 @@ This will permanently delete:
|
|||||||
Type 'discard' to confirm.
|
Type 'discard' to confirm.
|
||||||
```
|
```
|
||||||
|
|
||||||
Wait for that exact confirmation. When it arrives:
|
Wait for exact confirmation.
|
||||||
|
|
||||||
|
If confirmed:
|
||||||
```bash
|
```bash
|
||||||
MAIN_ROOT=$(git -C "$(git rev-parse --git-common-dir)/.." rev-parse --show-toplevel)
|
MAIN_ROOT=$(git -C "$(git rev-parse --git-common-dir)/.." rev-parse --show-toplevel)
|
||||||
cd "$MAIN_ROOT"
|
cd "$MAIN_ROOT"
|
||||||
```
|
```
|
||||||
|
|
||||||
Then clean up the worktree (Step 6) and force-delete the branch:
|
Then: Cleanup worktree (Step 6), then force-delete branch:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git branch -D <feature-branch>
|
git branch -D <feature-branch>
|
||||||
```
|
```
|
||||||
|
|
||||||
## Step 6: Cleanup Workspace
|
### Step 6: Cleanup Workspace
|
||||||
|
|
||||||
**Runs for Option 1 and confirmed discards.** Options 2 and 3 always
|
**Only runs for Options 1 and 4.** Options 2 and 3 always preserve the worktree.
|
||||||
preserve the worktree. Both callers have already changed directory to the
|
|
||||||
main repo root — worktree removal must run from outside the worktree —
|
```bash
|
||||||
and use the `GIT_DIR`/`GIT_COMMON`/`WORKTREE_PATH` values captured in
|
GIT_DIR=$(cd "$(git rev-parse --git-dir)" 2>/dev/null && pwd -P)
|
||||||
Step 2, from before that directory change.
|
GIT_COMMON=$(cd "$(git rev-parse --git-common-dir)" 2>/dev/null && pwd -P)
|
||||||
|
WORKTREE_PATH=$(git rev-parse --show-toplevel)
|
||||||
|
```
|
||||||
|
|
||||||
**If `GIT_DIR == GIT_COMMON`:** Normal repo, no worktree to clean up. Done.
|
**If `GIT_DIR == GIT_COMMON`:** Normal repo, no worktree to clean up. Done.
|
||||||
|
|
||||||
**If `WORKTREE_PATH` is under `.worktrees/` or `worktrees/`:** Superpowers
|
**If worktree path is under `.worktrees/` or `worktrees/`:** Superpowers created this worktree — we own cleanup.
|
||||||
created this worktree — we own cleanup:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
MAIN_ROOT=$(git -C "$(git rev-parse --git-common-dir)/.." rev-parse --show-toplevel)
|
||||||
|
cd "$MAIN_ROOT"
|
||||||
git worktree remove "$WORKTREE_PATH"
|
git worktree remove "$WORKTREE_PATH"
|
||||||
git worktree prune # Self-healing: clean up any stale registrations
|
git worktree prune # Self-healing: clean up any stale registrations
|
||||||
```
|
```
|
||||||
|
|
||||||
**Otherwise:** The host environment owns this workspace — leave it in
|
**Otherwise:** The host environment (harness) owns this workspace. Do NOT remove it. If your platform provides a workspace-exit tool, use it. Otherwise, leave the workspace in place.
|
||||||
place. If your platform provides a workspace-exit tool, use it.
|
|
||||||
|
|
||||||
## Quick Reference
|
## Quick Reference
|
||||||
|
|
||||||
@@ -184,18 +188,54 @@ place. If your platform provides a workspace-exit tool, use it.
|
|||||||
| 1. Merge locally | yes | - | - | yes |
|
| 1. Merge locally | yes | - | - | yes |
|
||||||
| 2. Create PR | - | yes | yes | - |
|
| 2. Create PR | - | yes | yes | - |
|
||||||
| 3. Keep as-is | - | - | yes | - |
|
| 3. Keep as-is | - | - | yes | - |
|
||||||
| Discard (explicit request only) | - | - | - | yes (force) |
|
| 4. Discard | - | - | - | yes (force) |
|
||||||
|
|
||||||
## Common Rationalizations
|
## Common Mistakes
|
||||||
|
|
||||||
| Excuse | Reality |
|
**Skipping test verification**
|
||||||
|--------|---------|
|
- **Problem:** Merge broken code, create failing PR
|
||||||
| "Tests passed earlier this session" | Run the suite on the tree you are about to integrate. A green run only proves the tree it ran on. |
|
- **Fix:** Always verify tests before offering options
|
||||||
| "They obviously want it merged" | Integration is your human partner's decision. Present the menu and wait. |
|
|
||||||
| "They seem done with this feature — I'll offer to discard it" | The menu is complete as written. Discard happens only when your human partner asks for it in so many words. |
|
**Open-ended questions**
|
||||||
| "'Yeah, get rid of it' counts as confirmation" | Only the typed word `discard` authorizes deletion. |
|
- **Problem:** "What should I do next?" is ambiguous
|
||||||
| "The PR is up, so the worktree is clutter now" | PR feedback gets fixed in that worktree. It stays until the work lands. |
|
- **Fix:** Present exactly 4 structured options (or 3 for detached HEAD)
|
||||||
| "This other worktree looks stale — I'll clean it too" | Clean up only worktrees under `.worktrees/` or `worktrees/`. Everything else belongs to the host. |
|
|
||||||
| "The merged-result failure is probably flaky" | A failing merged result stops everything. Branch and worktree stay put while you investigate. |
|
**Cleaning up worktree for Option 2**
|
||||||
| "The base branch is obviously main" | Confirm the fork point or ask. Merging into the wrong base is expensive to undo. |
|
- **Problem:** Remove worktree user needs for PR iteration
|
||||||
| "The push was rejected — force-push will fix it" | A rejected push means the remote moved. Investigate; force-push only on your human partner's explicit request. |
|
- **Fix:** Only cleanup for Options 1 and 4
|
||||||
|
|
||||||
|
**Deleting branch before removing worktree**
|
||||||
|
- **Problem:** `git branch -d` fails because worktree still references the branch
|
||||||
|
- **Fix:** Merge first, remove worktree, then delete branch
|
||||||
|
|
||||||
|
**Running git worktree remove from inside the worktree**
|
||||||
|
- **Problem:** Command fails silently when CWD is inside the worktree being removed
|
||||||
|
- **Fix:** Always `cd` to main repo root before `git worktree remove`
|
||||||
|
|
||||||
|
**Cleaning up harness-owned worktrees**
|
||||||
|
- **Problem:** Removing a worktree the harness created causes phantom state
|
||||||
|
- **Fix:** Only clean up worktrees under `.worktrees/` or `worktrees/`
|
||||||
|
|
||||||
|
**No confirmation for discard**
|
||||||
|
- **Problem:** Accidentally delete work
|
||||||
|
- **Fix:** Require typed "discard" confirmation
|
||||||
|
|
||||||
|
## Red Flags
|
||||||
|
|
||||||
|
**Never:**
|
||||||
|
- Proceed with failing tests
|
||||||
|
- Merge without verifying tests on result
|
||||||
|
- Delete work without confirmation
|
||||||
|
- Force-push without explicit request
|
||||||
|
- Remove a worktree before confirming merge success
|
||||||
|
- Clean up worktrees you didn't create (provenance check)
|
||||||
|
- Run `git worktree remove` from inside the worktree
|
||||||
|
|
||||||
|
**Always:**
|
||||||
|
- Verify tests before offering options
|
||||||
|
- Detect environment before presenting menu
|
||||||
|
- Present exactly 4 options (or 3 for detached HEAD)
|
||||||
|
- Get typed confirmation for Option 4
|
||||||
|
- Clean up worktree for Options 1 & 4 only
|
||||||
|
- `cd` to main repo root before worktree removal
|
||||||
|
- Run `git worktree prune` after removal
|
||||||
|
|||||||
@@ -203,3 +203,11 @@ You understand 1,2,3,6. Unclear on 4,5.
|
|||||||
## GitHub Thread Replies
|
## GitHub Thread Replies
|
||||||
|
|
||||||
When replying to inline review comments on GitHub, reply in the comment thread (`gh api repos/{owner}/{repo}/pulls/{pr}/comments/{id}/replies`), not as a top-level PR comment.
|
When replying to inline review comments on GitHub, reply in the comment thread (`gh api repos/{owner}/{repo}/pulls/{pr}/comments/{id}/replies`), not as a top-level PR comment.
|
||||||
|
|
||||||
|
## The Bottom Line
|
||||||
|
|
||||||
|
**External feedback = suggestions to evaluate, not orders to follow.**
|
||||||
|
|
||||||
|
Verify. Question. Then implement.
|
||||||
|
|
||||||
|
No performative agreement. Technical rigor always.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ description: Use when completing tasks, implementing major features, or before m
|
|||||||
|
|
||||||
# Requesting Code Review
|
# Requesting Code Review
|
||||||
|
|
||||||
Dispatch a code reviewer subagent to catch issues before they cascade. The reviewer gets precisely crafted context for evaluation — never your session's history.
|
Dispatch a code reviewer subagent to catch issues before they cascade. The reviewer gets precisely crafted context for evaluation — never your session's history. This keeps the reviewer focused on the work product, not your thought process, and preserves your own context for continued work.
|
||||||
|
|
||||||
**Core principle:** Review early, review often.
|
**Core principle:** Review early, review often.
|
||||||
|
|
||||||
@@ -72,12 +72,20 @@ You: [Fix progress indicators]
|
|||||||
[Continue to Task 3]
|
[Continue to Task 3]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Common Rationalizations
|
## Integration with Workflows
|
||||||
|
|
||||||
| Excuse | Reality |
|
**Subagent-Driven Development:**
|
||||||
|--------|---------|
|
- Review after EACH task
|
||||||
| "I'll just review the diff myself instead of dispatching a reviewer" | You're the coordinator — reviewing the diff inline burns the context window you need to keep driving the work. Dispatch a reviewer subagent: the diff and the evaluation live in its context, and only the findings come back to you. |
|
- Catch issues before they compound
|
||||||
| "The reviewer needs my whole session history to understand the change" | Hand it precisely crafted context, never your session's history. That keeps the reviewer on the work product, not your thought process. |
|
- Fix before moving to next task
|
||||||
|
|
||||||
|
**Executing Plans:**
|
||||||
|
- Review after each task or at natural checkpoints
|
||||||
|
- Get feedback, apply, continue
|
||||||
|
|
||||||
|
**Ad-Hoc Development:**
|
||||||
|
- Review before merge
|
||||||
|
- Review when stuck
|
||||||
|
|
||||||
## Red Flags
|
## Red Flags
|
||||||
|
|
||||||
|
|||||||
@@ -84,9 +84,6 @@ digraph process {
|
|||||||
|
|
||||||
## Pre-Flight Plan Review
|
## Pre-Flight Plan Review
|
||||||
|
|
||||||
Ensure the work happens in an isolated workspace: use
|
|
||||||
superpowers:using-git-worktrees to create one or verify the existing one.
|
|
||||||
|
|
||||||
Before dispatching Task 1, scan the plan once for conflicts:
|
Before dispatching Task 1, scan the plan once for conflicts:
|
||||||
|
|
||||||
- tasks that contradict each other or the plan's Global Constraints
|
- tasks that contradict each other or the plan's Global Constraints
|
||||||
@@ -335,6 +332,38 @@ Final reviewer: All requirements met, ready to merge
|
|||||||
Done!
|
Done!
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Advantages
|
||||||
|
|
||||||
|
**vs. Manual execution:**
|
||||||
|
- Subagents follow TDD naturally
|
||||||
|
- Fresh context per task (no confusion)
|
||||||
|
- Parallel-safe (subagents don't interfere)
|
||||||
|
- Subagent can ask questions (before AND during work)
|
||||||
|
|
||||||
|
**vs. Executing Plans:**
|
||||||
|
- Same session (no handoff)
|
||||||
|
- Continuous progress (no waiting)
|
||||||
|
- Review checkpoints automatic
|
||||||
|
|
||||||
|
**Efficiency gains:**
|
||||||
|
- Controller curates exactly what context is needed; bulk artifacts move
|
||||||
|
as files, not pasted text
|
||||||
|
- Subagent gets complete information upfront
|
||||||
|
- Questions surfaced before work begins (not after)
|
||||||
|
|
||||||
|
**Quality gates:**
|
||||||
|
- Self-review catches issues before handoff
|
||||||
|
- Task review carries two verdicts: spec compliance and code quality
|
||||||
|
- Review loops ensure fixes actually work
|
||||||
|
- Spec compliance prevents over/under-building
|
||||||
|
- Code quality ensures implementation is well-built
|
||||||
|
|
||||||
|
**Cost:**
|
||||||
|
- More subagent invocations (implementer + reviewer per task)
|
||||||
|
- Controller does more prep work (extracting all tasks upfront)
|
||||||
|
- Review loops add iterations
|
||||||
|
- But catches issues early (cheaper than debugging later)
|
||||||
|
|
||||||
## Red Flags
|
## Red Flags
|
||||||
|
|
||||||
**Never:**
|
**Never:**
|
||||||
@@ -373,3 +402,17 @@ Done!
|
|||||||
**If subagent fails task:**
|
**If subagent fails task:**
|
||||||
- Dispatch fix subagent with specific instructions
|
- Dispatch fix subagent with specific instructions
|
||||||
- Don't try to fix manually (context pollution)
|
- Don't try to fix manually (context pollution)
|
||||||
|
|
||||||
|
## Integration
|
||||||
|
|
||||||
|
**Required workflow skills:**
|
||||||
|
- **superpowers:using-git-worktrees** - Ensures isolated workspace (creates one or verifies existing)
|
||||||
|
- **superpowers:writing-plans** - Creates the plan this skill executes
|
||||||
|
- **superpowers:requesting-code-review** - Code review template for the final whole-branch review
|
||||||
|
- **superpowers:finishing-a-development-branch** - Complete development after all tasks
|
||||||
|
|
||||||
|
**Subagents should use:**
|
||||||
|
- **superpowers:test-driven-development** - Subagents follow TDD for each task
|
||||||
|
|
||||||
|
**Alternative workflow:**
|
||||||
|
- **superpowers:executing-plans** - Use for parallel session instead of same-session execution
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ description: Use when encountering any bug, test failure, or unexpected behavior
|
|||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
Random fixes waste time and create new bugs. Quick patches mask underlying issues.
|
||||||
|
|
||||||
**Core principle:** ALWAYS find root cause before attempting fixes. Symptom fixes are failure.
|
**Core principle:** ALWAYS find root cause before attempting fixes. Symptom fixes are failure.
|
||||||
|
|
||||||
**Violating the letter of this process is violating the spirit of debugging.**
|
**Violating the letter of this process is violating the spirit of debugging.**
|
||||||
@@ -186,7 +188,6 @@ You MUST complete each phase before proceeding to the next.
|
|||||||
- Test passes now?
|
- Test passes now?
|
||||||
- No other tests broken?
|
- No other tests broken?
|
||||||
- Issue actually resolved?
|
- Issue actually resolved?
|
||||||
- Use the `superpowers:verification-before-completion` skill before claiming success
|
|
||||||
|
|
||||||
4. **If Fix Doesn't Work**
|
4. **If Fix Doesn't Work**
|
||||||
- STOP
|
- STOP
|
||||||
@@ -281,3 +282,15 @@ These techniques are part of systematic debugging and available in this director
|
|||||||
- **`root-cause-tracing.md`** - Trace bugs backward through call stack to find original trigger
|
- **`root-cause-tracing.md`** - Trace bugs backward through call stack to find original trigger
|
||||||
- **`defense-in-depth.md`** - Add validation at multiple layers after finding root cause
|
- **`defense-in-depth.md`** - Add validation at multiple layers after finding root cause
|
||||||
- **`condition-based-waiting.md`** - Replace arbitrary timeouts with condition polling
|
- **`condition-based-waiting.md`** - Replace arbitrary timeouts with condition polling
|
||||||
|
|
||||||
|
**Related skills:**
|
||||||
|
- **superpowers:test-driven-development** - For creating failing test case (Phase 4, Step 1)
|
||||||
|
- **superpowers:verification-before-completion** - Verify fix worked before claiming success
|
||||||
|
|
||||||
|
## Real-World Impact
|
||||||
|
|
||||||
|
From debugging sessions:
|
||||||
|
- Systematic approach: 15-30 minutes to fix
|
||||||
|
- Random fixes approach: 2-3 hours of thrashing
|
||||||
|
- First-time fix rate: 95% vs 40%
|
||||||
|
- New bugs introduced: Near zero vs common
|
||||||
|
|||||||
@@ -209,19 +209,69 @@ When writing or changing any test, read [writing-good-tests.md](writing-good-tes
|
|||||||
- Keep test-only code in test utilities, out of production classes
|
- Keep test-only code in test utilities, out of production classes
|
||||||
- Understand a dependency's side effects before mocking it
|
- Understand a dependency's side effects before mocking it
|
||||||
|
|
||||||
|
## Why Order Matters
|
||||||
|
|
||||||
|
**"I'll write tests after to verify it works"**
|
||||||
|
|
||||||
|
Tests written after code pass immediately. Passing immediately proves nothing:
|
||||||
|
- Might test wrong thing
|
||||||
|
- Might test implementation, not behavior
|
||||||
|
- Might miss edge cases you forgot
|
||||||
|
- You never saw it catch the bug
|
||||||
|
|
||||||
|
Test-first forces you to see the test fail, proving it actually tests something.
|
||||||
|
|
||||||
|
**"I already manually tested all the edge cases"**
|
||||||
|
|
||||||
|
Manual testing is ad-hoc. You think you tested everything but:
|
||||||
|
- No record of what you tested
|
||||||
|
- Can't re-run when code changes
|
||||||
|
- Easy to forget cases under pressure
|
||||||
|
- "It worked when I tried it" ≠ comprehensive
|
||||||
|
|
||||||
|
Automated tests are systematic. They run the same way every time.
|
||||||
|
|
||||||
|
**"Deleting X hours of work is wasteful"**
|
||||||
|
|
||||||
|
Sunk cost fallacy. The time is already gone. Your choice now:
|
||||||
|
- Delete and rewrite with TDD (X more hours, high confidence)
|
||||||
|
- Keep it and add tests after (30 min, low confidence, likely bugs)
|
||||||
|
|
||||||
|
The "waste" is keeping code you can't trust. Working code without real tests is technical debt.
|
||||||
|
|
||||||
|
**"TDD is dogmatic, being pragmatic means adapting"**
|
||||||
|
|
||||||
|
TDD IS pragmatic:
|
||||||
|
- Finds bugs before commit (faster than debugging after)
|
||||||
|
- Prevents regressions (tests catch breaks immediately)
|
||||||
|
- Documents behavior (tests show how to use code)
|
||||||
|
- Enables refactoring (change freely, tests catch breaks)
|
||||||
|
|
||||||
|
"Pragmatic" shortcuts = debugging in production = slower.
|
||||||
|
|
||||||
|
**"Tests after achieve the same goals - it's spirit not ritual"**
|
||||||
|
|
||||||
|
No. Tests-after answer "What does this do?" Tests-first answer "What should this do?"
|
||||||
|
|
||||||
|
Tests-after are biased by your implementation. You test what you built, not what's required. You verify remembered edge cases, not discovered ones.
|
||||||
|
|
||||||
|
Tests-first force edge case discovery before implementing. Tests-after verify you remembered everything (you didn't).
|
||||||
|
|
||||||
|
30 minutes of tests after ≠ TDD. You get coverage, lose proof tests work.
|
||||||
|
|
||||||
## Common Rationalizations
|
## Common Rationalizations
|
||||||
|
|
||||||
| Excuse | Reality |
|
| Excuse | Reality |
|
||||||
|--------|---------|
|
|--------|---------|
|
||||||
| "Too simple to test" | Simple code breaks. Test takes 30 seconds. |
|
| "Too simple to test" | Simple code breaks. Test takes 30 seconds. |
|
||||||
| "I'll test after" | Tests written after pass immediately — which proves nothing. They may test the wrong thing, test the implementation instead of the behavior, or miss the edge case you forgot. You never watched it fail, so you never proved it can catch the bug. Test-first forces that failure. |
|
| "I'll test after" | Tests passing immediately prove nothing. |
|
||||||
| "Tests after achieve same goals (spirit not ritual)" | Tests-after answer "what does this do?"; tests-first answer "what should this do?" Tests written after are biased by the code you already wrote — you verify the cases you remembered, not the ones you'd have discovered. Coverage without proof the tests work. |
|
| "Tests after achieve same goals" | Tests-after = "what does this do?" Tests-first = "what should this do?" |
|
||||||
| "Already manually tested" | Manual testing is ad-hoc: no record of what you covered, no way to re-run it when the code changes, easy to forget cases under pressure. "Worked when I tried it" ≠ comprehensive. Automated tests run the same way every time. |
|
| "Already manually tested" | Ad-hoc ≠ systematic. No record, can't re-run. |
|
||||||
| "Deleting X hours is wasteful" | Sunk cost fallacy — that time is already spent either way. The real choice: rewrite with TDD (high confidence) vs. keep it and bolt tests on after (low confidence, likely bugs). Keeping code you can't trust is the waste. |
|
| "Deleting X hours is wasteful" | Sunk cost fallacy. Keeping unverified code is technical debt. |
|
||||||
| "Keep as reference, write tests first" | You'll adapt it. That's testing after. Delete means delete. |
|
| "Keep as reference, write tests first" | You'll adapt it. That's testing after. Delete means delete. |
|
||||||
| "Need to explore first" | Fine. Throw away exploration, start with TDD. |
|
| "Need to explore first" | Fine. Throw away exploration, start with TDD. |
|
||||||
| "Test hard = design unclear" | Listen to test. Hard to test = hard to use. |
|
| "Test hard = design unclear" | Listen to test. Hard to test = hard to use. |
|
||||||
| "TDD will slow me down" | TDD IS the pragmatic path: catches bugs before commit, prevents regressions, lets you refactor without fear. "Pragmatic" shortcuts mean debugging in production — slower, not faster. |
|
| "TDD will slow me down" | TDD faster than debugging. Pragmatic = test-first. |
|
||||||
| "Manual test faster" | Manual doesn't prove edge cases. You'll re-test every change. |
|
| "Manual test faster" | Manual doesn't prove edge cases. You'll re-test every change. |
|
||||||
| "Existing code has no tests" | You're improving it. Add tests for existing code. |
|
| "Existing code has no tests" | You're improving it. Add tests for existing code. |
|
||||||
|
|
||||||
|
|||||||
@@ -156,12 +156,47 @@ Ready to implement <feature-name>
|
|||||||
| Tests fail during baseline | Report failures + ask |
|
| Tests fail during baseline | Report failures + ask |
|
||||||
| No package.json/Cargo.toml | Skip dependency install |
|
| No package.json/Cargo.toml | Skip dependency install |
|
||||||
|
|
||||||
## Common Rationalizations
|
## Common Mistakes
|
||||||
|
|
||||||
| Excuse | Reality |
|
### Fighting the harness
|
||||||
|--------|---------|
|
|
||||||
| "I'm obviously not in a worktree — no need to check" | Run Step 0. Harness-created isolation and submodules both fool eyeballing; the detection commands settle it. |
|
- **Problem:** Using `git worktree add` when the platform already provides isolation
|
||||||
| "`git worktree add` is quicker than hunting for a native tool" | A native tool (e.g. `EnterWorktree`) owns placement, branching, and cleanup. Bypassing it is the #1 mistake — it creates phantom state your harness can't see or manage. |
|
- **Fix:** Step 0 detects existing isolation. Step 1a defers to native tools.
|
||||||
| "The worktree directory is surely ignored already" | Run `git check-ignore`. An unignored worktree directory commits the whole tree into the repo. |
|
|
||||||
| "Any directory name works" | Explicit instructions beat an existing project-local directory, which beats the `.worktrees/` default. |
|
### Skipping detection
|
||||||
| "The workspace is fresh — baseline tests can wait" | A dirty baseline makes every later failure ambiguous. Run the tests now; proceeding past failures is your human partner's call. |
|
|
||||||
|
- **Problem:** Creating a nested worktree inside an existing one
|
||||||
|
- **Fix:** Always run Step 0 before creating anything
|
||||||
|
|
||||||
|
### Skipping ignore verification
|
||||||
|
|
||||||
|
- **Problem:** Worktree contents get tracked, pollute git status
|
||||||
|
- **Fix:** Always use `git check-ignore` before creating project-local worktree
|
||||||
|
|
||||||
|
### Assuming directory location
|
||||||
|
|
||||||
|
- **Problem:** Creates inconsistency, violates project conventions
|
||||||
|
- **Fix:** Follow priority: explicit instructions > existing project-local directory > default
|
||||||
|
|
||||||
|
### Proceeding with failing tests
|
||||||
|
|
||||||
|
- **Problem:** Can't distinguish new bugs from pre-existing issues
|
||||||
|
- **Fix:** Report failures, get explicit permission to proceed
|
||||||
|
|
||||||
|
## Red Flags
|
||||||
|
|
||||||
|
**Never:**
|
||||||
|
- Create a worktree when Step 0 detects existing isolation
|
||||||
|
- Use `git worktree add` when you have a native worktree tool (e.g., `EnterWorktree`). This is the #1 mistake — if you have it, use it.
|
||||||
|
- Skip Step 1a by jumping straight to Step 1b's git commands
|
||||||
|
- Create worktree without verifying it's ignored (project-local)
|
||||||
|
- Skip baseline test verification
|
||||||
|
- Proceed with failing tests without asking
|
||||||
|
|
||||||
|
**Always:**
|
||||||
|
- Run Step 0 detection first
|
||||||
|
- Prefer native tools over git fallback
|
||||||
|
- Follow directory priority: explicit instructions > existing project-local directory > default
|
||||||
|
- Verify directory is ignored for project-local
|
||||||
|
- Auto-detect and run project setup
|
||||||
|
- Verify clean test baseline
|
||||||
|
|||||||
@@ -1,63 +0,0 @@
|
|||||||
# Gemini CLI Tool Mapping
|
|
||||||
|
|
||||||
Skills speak in actions ("dispatch a subagent", "create a todo", "read a file"). On Gemini CLI these resolve to the tools below.
|
|
||||||
|
|
||||||
| Action skills request | Gemini CLI equivalent |
|
|
||||||
|----------------------|----------------------|
|
|
||||||
| Read a file | `read_file` |
|
|
||||||
| Read multiple files at once | `read_many_files` |
|
|
||||||
| Create a new file | `write_file` |
|
|
||||||
| Edit a file | `replace` |
|
|
||||||
| Run a shell command | `run_shell_command` |
|
|
||||||
| Search file contents | `grep_search` |
|
|
||||||
| Find files by name | `glob` |
|
|
||||||
| List files and subdirectories | `list_directory` |
|
|
||||||
| Fetch a URL | `web_fetch` |
|
|
||||||
| Search the web | `google_web_search` |
|
|
||||||
| Invoke a skill | `activate_skill` |
|
|
||||||
| Dispatch a subagent (`Subagent (general-purpose):` template) | `invoke_agent` with `agent_name: "generalist"` (invocable via `@generalist` chat syntax — see [Subagent support](#subagent-support)) |
|
|
||||||
| Multiple parallel dispatches | Multiple `invoke_agent` calls in the same response |
|
|
||||||
| Task tracking ("create a todo", "mark complete") | `write_todos` (statuses: pending, in_progress, completed, cancelled, blocked) |
|
|
||||||
|
|
||||||
## Instructions file
|
|
||||||
|
|
||||||
When a skill mentions "your instructions file", on Gemini CLI this is **`GEMINI.md`**. Gemini CLI loads `GEMINI.md` hierarchically: global at `~/.gemini/GEMINI.md`, project-level files in workspace directories and their ancestors, and sub-directory `GEMINI.md` files when a tool accesses files in those directories.
|
|
||||||
|
|
||||||
## Personal skills directory
|
|
||||||
|
|
||||||
User-level skills live at **`~/.gemini/skills/`**, with **`~/.agents/skills/`** as a cross-runtime alias (shared with Codex and Copilot CLI). When both directories exist at the same scope, `.agents/skills/` takes precedence. Each skill is a subdirectory containing a `SKILL.md` (with `name` and `description` frontmatter).
|
|
||||||
|
|
||||||
## Subagent support
|
|
||||||
|
|
||||||
Gemini CLI dispatches subagents through the `invoke_agent` tool, which takes `agent_name` and `prompt` parameters. The same dispatch is also surfaced as a chat-syntax shortcut: typing `@generalist <prompt>` is equivalent to calling `invoke_agent` with `agent_name: "generalist"`. Built-in agent names include `generalist`, `cli_help`, `codebase_investigator`, and (with browser tooling enabled) `browser_agent`.
|
|
||||||
|
|
||||||
Skills dispatch with `Subagent (general-purpose):` and either reference a prompt-template file (e.g., `superpowers:subagent-driven-development`'s `./implementer-prompt.md`) or supply an inline prompt. On Gemini CLI:
|
|
||||||
|
|
||||||
| Skill dispatch form | Gemini CLI equivalent |
|
|
||||||
|---------------------|----------------------|
|
|
||||||
| References a `*-prompt.md` template (implementer, task-reviewer, code-reviewer, etc.) | Fill the template, then `invoke_agent` with `agent_name: "generalist"` and the filled prompt |
|
|
||||||
| References `superpowers:requesting-code-review`'s `./code-reviewer.md` | `invoke_agent` with `agent_name: "generalist"` and the filled review template |
|
|
||||||
| Inline prompt (no template referenced) | `invoke_agent` with `agent_name: "generalist"` and your inline prompt |
|
|
||||||
|
|
||||||
### Prompt filling
|
|
||||||
|
|
||||||
Skills provide prompt templates with placeholders like `{WHAT_WAS_IMPLEMENTED}` or `[FULL TEXT of task]`. Fill all placeholders before passing the complete prompt to `invoke_agent`. The prompt template itself contains the agent's role, review criteria, and expected output format — the subagent will follow it.
|
|
||||||
|
|
||||||
### Parallel dispatch
|
|
||||||
|
|
||||||
Gemini CLI supports parallel subagent dispatch. Issue multiple `invoke_agent` calls in the same response (or multiple `@generalist` invocations in one prompt) to run independent subagent work in parallel. Keep dependent tasks sequential, but do not serialize independent subagent tasks just to preserve a simpler history.
|
|
||||||
|
|
||||||
## Additional Gemini CLI tools
|
|
||||||
|
|
||||||
These tools are unique to Gemini CLI:
|
|
||||||
|
|
||||||
| Tool | Purpose |
|
|
||||||
|------|---------|
|
|
||||||
| `save_memory` (legacy) | Persist facts across sessions when `experimental.memoryV2 = false` |
|
|
||||||
| `get_internal_docs` | Look up Gemini CLI's bundled documentation |
|
|
||||||
| `ask_user` | Pose structured questions to the user (text / single-select / multi-select) |
|
|
||||||
| `enter_plan_mode` / `exit_plan_mode` | Switch into and out of read-only plan mode |
|
|
||||||
| `update_topic` | Update the current conversation's topic / strategic-intent metadata |
|
|
||||||
| `complete_task` | Signal that a Gemini subagent has completed and return its result to the parent agent |
|
|
||||||
| `tracker_create_task`, `tracker_update_task`, `tracker_get_task`, `tracker_list_tasks`, `tracker_add_dependency`, `tracker_visualize` | Rich task tracker with dependency and visualization support |
|
|
||||||
| `read_mcp_resource`, `list_mcp_resources` | MCP resource access |
|
|
||||||
@@ -7,6 +7,8 @@ description: Use when about to claim work is complete, fixed, or passing, before
|
|||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
Claiming work is complete without verification is dishonesty, not efficiency.
|
||||||
|
|
||||||
**Core principle:** Evidence before claims, always.
|
**Core principle:** Evidence before claims, always.
|
||||||
|
|
||||||
**Violating the letter of this rule is violating the spirit of this rule.**
|
**Violating the letter of this rule is violating the spirit of this rule.**
|
||||||
@@ -103,6 +105,15 @@ Skip any step = lying, not verifying
|
|||||||
❌ Trust agent report
|
❌ Trust agent report
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Why This Matters
|
||||||
|
|
||||||
|
From 24 failure memories:
|
||||||
|
- your human partner said "I don't believe you" - trust broken
|
||||||
|
- Undefined functions shipped - would crash
|
||||||
|
- Missing requirements shipped - incomplete features
|
||||||
|
- Time wasted on false completion → redirect → rework
|
||||||
|
- Violates: "Honesty is a core value. If you lie, you'll be replaced."
|
||||||
|
|
||||||
## When To Apply
|
## When To Apply
|
||||||
|
|
||||||
**ALWAYS before:**
|
**ALWAYS before:**
|
||||||
@@ -118,3 +129,11 @@ Skip any step = lying, not verifying
|
|||||||
- Paraphrases and synonyms
|
- Paraphrases and synonyms
|
||||||
- Implications of success
|
- Implications of success
|
||||||
- ANY communication suggesting completion/correctness
|
- ANY communication suggesting completion/correctness
|
||||||
|
|
||||||
|
## The Bottom Line
|
||||||
|
|
||||||
|
**No shortcuts for verification.**
|
||||||
|
|
||||||
|
Run the command. Read the output. THEN claim the result.
|
||||||
|
|
||||||
|
This is non-negotiable.
|
||||||
|
|||||||
@@ -135,6 +135,12 @@ Every step must contain the actual content an engineer needs. These are **plan f
|
|||||||
- Steps that describe what to do without showing how (code blocks required for code steps)
|
- Steps that describe what to do without showing how (code blocks required for code steps)
|
||||||
- References to types, functions, or methods not defined in any task
|
- References to types, functions, or methods not defined in any task
|
||||||
|
|
||||||
|
## Remember
|
||||||
|
- Exact file paths always
|
||||||
|
- Complete code in every step — if a step changes code, show the code
|
||||||
|
- Exact commands with expected output
|
||||||
|
- DRY, YAGNI, TDD, frequent commits
|
||||||
|
|
||||||
## Self-Review
|
## Self-Review
|
||||||
|
|
||||||
After writing the complete plan, look at the spec with fresh eyes and check the plan against it. This is a checklist you run yourself — not a subagent dispatch.
|
After writing the complete plan, look at the spec with fresh eyes and check the plan against it. This is a checklist you run yourself — not a subagent dispatch.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ description: Use when creating new skills, editing existing skills, or verifying
|
|||||||
|
|
||||||
**Writing skills IS Test-Driven Development applied to process documentation.**
|
**Writing skills IS Test-Driven Development applied to process documentation.**
|
||||||
|
|
||||||
**Personal skills live in your runtime's skills directory** (`~/.claude/skills/` on Claude Code) — see [codex-tools.md](../using-superpowers/references/codex-tools.md) or [gemini-tools.md](../using-superpowers/references/gemini-tools.md) for the path on those runtimes. Codex, Copilot CLI, and Gemini CLI all also recognize `~/.agents/skills/` as a cross-runtime alias.
|
**Personal skills live in your runtime's skills directory**
|
||||||
|
|
||||||
You write test cases (pressure scenarios with subagents), watch them fail (baseline behavior), write the skill (documentation), watch tests pass (agents comply), and refactor (close loopholes).
|
You write test cases (pressure scenarios with subagents), watch them fail (baseline behavior), write the skill (documentation), watch tests pass (agents comply), and refactor (close loopholes).
|
||||||
|
|
||||||
@@ -677,3 +677,13 @@ How future agents find your skill:
|
|||||||
6. **Loads example** (only when implementing)
|
6. **Loads example** (only when implementing)
|
||||||
|
|
||||||
**Optimize for this flow** - put searchable terms early and often.
|
**Optimize for this flow** - put searchable terms early and often.
|
||||||
|
|
||||||
|
## The Bottom Line
|
||||||
|
|
||||||
|
**Creating skills IS TDD for process documentation.**
|
||||||
|
|
||||||
|
Same Iron Law: No skill without failing test first.
|
||||||
|
Same cycle: RED (baseline) → GREEN (write skill) → REFACTOR (close loopholes).
|
||||||
|
Same benefits: Better quality, fewer surprises, bulletproof results.
|
||||||
|
|
||||||
|
If you follow TDD for code, follow it for skills. It's the same discipline applied to documentation.
|
||||||
|
|||||||
@@ -2,9 +2,8 @@
|
|||||||
# Validate the Antigravity (agy) integration. agy installs the existing plugin
|
# Validate the Antigravity (agy) integration. agy installs the existing plugin
|
||||||
# directly (`agy plugin install <repo-url>`): it loads the bundled skills and
|
# directly (`agy plugin install <repo-url>`): it loads the bundled skills and
|
||||||
# runs the SessionStart hook for bootstrap, so there is no agy-specific scaffold
|
# runs the SessionStart hook for bootstrap, so there is no agy-specific scaffold
|
||||||
# to test. What IS agy-specific is the tool mapping — subagent dispatch via
|
# to test. What IS agy-specific is the tool mapping — agy has no `Skill` tool and
|
||||||
# invoke_subagent (self/research types) and task tracking via a task artifact —
|
# loads skills by reading SKILL.md with view_file — and SKILL.md pointing at it.
|
||||||
# and SKILL.md pointing at it.
|
|
||||||
#
|
#
|
||||||
# Mirrors tests/pi/test-pi-extension.mjs's "tools reference documents
|
# Mirrors tests/pi/test-pi-extension.mjs's "tools reference documents
|
||||||
# harness-specific mappings" check. CI-safe: does not require `agy` installed.
|
# harness-specific mappings" check. CI-safe: does not require `agy` installed.
|
||||||
@@ -23,8 +22,16 @@ echo "test-antigravity-tools: checking Antigravity tool mapping"
|
|||||||
# --- Mapping exists ---------------------------------------------------------
|
# --- Mapping exists ---------------------------------------------------------
|
||||||
[ -f "$MAPPING" ] || fail "tool mapping missing at $MAPPING"
|
[ -f "$MAPPING" ] || fail "tool mapping missing at $MAPPING"
|
||||||
|
|
||||||
|
# --- Skill-load mechanism: view_file on SKILL.md (IsSkillFile), no Skill tool -
|
||||||
|
grep -qiE "view_file" "$MAPPING" \
|
||||||
|
|| fail "mapping does not document view_file as the file/skill-read tool"
|
||||||
|
grep -qiE "SKILL\.md" "$MAPPING" \
|
||||||
|
|| fail "mapping does not document reading SKILL.md as the skill-load path"
|
||||||
|
grep -q "IsSkillFile" "$MAPPING" \
|
||||||
|
|| fail "mapping does not document setting IsSkillFile when loading a skill"
|
||||||
|
|
||||||
# --- Core action→tool mappings are documented -------------------------------
|
# --- Core action→tool mappings are documented -------------------------------
|
||||||
for tool in write_to_file replace_file_content invoke_subagent; do
|
for tool in write_to_file replace_file_content run_command grep_search invoke_subagent; do
|
||||||
grep -q "$tool" "$MAPPING" \
|
grep -q "$tool" "$MAPPING" \
|
||||||
|| fail "mapping does not document the '$tool' tool"
|
|| fail "mapping does not document the '$tool' tool"
|
||||||
done
|
done
|
||||||
@@ -43,4 +50,4 @@ grep -qE 'ArtifactType.*task|task. artifact' "$MAPPING" \
|
|||||||
grep -q "antigravity-tools.md" "$SKILL" \
|
grep -q "antigravity-tools.md" "$SKILL" \
|
||||||
|| fail "SKILL.md Platform Adaptation does not reference antigravity-tools.md"
|
|| fail "SKILL.md Platform Adaptation does not reference antigravity-tools.md"
|
||||||
|
|
||||||
echo "PASS: Antigravity tool mapping valid (subagent dispatch, task artifact, SKILL.md link)"
|
echo "PASS: Antigravity tool mapping valid (view_file skill-load, agy tools, SKILL.md link)"
|
||||||
|
|||||||
@@ -143,27 +143,6 @@ for (const forbiddenText of forbiddenTexts) {
|
|||||||
|
|
||||||
echo "SessionStart hook output tests"
|
echo "SessionStart hook output tests"
|
||||||
|
|
||||||
# Registration shape: the hook must declare shell:"bash" so Claude Code on
|
|
||||||
# Windows dispatches via Git Bash (or fails with an actionable error) instead
|
|
||||||
# of PowerShell/cmd.exe, whose parsers break on the quoted command string
|
|
||||||
# (PowerShell ParserError; cmd.exe quote-stripping on paths with metacharacters).
|
|
||||||
if node -e '
|
|
||||||
const hooks = JSON.parse(require("fs").readFileSync(process.argv[1], "utf8"));
|
|
||||||
const entry = hooks.hooks.SessionStart[0].hooks[0];
|
|
||||||
if (entry.shell !== "bash") {
|
|
||||||
console.error(`SessionStart hook shell is ${JSON.stringify(entry.shell)}, expected "bash"`);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
if (!/run-hook\.cmd" session-start$/.test(entry.command)) {
|
|
||||||
console.error(`unexpected SessionStart command shape: ${entry.command}`);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
' "$REPO_ROOT/hooks/hooks.json"; then
|
|
||||||
pass "hooks.json registers SessionStart with shell:bash dispatch"
|
|
||||||
else
|
|
||||||
fail "hooks.json registers SessionStart with shell:bash dispatch"
|
|
||||||
fi
|
|
||||||
|
|
||||||
claude_home="$(make_home claude-code)"
|
claude_home="$(make_home claude-code)"
|
||||||
assert_command_output \
|
assert_command_output \
|
||||||
"Claude Code emits nested SessionStart additionalContext" \
|
"Claude Code emits nested SessionStart additionalContext" \
|
||||||
|
|||||||
@@ -122,16 +122,7 @@ test('pi tools reference documents pi-specific mappings', async () => {
|
|||||||
assert.equal(existsSync(piToolsPath), true, 'pi-tools.md should exist');
|
assert.equal(existsSync(piToolsPath), true, 'pi-tools.md should exist');
|
||||||
const text = await readFile(piToolsPath, 'utf8');
|
const text = await readFile(piToolsPath, 'utf8');
|
||||||
|
|
||||||
// Assert against the mapping-table rows only. The surrounding prose mentions
|
for (const expected of ['Skill', 'Task', 'TodoWrite', 'read', 'write', 'edit', 'bash']) {
|
||||||
// these same tokens, so matching the whole file would still pass if the table
|
assert.match(text, new RegExp(expected));
|
||||||
// were deleted — the exact regression this test exists to catch.
|
}
|
||||||
const rows = text.split('\n').filter((line) => line.startsWith('|'));
|
|
||||||
assert.ok(
|
|
||||||
rows.some((row) => /subagent/i.test(row)),
|
|
||||||
'mapping table documents subagent dispatch',
|
|
||||||
);
|
|
||||||
assert.ok(
|
|
||||||
rows.some((row) => /todo|task/i.test(row)),
|
|
||||||
'mapping table documents task tracking',
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user