@codemcp/workflows-core 5.2.1 → 5.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,18 +27,20 @@ states:
27
27
  constitution:
28
28
  description: 'Establish constitutional framework and project governance'
29
29
  default_instructions: |
30
- You are establishing the constitutional framework for this new project. This phase sets the foundational principles that will guide all development decisions.
30
+ **STEP 1: Create Project Constitution**
31
+ Use the template provided to create a `constitution.md` file in the project root.
31
32
 
32
- **Your tasks:**
33
- 1. **Create Project Constitution**: Use the template provided to create a `constitution.md` file
34
- 2. **Customize Principles**: Adapt the principles to your specific project needs
35
- 3. **Set Quality Gates**: Define what constitutes acceptable quality and when to reject solutions
36
- 4. **Document Governance**: Establish how these principles will be enforced
33
+ **STEP 2: Customize Principles**
34
+ Adapt the constitutional principles to your specific project needs.
37
35
 
38
- Create a `constitution.md` file in the project root with project-specific governance principles. This will be referenced in all subsequent phases.
39
- additional_instructions: |
40
- **Constitutional Framework Template:**
36
+ **STEP 3: Set Quality Gates**
37
+ Define what constitutes acceptable quality and when to reject solutions.
38
+
39
+ **STEP 4: Document Governance**
40
+ Establish how these principles will be enforced throughout development.
41
41
 
42
+ This constitutional framework will be referenced in all subsequent phases and serves as the source of truth for development decisions.
43
+ additional_instructions: |
42
44
  Use this template to create your `constitution.md` file:
43
45
 
44
46
  ```markdown
@@ -97,45 +99,43 @@ states:
97
99
  specify:
98
100
  description: 'Create comprehensive feature specification'
99
101
  default_instructions: |
100
- You are creating the feature specification that will be the source of truth for all development.
101
-
102
- **Specification Process:**
103
-
104
- 1. **Parse User Requirements**: Extract key concepts from the user's description
105
- - Identify: actors, actions, data, constraints
106
- - Focus on WHAT users need and WHY, not HOW to implement
107
-
108
- 2. **Interactive Requirements Gathering**: Ask clarifying questions about:
109
- - **Target Users**: Who will use this system? What are their technical skills?
110
- - **Scale & Performance**: How many users? What performance expectations?
111
- - **Integration**: Does this need to integrate with existing systems?
112
- - **Constraints**: Any specific requirements, compliance needs, or limitations?
113
- - **Success Metrics**: How will you measure if this is successful?
114
-
115
- 3. **Handle Ambiguities Systematically**:
116
- - Make informed guesses based on context and industry standards
117
- - Only use [NEEDS CLARIFICATION: specific question] for critical decisions that:
118
- - Significantly impact feature scope or user experience
119
- - Have multiple reasonable interpretations with different implications
120
- - Lack any reasonable default
121
- - **LIMIT: Maximum 3 [NEEDS CLARIFICATION] markers total**
122
- - Prioritize: scope > security/privacy > user experience > technical details
123
-
124
- 4. **Quality Validation**:
125
- - No implementation details (languages, frameworks, APIs)
126
- - Written for non-technical stakeholders
127
- - All requirements are testable
128
- - Success criteria are measurable and technology-agnostic
129
-
130
- 5. **Handle Clarifications** (if any [NEEDS CLARIFICATION] markers exist):
131
- - Present options to user in structured format
132
- - Wait for user responses
133
- - Update specification with chosen answers
102
+ Create the feature specification that will be the source of truth for all development.
103
+
104
+ **STEP 1: Parse User Requirements**
105
+ Extract key concepts from the user's description:
106
+ - Identify: actors, actions, data, constraints
107
+ - Focus on WHAT users need and WHY, not HOW to implement
108
+
109
+ **STEP 2: Interactive Requirements Gathering**
110
+ Ask clarifying questions about:
111
+ - Target Users: Who will use this system? What are their technical skills?
112
+ - Scale & Performance: How many users? What performance expectations?
113
+ - Integration: Does this need to integrate with existing systems?
114
+ - Constraints: Any specific requirements, compliance needs, or limitations?
115
+ - Success Metrics: How will you measure if this is successful?
116
+
117
+ **STEP 3: Handle Ambiguities Systematically**
118
+ - Make informed guesses based on context and industry standards
119
+ - Use `[NEEDS CLARIFICATION: specific question]` ONLY for critical decisions that:
120
+ - Significantly impact feature scope or user experience
121
+ - Have multiple reasonable interpretations with different implications
122
+ - Lack any reasonable default
123
+ - **LIMIT: Maximum 3 clarification markers total**
124
+ - Prioritize: scope > security/privacy > user experience > technical details
125
+
126
+ **STEP 4: Validate Quality**
127
+ - No implementation details (languages, frameworks, APIs)
128
+ - Written for non-technical stakeholders
129
+ - All requirements are testable
130
+ - Success criteria are measurable and technology-agnostic
131
+
132
+ **STEP 5: Handle Clarifications** (if any exist)
133
+ - Present options to user in structured format
134
+ - Wait for user responses
135
+ - Update specification with chosen answers
134
136
 
135
137
  Create `$VIBE_DIR/specs/$BRANCH_NAME/spec.md` using the template provided.
136
138
  additional_instructions: |
137
- **Feature Specification Template:**
138
-
139
139
  Use this template to create your `spec.md` file:
140
140
 
141
141
  ```markdown
