Skip to content

Commit d20420c

Browse files
jwaldripclaude
andcommitted
fix(plugin): add continuation signals after fork subagent invocations
Elaboration was stalling after the discovery phase because the LLM lost track of the workflow after the fork subagent returned. Add explicit "DO NOT STOP HERE" directives after each Skill() fork invocation to prevent the agent from halting mid-elaboration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 672f5e1 commit d20420c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

plugin/skills/elaborate/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,8 @@ provider_config: {JSON of PROVIDERS object}
333333
Skill("elaborate-discover", args: ".ai-dlc/{INTENT_SLUG}/.briefs/elaborate-discover.md")
334334
```
335335

336+
**CRITICAL — DO NOT STOP HERE.** Discovery is only one sub-step of elaboration. After the discovery subagent completes, you MUST immediately proceed to Step 4 below. There are many more phases remaining (Domain Model validation, Workflow Selection, Success Criteria, Decomposition, etc.). Stopping after discovery means the elaboration is incomplete.
337+
336338
### Step 4: Read results
337339

338340
Read `.ai-dlc/${INTENT_SLUG}/.briefs/elaborate-discover-results.md`.
@@ -1075,6 +1077,8 @@ design_provider_type: {DESIGN_TYPE or empty}
10751077
Skill("elaborate-wireframes", args: ".ai-dlc/{INTENT_SLUG}/.briefs/elaborate-wireframes.md")
10761078
```
10771079

1080+
**CRITICAL — DO NOT STOP HERE.** After the wireframes subagent completes, immediately proceed to Step 5.
1081+
10781082
### Step 5: Read results
10791083

10801084
Read `.ai-dlc/${INTENT_SLUG}/.briefs/elaborate-wireframes-results.md`.
@@ -1168,6 +1172,8 @@ plugin_root: {CLAUDE_PLUGIN_ROOT}
11681172
Skill("elaborate-ticket-sync", args: ".ai-dlc/{INTENT_SLUG}/.briefs/elaborate-ticket-sync.md")
11691173
```
11701174

1175+
**CRITICAL — DO NOT STOP HERE.** After the ticket sync subagent completes, immediately proceed to Step 4.
1176+
11711177
### Step 4: Read results
11721178

11731179
Read `.ai-dlc/${INTENT_SLUG}/.briefs/elaborate-ticket-sync-results.md`.

0 commit comments

Comments
 (0)