You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Claude Desktop there is no controlling terminal — the visible phase signal comes from `mark_chapter` (step 2).
29
30
30
31
4.**Read the frozen-state file** from the previous phase:
31
32
`.devflow/state/${branch_slug}/plan.md`
@@ -47,7 +48,7 @@ You are at the test-locking phase of devflow's new-feature pipeline. Your job is
47
48
- If user skips: invoke `devflow:phase-handoff --phase lock-tests --next-phase impl --no-handoff`. Then print:
48
49
49
50
```
50
-
Trivial change — lock-tests gate skipped. Context is already small; you can proceed directly to the next phase without `/clear`. Trigger executing-plans by typing: `Use the superpowers:executing-plans skill to implement the plan task by task` (natural-language skill trigger — superpowers exposes skills via the `Skill` tool, not as `/`-prefixed commands).
51
+
Trivial change — lock-tests gate skipped. Context is already small; you can proceed directly to the next phase without `/clear`. Invoke `/executing-plans` (Claude Code auto-exposes the superpowers skill as a slash command; if the picker doesn't surface it on older installs, use the natural-language trigger `Use the superpowers:executing-plans skill to implement the plan task by task` instead).
51
52
```
52
53
53
54
Then exit.
@@ -154,7 +155,7 @@ Use `AskUserQuestion` with:
154
155
155
156
## Phase 2 — GREEN (delegated)
156
157
157
-
After approval, invoke `devflow:phase-handoff --phase lock-tests --next-phase impl`. The handoff skill writes the frozen-state file, gates on a one-click `AskUserQuestion`, then emits a copy-pasteable resume prompt for the user to paste after `/clear`. After `/clear` + paste, the new session reads the frozen-state file and invokes `superpowers:executing-plans`via natural-language skill trigger (no `/superpowers:*` slash command exists), which drives per-task red/green against the tests already locked in this phase.
158
+
After approval, invoke `devflow:phase-handoff --phase lock-tests --next-phase impl`. The handoff skill writes the frozen-state file, gates on a one-click `AskUserQuestion`, then emits a copy-pasteable resume prompt for the user to paste after `/clear`. After `/clear` + paste, the new session invokes `/executing-plans`(the superpowers skill auto-exposed as a slash command by Claude Code's plugin runtime) which drives per-task red/green against the tests already locked in this phase.
In Claude Desktop there is no controlling terminal (stdout is captured by the harness, `/dev/tty` is unavailable), so the escape would never reach a window manager. The visible phase signal comes from `mark_chapter` (step 5).
87
+
86
88
7.**Resolve the next-phase invocation text.** Map `<next-phase>` to what the user must paste after `/clear`:
Copy file name to clipboardExpand all lines: skills/lock-tests/SKILL.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,12 +49,11 @@ You are at the test-locking phase of devflow's new-feature pipeline. Your job is
49
49
- If user skips: invoke `devflow:phase-handoff --phase lock-tests --next-phase impl --no-handoff`. Then print:
50
50
51
51
```
52
-
Trivial change — lock-tests gate skipped. Context is already small; you can proceed directly to `/superpowers:executing-plans` without `/compact`.
52
+
Trivial change — lock-tests gate skipped. Context is already small; you can proceed directly to the next phase without `/clear`. Invoke `/executing-plans` (Claude Code auto-exposes the superpowers skill as a slash command; if the picker doesn't surface it on older installs, use the natural-language trigger `Use the superpowers:executing-plans skill to implement the plan task by task` instead).
53
53
```
54
54
55
55
Then exit.
56
56
57
-
58
57
7.**Check git status:**
59
58
```bash
60
59
git status --porcelain
@@ -157,7 +156,7 @@ Use `AskUserQuestion` with:
157
156
158
157
## Phase 2 — GREEN (delegated)
159
158
160
-
After approval, invoke `devflow:phase-handoff --phase lock-tests --next-phase impl`. The handoff skill writes the frozen-state file and prompts the user to `/compact`. After compact, the user re-invokes `superpowers:executing-plans` which drives per-task red/green where the tests already exist.
159
+
After approval, invoke `devflow:phase-handoff --phase lock-tests --next-phase impl`. The handoff skill writes the frozen-state file, gates on a one-click `AskUserQuestion`, then emits a copy-pasteable resume prompt for the user to paste after `/clear`. After `/clear` + paste, the new session invokes `/executing-plans`(the superpowers skill auto-exposed as a slash command by Claude Code's plugin runtime) which drives per-task red/green against the tests already locked in this phase.
Each phase ends with `devflow:phase-handoff` (writes a frozen-state file, prompts you to run `/compact`). The next phase reads only the frozen-state file as source of truth.
75
+
Each phase ends with `devflow:phase-handoff` (writes a frozen-state file, gates via one-click `AskUserQuestion`, then emits a copy-pasteable resume prompt for the user to paste after `/clear`). The next phase reads only the frozen-state file and the artefact paths it lists as source of truth.
Copy file name to clipboardExpand all lines: skills/registry.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@
108
108
},
109
109
{
110
110
"name": "phase-handoff",
111
-
"description": "Hand off between phases of the devflow new-feature pipeline — writes a frozen-state file, marks a chapter, and prompts user to /compact.",
111
+
"description": "Hand off between phases of the devflow new-feature pipeline — writes a frozen-state file, marks a chapter, sets terminal title, gates on a one-click AskUserQuestion, then emits a copy-pasteable resume prompt for the user to paste after /clear.",
0 commit comments