@@ -232,46 +232,45 @@ states:
232
232
  plan:
233
233
  description: 'Generate implementation plan with constitutional compliance'
234
234
  default_instructions: |
235
- You are creating the implementation plan with constitutional compliance gates.
236
-
237
- **Planning Process:**
238
-
239
- 1. **Load Context**:
240
- - Read the feature specification (`$VIBE_DIR/specs/$BRANCH_NAME/spec.md`)
241
- - Read the project constitution (`constitution.md`)
242
- - Understand the technical requirements
243
-
244
- 2. **Interactive Technology Selection**: Ask the user about their preferences:
245
- - **Technology Stack**: What programming languages/frameworks do you prefer?
246
- - **Architecture Style**: Monolith, microservices, serverless, or hybrid?
247
- - **Database**: What type of data storage do you need? (SQL, NoSQL, files)
248
- - **Deployment**: Where will this run? (cloud, on-premise, local)
249
- - **Experience Level**: What's your experience with different technologies?
250
- - **Constraints**: Any technology restrictions or requirements?
251
-
252
- 3. **Technical Context Analysis**:
253
- - Identify technology stack and architecture decisions based on user input
254
- - Map dependencies and integration points
255
- - Mark unknowns as "NEEDS CLARIFICATION" for research phase
256
-
257
- 4. **Constitutional Compliance Check**:
258
- - Evaluate planned approach against each constitutional article
259
- - Identify any violations and justify or resolve them
260
- - Document compliance decisions
261
-
262
- 5. **Phase 0 - Research & Decisions**:
263
- - For each unknown in Technical Context research task
264
- - For each technology choice best practices task
265
- - Generate `$VIBE_DIR/specs/$BRANCH_NAME/technology-research.md` with all decisions and rationale
266
-
267
- 6. **Phase 1 - High-Level Design**:
268
- - Document high-level architecture and component overview
269
- - Identify major system boundaries and integration points
270
- - Document technology stack decisions and rationale
271
-
272
- 7. **Re-evaluate Constitutional Compliance**:
273
- - Verify design decisions align with constitutional principles
274
- - Document any adjustments needed
235
+ Create the implementation plan with constitutional compliance gates.
236
+
237
+ **STEP 1: Load Context**
238
+ - Read the feature specification: `$VIBE_DIR/specs/$BRANCH_NAME/spec.md`
239
+ - Read the project constitution: `constitution.md`
240
+ - Understand the technical requirements
241
+
242
+ **STEP 2: Interactive Technology Selection**
243
+ Ask the user about their preferences:
244
+ - Technology Stack: What programming languages/frameworks do you prefer?
245
+ - Architecture Style: Monolith, microservices, serverless, or hybrid?
246
+ - Database: What type of data storage do you need? (SQL, NoSQL, files)
247
+ - Deployment: Where will this run? (cloud, on-premise, local)
248
+ - Experience Level: What's your experience with different technologies?
249
+ - Constraints: Any technology restrictions or requirements?
250
+
251
+ **STEP 3: Analyze Technical Context**
252
+ - Identify technology stack and architecture decisions based on user input
253
+ - Map dependencies and integration points
254
+ - Mark unknowns as "NEEDS CLARIFICATION" for research phase
255
+
256
+ **STEP 4: Check Constitutional Compliance**
257
+ - Evaluate planned approach against each constitutional article
258
+ - Identify any violations and justify or resolve them
259
+ - Document compliance decisions
260
+
261
+ **STEP 5: Generate Research & Decisions**
262
+ - For each unknown in Technical Context → research task
263
+ - For each technology choice best practices task
264
+ - Generate `$VIBE_DIR/specs/$BRANCH_NAME/technology-research.md` with all decisions and rationale
265
+
266
+ **STEP 6: Document High-Level Design**
267
+ - Document high-level architecture and component overview
268
+ - Identify major system boundaries and integration points
269
+ - Document technology stack decisions and rationale
270
+
271
+ **STEP 7: Re-evaluate Constitutional Compliance**
272
+ - Verify design decisions align with constitutional principles
273
+ - Document any adjustments needed
275
274
 
