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
fix(ai-workflow): Stop plan-phases from auto-implementing and fix implement-phases plan reading
- Add explicit Instructions and Important sections to workflow-plan-phases to stop after planning
- Add plan-only enforcement to plan-phases SKILL.md
- Fix workflow-implement-phases to read plan file argument and auto-discover plans in docs/plans/
- Update all command references from /plan-phases to /workflow-plan-phases format in README
- Bump ai-workflow to v1.0.2 and marketplace to v1.6.2
Copy file name to clipboardExpand all lines: plugins/ai-workflow/skills/implement-phases/SKILL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: implement-phases
3
-
description: "Use when implementing phases from a plan document, executing phased implementations, orchestrating sub-agents for phase work, or when /implement-phases command is invoked. Provides dependency analysis and parallel/sequential execution strategies."
3
+
description: "Use when implementing phases from a plan document, executing phased implementations, orchestrating sub-agents for phase work, or when /workflow-implement-phases command is invoked. Provides dependency analysis and parallel/sequential execution strategies."
Copy file name to clipboardExpand all lines: plugins/ai-workflow/skills/plan-phases/SKILL.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: plan-phases
3
-
description: "Use when creating implementation plans, phase planning documents, breaking features into phases, or when /plan-phases command is invoked. Provides methodology for context-efficient phase sizing and dependency analysis."
3
+
description: "Use when creating implementation plans, phase planning documents, breaking features into phases, or when /workflow-plan-phases command is invoked. Provides methodology for context-efficient phase sizing and dependency analysis."
4
4
---
5
5
6
6
# Phase Planning Skill
@@ -410,3 +410,22 @@ Before delivering plan:
410
410
-[ ] Dependencies are explicit and acyclic
411
411
-[ ] Specifications are detailed enough to implement without guessing
412
412
-[ ] File saved to docs/plans/{feature-name}.md
413
+
414
+
---
415
+
416
+
## IMPORTANT: Planning Only — Do Not Implement
417
+
418
+
**This skill is for planning only. After creating the plan, STOP.**
419
+
420
+
Do NOT:
421
+
- Start implementing any phases
422
+
- Write any code
423
+
- Create any files other than the plan document
424
+
- Begin execution automatically
425
+
426
+
After the plan is complete:
427
+
1. Present the plan document to the user
428
+
2. Ask if they want to make any revisions
429
+
3. Inform them to use `/workflow-implement-phases` or the `implement-phases` skill when ready to execute
430
+
431
+
The user decides when to proceed with implementation.
0 commit comments