Skip to content

Commit 8142968

Browse files
committed
fix: preserve skill-style document-review handoffs
1 parent e0498e0 commit 8142968

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

plugins/compound-engineering/skills/ce-plan/SKILL.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -513,17 +513,17 @@ After writing the plan file, present the options using the platform's blocking q
513513

514514
**Options:**
515515
1. **Open plan in editor** - Open the plan file for review
516-
2. **Run `deepen-plan` skill** - Stress-test weak sections with targeted research when the plan needs more confidence
517-
3. **Review and refine** - Improve the plan through structured document review
516+
2. **Run `/deepen-plan`** - Stress-test weak sections with targeted research when the plan needs more confidence
517+
3. **Run `document-review` skill** - Improve the plan through structured document review
518518
4. **Share to Proof** - Upload the plan for collaborative review and sharing
519-
5. **Start `ce:work` skill** - Begin implementing this plan in the current environment
520-
6. **Start `ce:work` skill in another session** - Begin implementing in a separate agent session when the current platform supports it
519+
5. **Start `/ce:work`** - Begin implementing this plan in the current environment
520+
6. **Start `/ce:work` in another session** - Begin implementing in a separate agent session when the current platform supports it
521521
7. **Create Issue** - Create an issue in the configured tracker
522522

523523
Based on selection:
524524
- **Open plan in editor** → Open `docs/plans/<plan_filename>.md` using the current platform's file-open or editor mechanism (e.g., `open` on macOS, `xdg-open` on Linux, or the IDE's file-open API)
525-
- **`deepen-plan` skill** → Call the `deepen-plan` skill with the plan path
526-
- **Review and refine** → Load the `document-review` skill
525+
- **`/deepen-plan`** → Call `/deepen-plan` with the plan path
526+
- **`document-review` skill** → Load the `document-review` skill with the plan path
527527
- **Share to Proof** → Upload the plan:
528528
```bash
529529
CONTENT=$(cat docs/plans/<plan_filename>.md)
@@ -534,12 +534,12 @@ Based on selection:
534534
PROOF_URL=$(echo "$RESPONSE" | jq -r '.tokenUrl')
535535
```
536536
Display `View & collaborate in Proof: <PROOF_URL>` if successful, then return to the options
537-
- **`ce:work` skill** → Call the `ce:work` skill with the plan path
538-
- **`ce:work` skill in another session** → If the current platform supports launching a separate agent session, start the `ce:work` skill with the plan path there. Otherwise, explain the limitation briefly and offer to run the `ce:work` skill in the current session instead.
537+
- **`/ce:work`** → Call `/ce:work` with the plan path
538+
- **`/ce:work` in another session** → If the current platform supports launching a separate agent session, start `/ce:work` with the plan path there. Otherwise, explain the limitation briefly and offer to run `/ce:work` in the current session instead.
539539
- **Create Issue** → Follow the Issue Creation section below
540540
- **Other** → Accept free text for revisions and loop back to options
541541

542-
If running with ultrathink enabled, or the platform's reasoning/effort level is set to max or extra-high, automatically run the `deepen-plan` skill only when the plan is `Standard` or `Deep`, high-risk, or still shows meaningful confidence gaps in decisions, sequencing, system-wide impact, risks, or verification.
542+
If running with ultrathink enabled, or the platform's reasoning/effort level is set to max or extra-high, automatically run `/deepen-plan` only when the plan is `Standard` or `Deep`, high-risk, or still shows meaningful confidence gaps in decisions, sequencing, system-wide impact, risks, or verification.
543543

544544
## Issue Creation
545545

@@ -564,6 +564,6 @@ When the user selects "Create Issue", detect their project tracker from `CLAUDE.
564564

565565
After issue creation:
566566
- Display the issue URL
567-
- Ask whether to proceed to the `ce:work` skill
567+
- Ask whether to proceed to `/ce:work`
568568

569569
NEVER CODE! Research, decide, and write the plan.

plugins/compound-engineering/skills/deepen-plan/SKILL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use this skill when the plan already exists and the question is not "Is this doc
1717
This skill does **not** turn plans into implementation scripts. It identifies weak sections, runs targeted research only for those sections, and strengthens the plan in place.
1818

1919
`document-review` and `deepen-plan` are different:
20-
- Use `document-review` when the document needs clarity, simplification, completeness, or scope control
20+
- Use the `document-review` skill when the document needs clarity, simplification, completeness, or scope control
2121
- Use `deepen-plan` when the document is structurally sound but still needs stronger rationale, sequencing, risk treatment, or system-wide thinking
2222

2323
## Interaction Method
@@ -82,7 +82,7 @@ Use this default:
8282

8383
If the plan already appears sufficiently grounded:
8484
- Say so briefly
85-
- Recommend moving to `ce:work` or `document-review`
85+
- Recommend moving to `/ce:work` or the `document-review` skill
8686
- If the user explicitly asked to deepen anyway, continue with a light pass and deepen at most 1-2 sections
8787

8888
### Phase 1: Parse the Current `ce:plan` Structure
@@ -304,18 +304,18 @@ If substantive changes were made, present next steps using the platform's blocki
304304

305305
**Options:**
306306
1. **View diff** - Show what changed
307-
2. **Review and refine** - Run the `document-review` skill on the updated plan
307+
2. **Run `document-review` skill** - Improve the updated plan through structured document review
308308
3. **Start `ce:work` skill** - Begin implementing the plan
309309
4. **Deepen specific sections further** - Run another targeted deepening pass on named sections
310310

311311
Based on selection:
312312
- **View diff** -> Show the important additions and changed sections
313-
- **Review and refine** -> Load the `document-review` skill with the plan path
313+
- **`document-review` skill** -> Load the `document-review` skill with the plan path
314314
- **Start `ce:work` skill** -> Call the `ce:work` skill with the plan path
315315
- **Deepen specific sections further** -> Ask which sections still feel weak and run another targeted pass only for those sections
316316

317317
If no substantive changes were warranted:
318318
- Say that the plan already appears sufficiently grounded
319-
- Offer `document-review` or `ce:work` as the next step instead
319+
- Offer the `document-review` skill or `/ce:work` as the next step instead
320320

321321
NEVER CODE! Research, challenge, and strengthen the plan.

0 commit comments

Comments
 (0)