276
275
  Create `$VIBE_DIR/specs/$BRANCH_NAME/plan.md` with the complete implementation strategy, including technology decisions, architecture, and development phases.
277
276
 
@@ -290,59 +289,58 @@ states:
290
289
  tasks:
291
290
  description: 'Generate actionable, dependency-ordered tasks organized by user stories'
292
291
  default_instructions: |
293
- You are generating actionable tasks organized by user stories for independent implementation.
292
+ Generate actionable tasks organized by user stories for independent implementation.
294
293
 
295
- **Task Generation Process:**
294
+ **STEP 1: Load Design Documents**
295
+ - Required: `$VIBE_DIR/specs/$BRANCH_NAME/plan.md` (tech stack, libraries, structure), `$VIBE_DIR/specs/$BRANCH_NAME/spec.md` (user stories with priorities)
296
+ - Optional: `$VIBE_DIR/specs/$BRANCH_NAME/technology-research.md`
296
297
 
297
- 1. **Load Design Documents**:
298
- - **Required**: `$VIBE_DIR/specs/$BRANCH_NAME/plan.md` (tech stack, libraries, structure), `$VIBE_DIR/specs/$BRANCH_NAME/spec.md` (user stories with priorities)
299
- - **Optional**: `$VIBE_DIR/specs/$BRANCH_NAME/technology-research.md`
298
+ **STEP 2: Extract User Stories**
299
+ Load user stories with priorities (P1, P2, P3...)
300
300
 
301
- 2. **Extract User Stories**: Load user stories with priorities (P1, P2, P3...)
301
+ **STEP 3: Generate Tasks Organized by User Story**
302
+ - Setup Phase: Shared infrastructure needed by all stories
303
+ - Foundational Phase: Prerequisites that must complete before ANY user story
304
+ - User Story Phases (P1, P2, P3...): One phase per story in priority order
305
+ - Group all tasks needed to complete JUST that story
306
+ - Include models, services, endpoints, UI components specific to that story
307
+ - Mark parallelizable tasks with `[P]`
308
+ - Each story should be independently testable
302
309
 
303
- 3. **Generate Tasks Organized by User Story**:
304
- - **Setup Phase**: Shared infrastructure needed by all stories
305
- - **Foundational Phase**: Prerequisites that must complete before ANY user story
306
- - **User Story Phases** (P1, P2, P3...): One phase per story in priority order
307
- - Group all tasks needed to complete JUST that story
308
- - Include models, services, endpoints, UI components specific to that story
309
- - Mark parallelizable tasks with [P]
310
- - Each story should be independently testable
310
+ **STEP 4: Apply Task Rules**
311
+ - Different files = mark `[P]` for parallel execution
312
+ - Same file = sequential (no `[P]`)
313
+ - Number tasks sequentially (T001, T002...)
314
+ - Each task specific enough for LLM to complete without additional context
311
315
 
312
- 4. **Task Rules**:
313
- - Different files = mark [P] for parallel execution
314
- - Same file = sequential (no [P])
315
- - Number tasks sequentially (T001, T002...)
316
- - Each task specific enough for LLM to complete without additional context
316
+ **STEP 5: Generate Dependency Graph**
317
+ Show user story completion order and parallel opportunities
317
318
 
318
- 5. **Generate Dependency Graph**: Show user story completion order and parallel opportunities
319
-
320
- 6. **Implementation Strategy**: MVP-first approach (typically just User Story 1)
319
+ **STEP 6: Document Implementation Strategy**
320
+ MVP-first approach (typically just User Story 1)
321
321
 
322
322
  additional_instructions: |
323
- **Document Creation Instructions:**
324
-
325
323
  Create these documents in the following order:
326
324
 
327
- **1. Data Model (`$VIBE_DIR/specs/$BRANCH_NAME/data-model.md`)**:
325
+ **1. Data Model** (`$VIBE_DIR/specs/$BRANCH_NAME/data-model.md`)
328
326
  - Extract entities from the specification
329
327
  - Define relationships between entities
330
328
  - Include validation rules from requirements
331
329
  - Document state transitions if applicable
332
330
 
333
- **2. API Contracts (`$VIBE_DIR/specs/$BRANCH_NAME/contracts/`)**:
331
+ **2. API Contracts** (`$VIBE_DIR/specs/$BRANCH_NAME/contracts/`)
334
332
  - Generate API contracts from functional requirements
335
333
  - Create OpenAPI/GraphQL schemas based on chosen technology stack
336
334
  - Ensure contracts align with data models
337
335
  - Include error handling and validation
338
336
 
339
- **3. Development Setup (`$VIBE_DIR/specs/$BRANCH_NAME/quickstart.md`)**:
337
+ **3. Development Setup** (`$VIBE_DIR/specs/$BRANCH_NAME/quickstart.md`)
340
338
  - Project setup instructions based on chosen technology stack
341
339
  - Development environment configuration
342
340
  - Build and run instructions
343
341
  - Testing setup and commands
344
342
 
345
- **4. Task Breakdown (`$VIBE_DIR/specs/$BRANCH_NAME/tasks.md`)**:
343
+ **4. Task Breakdown** (`$VIBE_DIR/specs/$BRANCH_NAME/tasks.md`)
346
344
  Use this structure for the tasks file:
347
345
 
348
346
  ```markdown
@@ -384,18 +382,28 @@ states:
384
382
  implement:
385
383
  description: 'Execute implementation following the task breakdown'
386
384
  default_instructions: |
387
- You are implementing the solution by executing the tasks in the order defined in `$VIBE_DIR/specs/$BRANCH_NAME/tasks.md`.
388
-
389
- **Implementation Guidelines:**
390
- 1. **Follow Task Order**: Execute tasks in the sequence defined, respecting dependencies
391
- 2. **Constitutional Compliance**: Ensure all implementation decisions align with the project constitution
392
- 3. **User Story Focus**: Complete one user story at a time for incremental delivery
393
- 4. **Quality Gates**: Each user story must meet the success criteria from the specification
394
- 5. **Testing**: Validate each user story independently before moving to the next
395
- 6. **Documentation**: Update documentation as you implement
396
-
397
- **Progress Tracking**:
398
- - Mark completed tasks with [x] in `$VIBE_DIR/specs/$BRANCH_NAME/tasks.md`
385
+ Execute the implementation by following the tasks in the order defined in `$VIBE_DIR/specs/$BRANCH_NAME/tasks.md`.
386
+
387
+ **STEP 1: Follow Task Order**
388
+ Execute tasks in the sequence defined, respecting dependencies
389
+
390
+ **STEP 2: Ensure Constitutional Compliance**
391
+ Verify all implementation decisions align with the project constitution
392
+
393
+ **STEP 3: Complete User Stories Incrementally**
394
+ Focus on one user story at a time for incremental delivery
395
+
396
+ **STEP 4: Meet Quality Gates**
397
+ Each user story must meet the success criteria from the specification
398
+
399
+ **STEP 5: Validate Each User Story**
400
+ Test each user story independently before moving to the next
401
+
402
+ **STEP 6: Keep Documentation Current**
403
+ Update documentation as you implement
404
+
405
+ **Progress Tracking:**
406
+ - Mark completed tasks with `[x]` in `$VIBE_DIR/specs/$BRANCH_NAME/tasks.md`
399
407
  - Document any deviations or decisions in the plan file
400
408
  - Update the specification if requirements evolve during implementation
401
409
 
@@ -416,26 +424,25 @@ states:
416
424
  document:
417
425
  description: 'Create comprehensive project documentation'
418
426
  default_instructions: |
419
- You are creating the final project documentation that serves users and maintainers.
420
-
421
- **Documentation Tasks:**
422
- 1. **User Documentation**:
423
- - Installation and setup guide
424
- - User manual with examples
425
- - API documentation (if applicable)
426
- - Troubleshooting guide
427
-
428
- 2. **Developer Documentation**:
429
- - Architecture overview
430
- - Development setup
431
- - Contributing guidelines
432
- - Code organization
433
-
434
- 3. **Project Documentation**:
435
- - README with project overview
436
- - Changelog
437
- - License information
438
- - Deployment guide
427
+ Create the final project documentation that serves users and maintainers.
428
+
429
+ **STEP 1: Create User Documentation**
430
+ - Installation and setup guide
431
+ - User manual with examples
432
+ - API documentation (if applicable)
433
+ - Troubleshooting guide
434
+
435
+ **STEP 2: Create Developer Documentation**
436
+ - Architecture overview
437
+ - Development setup
438
+ - Contributing guidelines
439
+ - Code organization
440
+
441
+ **STEP 3: Create Project Documentation**
442
+ - README with project overview
443
+ - Changelog
444
+ - License information
445
+ - Deployment guide
439
446
 
440
447
  **Quality Standards** (from constitution):
441
448
  - Documentation serves users, not developers
@@ -459,6 +466,5 @@ global_transitions:
459
466
  - trigger: 'abandon_project'
460
467
  to: 'constitution'
461
468
  instructions: >
462
- Project abandoned. If you want to restart, you'll begin again with establishing
463
- the constitutional framework.
469
+ If you want to restart the project, you'll begin again with establishing the constitutional framework.
464
470
  transition_reason: 'Project abandoned, restart from beginning'
@@ -24,17 +24,15 @@ states:
24
24
  ideate:
25
25
  description: 'Brainstorm presentation concept and define strategic foundation'
26
26
  default_instructions: |
27
- You are in the ideation phase for presentation development. This is where you define the foundation of your presentation.
27
+ **Clarify the presentation foundation** with the user by gathering essential information:
28
28
 
29
- Focus on understanding the core purpose and audience:
30
29
  - Brainstorm presentation topic and key messages
31
30
  - Define target audience and their knowledge level
32
31
  - Set presentation goals and success criteria
33
32
  - Research topic and gather reference materials
34
33
  - Define scope, time constraints, and context
35
34
 
36
- Work with the user to clarify these fundamental aspects before moving to structure.
37
- Update the plan file with ideation progress and key decisions.
35
+ **Update** the plan file with ideation progress and key decisions before proceeding to structure.
38
36
 
39
37
  transitions:
40
38
  - trigger: ideation_complete
@@ -44,7 +42,8 @@ states:
44
42
  - trigger: abandon_presentation
45
43
  to: ideate
46
44
  instructions: |
47
- Presentation development abandoned. Clean up any ideation work and prepare for new presentation topics.
45
+ **Abandon ideation work** - Clean up any ideation work and prepare for new presentation topics.
46
+
48
47
  The plan file will remain for future reference if needed.
49
48
  additional_instructions: 'Presentation development abandoned. Prepare for new presentation topics.'
50
49
  transition_reason: 'User decided to abandon current presentation development'
@@ -52,9 +51,8 @@ states:
52
51
  structure:
53
52
  description: 'Organize content flow and logical progression'
54
53
  default_instructions: |
55
- Working on presentation structure phase. Focus on organizing your content logically and effectively.
54
+ **Create a detailed presentation structure** by organizing your content logically and effectively:
56
55
 
57
- Key activities for this phase:
58
56
  - Create detailed presentation outline with main sections
59
57
  - Define slide sequence and narrative flow
60
58
  - Plan smooth transitions between topics
@@ -62,14 +60,13 @@ states:
62
60
  - Estimate timing for each section and overall presentation
63
61
  - Consider audience engagement points and interaction opportunities
64
62
 
65
- Work with the user to create a solid structural foundation before moving to content drafting.
66
- Update the plan file with structural decisions and progress.
63
+ **Update** the plan file with structural decisions and progress before moving to content drafting.
67
64
 
68
65
  transitions:
69
66
  - trigger: structure_complete
70
67
  to: draft
71
68
  additional_instructions: |
72
- Structure complete! You have a well-organized outline and clear content flow.
69
+ **Structure phase complete!** You have a well-organized outline and clear content flow.
73
70
 
74
71
  Update the plan file with drafting tasks and mark completed structural work.
75
72
  transition_reason: 'Content structure and flow established, ready for content creation'
@@ -82,7 +79,8 @@ states:
82
79
  - trigger: abandon_presentation
83
80
  to: ideate
84
81
  instructions: |
85
- Presentation development abandoned during structuring. Clean up structural work and return to ideation.
82
+ **Abandon structural work** - Clean up structural work and return to ideation.
83
+
86
84
  The plan file and any completed work will remain for future reference.
87
85
  additional_instructions: 'Presentation abandoned during structure phase. Clean up and prepare for new topics.'
88
86
  transition_reason: 'User decided to abandon presentation during structure phase'
@@ -90,9 +88,8 @@ states:
90
88
  draft:
91
89
  description: 'Create content, speaker notes, and visual planning'
92
90
  default_instructions: |
93
- Working on content drafting phase. This is where you create the actual presentation content and materials.
91
+ **Create content and speaker notes** to establish the presentation material and delivery guide:
94
92
 
95
- Key activities for this phase:
96
93
  - Write clear, engaging content for each slide/section
97
94
  - Create comprehensive speaker notes as a main deliverable
98
95
  - Make strategic decisions about visual vs. spoken content split
@@ -101,14 +98,13 @@ states:
101
98
  - Create placeholders and specifications for visual content
102
99
  - Ensure content aligns with timing and audience needs
103
100
 
104
- Focus on creating high-quality content that serves both the slides and the speaker.
105
- Update the plan file with drafting progress and content decisions.
101
+ **Update** the plan file with drafting progress and content decisions before moving to styling.
106
102
 
107
103
  transitions:
108
104
  - trigger: draft_complete
109
105
  to: style
110
106
  additional_instructions: |
111
- Draft complete! You have solid content, speaker notes, and visual planning.
107
+ **Draft phase complete!** You have solid content, speaker notes, and visual planning.
112
108
 
113
109
  Update the plan file with styling tasks and mark completed drafting work.
114
110
  transition_reason: 'Content and speaker notes complete, ready for visual design and styling'
@@ -121,7 +117,8 @@ states:
121
117
  - trigger: abandon_presentation
122
118
  to: ideate
123
119
  instructions: |
124
- Presentation development abandoned during drafting. Clean up content work and return to ideation.
120
+ **Abandon drafting work** - Clean up content work and return to ideation.
121
+
125
122
  The plan file and any completed work will remain for future reference.
126
123
  additional_instructions: 'Presentation abandoned during draft phase. Clean up and prepare for new topics.'
127
124
  transition_reason: 'User decided to abandon presentation during draft phase'
@@ -129,9 +126,8 @@ states:
129
126
  style:
130
127
  description: 'Apply design, create visuals, and enhance presentation aesthetics'
131
128
  default_instructions: |
132
- Working on styling and visual design phase. This is where you bring visual appeal and consistency to your presentation.
129
+ **Apply visual design and create presentation aesthetics** to bring professional appeal and consistency:
133
130
 
134
- Key activities for this phase:
135
131
  - Evaluate presentation requirements and choose appropriate tool/platform
136
132
  - Select themes, templates, and establish visual design approach
137
133
  - Source existing visuals, images, and graphic elements
@@ -141,14 +137,13 @@ states:
141
137
  - Ensure visual elements effectively support and enhance the content
142
138
  - Test visual consistency across all slides/sections
143
139
 
144
- Focus on creating a visually appealing and professional presentation.
145
- Update the plan file with styling progress and design decisions.
140
+ **Update** the plan file with styling progress and design decisions before moving to review.
146
141
 
147
142
  transitions:
148
143
  - trigger: style_complete
149
144
  to: review
150
145
  additional_instructions: |
151
- Styling complete! You have a visually appealing presentation with consistent design.
146
+ **Style phase complete!** You have a visually appealing presentation with consistent design.
152
147
 
153
148
  Update the plan file with review tasks and mark completed styling work.
154
149
  transition_reason: 'Visual design and styling complete, ready for content and delivery review'
@@ -161,7 +156,8 @@ states:
161
156
  - trigger: abandon_presentation
162
157
  to: ideate
163
158
  instructions: |
164
- Presentation development abandoned during styling. Clean up design work and return to ideation.
159
+ **Abandon styling work** - Clean up design work and return to ideation.
160
+
165
161
  The plan file and any completed work will remain for future reference.
166
162
  additional_instructions: 'Presentation abandoned during style phase. Clean up and prepare for new topics.'
167
163
  transition_reason: 'User decided to abandon presentation during style phase'
@@ -169,9 +165,8 @@ states:
169
165
  review:
170
166
  description: 'Validate content quality and presentation effectiveness'
171
167
  default_instructions: |
172
- Working on review and validation phase. This is where you ensure your presentation is ready for delivery.
168
+ **Validate presentation quality** by reviewing content, timing, visuals, and delivery readiness:
173
169
 
174
- Key activities for this phase:
175
170
  - Review content flow, narrative coherence, and logical progression
176
171
  - Test presentation timing and pacing for your allocated time
177
172
  - Verify visual quality, consistency, and professional appearance
@@ -181,14 +176,13 @@ states:
181
176
  - Ensure all interactive elements and visuals work correctly
182
177
  - Refine speaker notes and delivery preparation
183
178
 
184
- Focus on validating that your presentation achieves its goals effectively.
185
- Update the plan file with review progress and any refinements made.
179
+ **Update** the plan file with review progress and refinements before moving to delivery preparation.
186
180
 
187
181
  transitions:
188
182
  - trigger: review_complete
189
183
  to: deliver
190
184
  additional_instructions: |
191
- Review complete! Your presentation has been validated and refined for delivery.
185
+ **Review phase complete!** Your presentation has been validated and refined for delivery.
192
186
 
193
187
  Update the plan file with delivery preparation tasks and mark completed review work.
194
188
  transition_reason: 'Presentation reviewed and validated, ready for final delivery preparation'
@@ -206,7 +200,8 @@ states:
206
200
  - trigger: abandon_presentation
207
201
  to: ideate
208
202
  instructions: |
209
- Presentation development abandoned during review. Clean up review work and return to ideation.
203
+ **Abandon review work** - Clean up review work and return to ideation.
204
+
210
205
  The plan file and any completed work will remain for future reference.
211
206
  additional_instructions: 'Presentation abandoned during review phase. Clean up and prepare for new topics.'
212
207
  transition_reason: 'User decided to abandon presentation during review phase'
@@ -214,9 +209,8 @@ states:
214
209
  deliver:
215
210
  description: 'Prepare final presentation for delivery'
216
211
  default_instructions: |
217
- Working on delivery preparation phase. This is the final phase to ensure your presentation is ready for successful delivery.
212
+ **Prepare final delivery** by exporting formats, testing setup, and ensuring flawless execution:
218
213
 
219
- Key activities for this phase:
220
214
  - Export presentation to all required formats (native, PDF, backup formats)
221
215
  - Finalize speaker setup, notes, and delivery materials
222
216
  - Configure and test presentation environment and technical setup
@@ -226,14 +220,13 @@ states:
226
220
  - Ensure all backup plans and alternatives are ready
227
221
  - Final check of timing, flow, and delivery readiness
228
222
 
229
- Focus on ensuring flawless delivery execution and professional presentation.
230
- Update the plan file with delivery preparation progress.
223
+ **Update** the plan file with delivery preparation progress to ensure successful delivery.
231
224
 
232
225
  transitions:
233
226
  - trigger: delivery_complete
234
227
  to: ideate
235
228
  additional_instructions: |
236
- Presentation delivery complete! Your presentation has been successfully delivered.
229
+ **Delivery phase complete!** Your presentation has been successfully delivered.
237
230
 
238
231
  Mark all delivery tasks as complete in the plan file and prepare for new work.
239
232
  transition_reason: 'Presentation delivery completed successfully, ready for new projects'
@@ -246,7 +239,8 @@ states:
246
239
  - trigger: abandon_presentation
247
240
  to: ideate
248
241
  instructions: |
249
- Presentation development abandoned before delivery. Clean up delivery preparation and return to ideation.
242
+ **Abandon delivery preparation** - Clean up delivery preparation and return to ideation.
243
+
250
244
  The plan file and completed work will remain for future reference.
251
245
  additional_instructions: 'Presentation abandoned before delivery. Clean up and prepare for new topics.'
252
246
  transition_reason: 'User decided to abandon presentation before delivery'