codex-workflows 0.4.0 → 0.4.2

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.
@@ -49,12 +49,14 @@ Sources: OWASP Top 10:2025, DryRun Agentic Coding Security Report (2026-03)
49
49
  - Endpoints or route handlers defined without authentication middleware
50
50
  - Resource access operations (read, update, delete) without authorization verification
51
51
  - Administrative or destructive operations accessible without elevated permissions
52
- - Recent research indicates this pattern appears at elevated rates in AI-generated code treat as high-priority review target
52
+ - AI-generated code frequently omits authentication middleware and authorization checks; treat every route handler and resource access operation as an explicit verification target during review
53
+ - Detection approach: search for route or endpoint handlers without authentication middleware, and resource operations (read, update, delete) without authorization checks in the call chain
53
54
 
54
55
  ### Mishandling of Exceptional Conditions (OWASP A10:2025)
55
56
  - Error handlers that expose internal system details (stack traces, database errors, file paths) in responses
56
- - Error handlers that fail open (grant access or skip validation on error)
57
+ - Error handlers that grant access, skip authentication, or bypass authorization when an exception occurs
57
58
  - Missing error handling on security-critical operations (authentication, authorization, cryptographic operations)
59
+ - Detection approach: search for catch or error-handler blocks that return stack traces, database errors, or file paths in responses, and for handlers that continue with success-path behavior without re-validating security state
58
60
 
59
61
  ### Software Supply Chain Patterns (OWASP A03:2025)
60
62
  - Dependencies imported without version pinning
@@ -7,13 +7,13 @@
7
7
 
8
8
  ## Comment Writing Rules
9
9
  - **Function Description Focus**: Describe what the code "does"
10
- - **No Historical Information**: Do not record development history
10
+ - **History in Version Control**: Record development history in commits and PRs instead of code comments
11
11
  - **Timeless**: Write only content that remains valid whenever read
12
12
  - **Conciseness**: Keep explanations to necessary minimum
13
13
 
14
14
  ## Type Safety
15
15
 
16
- **Absolute Rule**: any type is completely prohibited. It disables type checking and becomes a source of runtime errors.
16
+ **Absolute Rule**: Use `unknown`, generics, unions, intersections, or validated assertions instead of `any`. `any` disables type checking and becomes a source of runtime errors.
17
17
 
18
18
  **any Type Alternatives (Priority Order)**
19
19
  1. **unknown Type + Type Guards**: Use for validating external input (API responses, localStorage, URL parameters)
@@ -91,7 +91,7 @@ setUsers(users)
91
91
 
92
92
  **Props Design (Props-driven Approach)**
93
93
  - Props are the interface: Define all necessary information as props
94
- - Avoid implicit dependencies: Do not depend on global state or context without necessity
94
+ - Declare dependencies explicitly through props, hooks, or injected modules instead of relying on ambient global state
95
95
  - Type-safe: Always define Props type explicitly
96
96
 
97
97
  **Environment Variables**
@@ -146,7 +146,7 @@ const response = await fetch('/api/data') // Backend handles API key authenticat
146
146
 
147
147
  ## Error Handling
148
148
 
149
- **Absolute Rule**: Error suppression prohibited. All errors must have log output and appropriate handling.
149
+ **Absolute Rule**: Handle every error explicitly with log output, recovery logic, or escalation appropriate to the failure mode.
150
150
 
151
151
  **Fail-Fast Principle**: Fail quickly on errors to prevent continued processing in invalid states
152
152
  ```typescript
@@ -53,34 +53,52 @@ description: "Documentation creation criteria for PRD, ADR, Design Doc, UI Spec,
53
53
 
54
54
  ### PRD (Product Requirements Document)
55
55
  **Purpose**: Define business requirements and user value
56
- **Includes**: Business requirements, success metrics, user stories, MoSCoW prioritization, MVP/Future phase separation, user journey diagram, scope boundary diagram
57
- **Excludes**: Technical implementation details, technical selection rationale, implementation phases, task breakdown
56
+ **Scope**: Business requirements, user value, success metrics, user stories, MoSCoW prioritization, MVP/Future phase separation, user journey diagram, and scope boundary diagram only. Technical implementation details belong in Design Doc, technical decision rationale in ADR, and implementation phases or task breakdown belong in Work Plan.
58
57
 
59
58
  ### ADR (Architecture Decision Record)
60
59
  **Purpose**: Record technical decision rationale and background
61
- **Includes**: Decision, rationale, option comparison (minimum 3 options), architecture impact, principled implementation guidelines
62
- **Excludes**: Implementation schedule, detailed procedures, specific code examples, resource assignments
60
+ **Scope**: Decision, rationale, option comparison (minimum 3 options), architecture impact, and principled implementation guidance only. Implementation procedures and code examples belong in Design Doc, while schedule and resource assignments belong in Work Plan.
63
61
 
64
62
  ### UI Specification
65
63
  **Purpose**: Define UI structure, screen transitions, component decomposition, and interaction design
66
- **Includes**: Screen list and transitions, component state x display matrix, interaction definitions, AC traceability, existing component reuse map, accessibility requirements
67
- **Excludes**: Technical implementation details, API contracts, test implementation (generated by acceptance-test-generator), implementation schedule
64
+ **Scope**: Screen list and transitions, component state x display matrix, component decomposition, interaction definitions, AC traceability, existing component reuse map, visual acceptance criteria, and accessibility requirements only. Technical implementation and API contracts belong in Design Doc, test implementation belongs in generated test skeletons, and schedule belongs in Work Plan.
68
65
 
69
66
  ### Design Document
70
67
  **Purpose**: Define technical implementation methods in detail
71
- **Includes**: Existing codebase analysis, technical approach, dependencies and constraints, interface/contract definitions, data flow, acceptance criteria, change impact map, code inspection evidence
72
- **Excludes**: Why that technology was chosen (reference ADR), when/who to implement (reference Work Plan), detailed test strategy and test case selection (generated by acceptance-test-generator from acceptance criteria)
68
+ **Scope**: Existing codebase analysis, technical approach, dependencies and constraints, interface and contract definitions, data flow, acceptance criteria, change impact map, code inspection evidence, and verification strategy only. Technology selection rationale belongs in ADR, schedule and assignments belong in Work Plan, and detailed test strategy or case selection belongs in generated test skeletons.
69
+
70
+ **Required Structural Elements**:
71
+ - Existing codebase analysis and code inspection evidence
72
+ - Technical approach and implementation approach decision
73
+ - Change impact map and interface/contract definitions
74
+ - Applicable standards with explicit/implicit classification
75
+ - Verification Strategy
76
+ - Correctness proof method
77
+ - Early verification point
78
+ - Minimal form allowed for low-risk or self-evident changes: concise entries or explicit `N/A` with rationale
79
+ Low-risk: changes affecting 1-2 files with no external contract, integration, or data-flow changes
80
+ Self-evident: internal-only refactoring with identical observable inputs and outputs
73
81
 
74
82
  ### Work Plan
75
83
  **Purpose**: Implementation task management and progress tracking
76
- **Includes**: Task breakdown, schedule estimates, test skeleton file paths, Phase 4 Quality Assurance Phase (required), progress records
77
- **Excludes**: Technical rationale, design details
84
+ **Scope**: Task breakdown, dependencies, schedule estimates, test skeleton file paths, Verification Strategy summaries from each Design Doc, final Quality Assurance phase, and progress tracking only. Technical rationale belongs in ADR and design details belong in Design Doc.
78
85
 
79
86
  **Phase Division Criteria**:
87
+
88
+ **When Vertical Slice is selected**:
89
+ - Each phase represents one value unit and includes its own implementation and verification
90
+ - The earliest phase should contain the early verification point when defined
91
+ - Final phase is always Quality Assurance
92
+
93
+ **When Horizontal Slice is selected**:
80
94
  1. **Phase 1: Foundation Implementation** - Contract definitions, interfaces, test preparation
81
95
  2. **Phase 2: Core Feature Implementation** - Business logic, unit tests
82
96
  3. **Phase 3: Integration Implementation** - External connections, presentation layer
83
- 4. **Phase 4: Quality Assurance (Required)** - Acceptance criteria, all tests, quality checks
97
+ 4. **Final Phase: Quality Assurance (Required)** - Acceptance criteria, all tests, quality checks
98
+
99
+ **When Hybrid is selected**:
100
+ - Combine vertical and horizontal phase structures as defined in the Design Doc
101
+ - Final phase is always Quality Assurance with acceptance criteria verification, all tests passing, and quality checks complete
84
102
 
85
103
  ## Creation Process [MANDATORY]
86
104
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Status
4
4
 
5
- [Proposed | Accepted | Deprecated | Superseded]
5
+ [Proposed | Accepted | Deprecated | Superseded | Rejected]
6
6
 
7
7
  ## Context
8
8
 
@@ -54,6 +54,10 @@
54
54
 
55
55
  - [List changes that are neither good nor bad]
56
56
 
57
+ ## Architecture Impact
58
+
59
+ [Describe how this decision affects existing architecture: components changed, dependencies introduced or removed, and new architectural constraints]
60
+
57
61
  ## Implementation Guidance
58
62
 
59
63
  [Principled direction only. Implementation procedures go to Design Doc]
@@ -219,6 +219,28 @@ Invariants:
219
219
  |-------|----------|--------|--------|
220
220
  | [field name] | [Component A to B] | preserved / transformed / dropped | [logic or reason] |
221
221
 
222
+ ## Verification Strategy
223
+
224
+ Verification Strategy defines what correctness means and how to prove it at design time. L1/L2/L3 (from implementation-approach) define task-level verification depth at execution time.
225
+ Use the minimal form only when the change is low-risk or the verification path is self-evident. Otherwise fill all fields concretely.
226
+ Low-risk: changes affecting 1-2 files with no external contract, integration, or data-flow changes.
227
+ Self-evident: internal-only refactoring with identical observable inputs and outputs.
228
+
229
+ ### Correctness Proof Method
230
+
231
+ - **Correctness definition**: [What "correct" means for this change]
232
+ - **Target comparison**: [What is being compared or validated against what]
233
+ - **Verification method**: [How correctness will be verified]
234
+ - **Observable success indicator**: [What observable result proves the verification succeeded]
235
+ - **Verification timing**: [`phase_1` | `per_phase` | `integration_phase` | `final_phase`]
236
+ - **Timing note**: [Optional free-text clarification when the enum alone is insufficient]
237
+
238
+ ### Early Verification Point
239
+
240
+ - **First verification target**: [The smallest unit that proves the approach works]
241
+ - **Success criteria**: [Observable outcome that proves correctness]
242
+ - **Failure response**: [What to do if early verification fails]
243
+
222
244
  ### State Transitions and Invariants (When Applicable)
223
245
 
224
246
  ```yaml
@@ -255,11 +277,16 @@ System Invariants:
255
277
 
256
278
  ### Error Handling
257
279
 
258
- [Types of errors and how to handle them]
280
+ | Error Category | Example | Detection | Recovery Strategy | User Impact |
281
+ |---------------|---------|-----------|-------------------|-------------|
282
+ | [Validation / External / Infrastructure / Business logic] | [Specific error] | [How detected] | [Retry / Fallback / Propagate / Log-and-continue] | [User-facing message or silent handling] |
259
283
 
260
284
  ### Logging and Monitoring
261
285
 
262
- [What to record in logs and how to monitor]
286
+ - **Log events**: [Key events to log: state transitions, external calls, error occurrences, performance thresholds]
287
+ - **Log levels**: [Which events use DEBUG / INFO / WARN / ERROR]
288
+ - **Sensitive data**: [Fields to mask or exclude; align with Security Considerations]
289
+ - **Monitoring**: [Metrics to track, alert thresholds, dashboard requirements]
263
290
 
264
291
  ## Implementation Plan
265
292
 
@@ -279,12 +306,6 @@ System Invariants:
279
306
  - Technical Reason: [Technical necessity to implement after A]
280
307
  - Prerequisites: [Required pre-implementations]
281
308
 
282
- ### Integration Points
283
-
284
- **Integration Point 1: [Name]**
285
- - Components: [Component A] to [Component B]
286
- - Contract: [Interface/API contract between components]
287
-
288
309
  ### Migration Strategy
289
310
 
290
311
  [Technical migration approach, ensuring backward compatibility]
@@ -301,7 +322,9 @@ Mark items as N/A with brief rationale when the feature has no relevant trust bo
301
322
 
302
323
  ## Future Extensibility
303
324
 
304
- [Considerations for future feature additions or changes]
325
+ - **Extension points**: [Interfaces, hooks, or plugin mechanisms designed for future use]
326
+ - **Known future requirements**: [Planned features that influenced current design decisions]
327
+ - **Intentional limitations**: [What was deliberately kept simple and why]
305
328
 
306
329
  ## Alternative Solutions
307
330
 
@@ -13,6 +13,25 @@ Related Issue/PR: #XXX (if any)
13
13
  - ADR: [docs/adr/ADR-XXXX.md] (if any)
14
14
  - PRD: [docs/prd/XXX.md] (if any)
15
15
 
16
+ ## Verification Strategies (from Design Docs)
17
+
18
+ Repeat this block for each Design Doc when multiple Design Docs exist. Preserve each strategy's identity and source document path. Merge strategies only when the Design Docs explicitly define a shared one.
19
+
20
+ ### Verification Strategy: [docs/design/XXX.md]
21
+
22
+ #### Correctness Proof Method
23
+ - **Correctness definition**: [extracted from Design Doc]
24
+ - **Target comparison**: [extracted from Design Doc]
25
+ - **Verification method**: [extracted from Design Doc]
26
+ - **Observable success indicator**: [extracted from Design Doc]
27
+ - **Verification timing**: [`phase_1` | `per_phase` | `integration_phase` | `final_phase`]
28
+ - **Timing note**: [optional clarification]
29
+
30
+ #### Early Verification Point
31
+ - **First verification target**: [extracted from Design Doc]
32
+ - **Success criteria**: [extracted from Design Doc]
33
+ - **Failure response**: [extracted from Design Doc]
34
+
16
35
  ## Objective
17
36
  [Why this change is necessary, what problem it solves]
18
37
 
@@ -33,10 +52,46 @@ Related Issue/PR: #XXX (if any)
33
52
 
34
53
  ## Implementation Phases
35
54
 
36
- (Note: Phase structure is determined based on Design Doc technical dependencies and implementation approach)
55
+ Select one phase structure based on the implementation approach from the Design Doc.
56
+ Delete every unused option before finalizing the work plan. The final document must contain only the selected phase structure.
57
+
58
+ ### Option A: Vertical Slice Phase Structure
37
59
 
38
- ### Phase 1: [Phase Name] (Estimated commits: X)
39
- **Purpose**: [What this phase aims to achieve]
60
+ Use when implementation approach is Vertical Slice. Each phase represents one value unit and includes its own verification.
61
+
62
+ ### Phase 1: [Value Unit 1] (Estimated commits: X)
63
+ **Purpose**: [First slice that proves the approach works]
64
+ **Verification**: [Use the early verification point when applicable]
65
+
66
+ #### Tasks
67
+ - [ ] Task 1: Specific work content
68
+ - [ ] Task 2: Verification for this value unit
69
+ - [ ] Quality check: Implement staged quality checks (refer to ai-development-guide skill)
70
+
71
+ #### Phase Completion Criteria
72
+ - [ ] Early verification point passed
73
+ - [ ] [Functional completion criteria]
74
+ - [ ] [Quality completion criteria]
75
+
76
+ ### Phase 2: [Value Unit 2] (Estimated commits: X)
77
+ **Purpose**: [Subsequent slice]
78
+ **Verification**: [Verification for this value unit]
79
+
80
+ #### Tasks
81
+ - [ ] Task 1: Specific work content
82
+ - [ ] Task 2: Verification for this value unit
83
+ - [ ] Quality check
84
+
85
+ #### Phase Completion Criteria
86
+ - [ ] [Functional completion criteria]
87
+ - [ ] [Quality completion criteria]
88
+
89
+ ### Option B: Horizontal Slice Phase Structure
90
+
91
+ Use when implementation approach is Horizontal Slice. Phases follow Foundation -> Core -> Integration -> QA.
92
+
93
+ ### Phase 1: [Foundation] (Estimated commits: X)
94
+ **Purpose**: Contract definitions, interfaces, test preparation
40
95
 
41
96
  #### Tasks
42
97
  - [ ] Task 1: Specific work content
@@ -48,26 +103,26 @@ Related Issue/PR: #XXX (if any)
48
103
  - [ ] [Functional completion criteria]
49
104
  - [ ] [Quality completion criteria]
50
105
 
51
- ### Phase 2: [Phase Name] (Estimated commits: X)
52
- **Purpose**: [What this phase aims to achieve]
106
+ ### Phase 2: [Core Feature] (Estimated commits: X)
107
+ **Purpose**: Business logic, unit tests
53
108
 
54
109
  #### Tasks
55
110
  - [ ] Task 1: Specific work content
56
111
  - [ ] Task 2: Specific work content
57
- - [ ] Quality check: Implement staged quality checks (refer to ai-development-guide skill)
112
+ - [ ] Quality check
58
113
  - [ ] Integration tests: Verify overall feature functionality
59
114
 
60
115
  #### Phase Completion Criteria
61
116
  - [ ] [Functional completion criteria]
62
117
  - [ ] [Quality completion criteria]
63
118
 
64
- ### Phase 3: [Phase Name] (Estimated commits: X)
65
- **Purpose**: [What this phase aims to achieve]
119
+ ### Phase 3: [Integration] (Estimated commits: X)
120
+ **Purpose**: External connections, presentation layer
66
121
 
67
122
  #### Tasks
68
123
  - [ ] Task 1: Specific work content
69
124
  - [ ] Task 2: Specific work content
70
- - [ ] Quality check: Implement staged quality checks (refer to ai-development-guide skill)
125
+ - [ ] Quality check
71
126
  - [ ] Integration tests: Verify component coordination
72
127
 
73
128
  #### Phase Completion Criteria
@@ -75,7 +130,9 @@ Related Issue/PR: #XXX (if any)
75
130
  - [ ] [Quality completion criteria]
76
131
 
77
132
  ### Final Phase: Quality Assurance (Required) (Estimated commits: 1)
78
- **Purpose**: Overall quality assurance and Design Doc consistency verification
133
+ This phase is required for all implementation approaches.
134
+
135
+ **Purpose**: Cross-cutting quality assurance and Design Doc consistency verification
79
136
 
80
137
  #### Tasks
81
138
  - [ ] Verify all Design Doc acceptance criteria achieved
@@ -37,9 +37,16 @@ Brief observations recorded after reading Investigation Targets:
37
37
  - [ ] Improve code (maintain passing tests)
38
38
  - [ ] Confirm added tests still pass
39
39
 
40
+ ## Operation Verification Methods
41
+ (Derived from Verification Strategy in the work plan)
42
+ - **Verification method**: [What to verify and how]
43
+ - **Success criteria**: [Observable outcome that proves correctness]
44
+ - **Failure response**: [What to do if verification fails]
45
+ - **Verification level**: [L1/L2/L3, per implementation-approach skill]
46
+
40
47
  ## Completion Criteria
41
48
  - [ ] All added tests pass
42
- - [ ] Operation verified (select L1/L2/L3, per implementation-approach skill)
49
+ - [ ] Operation verified per Operation Verification Methods above
43
50
  - [ ] Deliverables created (for research/design tasks)
44
51
 
45
52
  ## Notes
@@ -90,7 +90,7 @@ ENFORCEMENT: Proceeding past a failed quality gate invalidates all subsequent wo
90
90
  **MANDATORY suffix for ALL sub-agent prompts**:
91
91
  ```
92
92
  [SYSTEM CONSTRAINT]
93
- This agent operates within build skill scope. Use orchestrator-provided rules only.
93
+ This agent operates within build skill scope. Use the task file as the primary instruction source. Use the active Design Doc or work plan only as supporting context when the task file references them. Constraints explicitly passed in this prompt by the orchestrator take precedence over supporting context. The agent's own role contract and required quality rules remain in force.
94
94
  ```
95
95
 
96
96
  Autonomous sub-agents require scope constraints for stable execution. MUST append this constraint to every sub-agent prompt.
@@ -17,8 +17,9 @@ description: "Execute from requirement analysis to design document creation."
17
17
 
18
18
  **Execution Protocol**:
19
19
  1. **Spawn agents for all work** -- your role is to invoke sub-agents, pass data between them, and report results
20
- 2. **Follow subagents-orchestration-guide skill design flow exactly**:
21
- - Execute: requirement-analyzer -> technical-designer -> document-reviewer -> design-sync
20
+ 2. **Follow the design flow defined in subagents-orchestration-guide**:
21
+ - Apply the scale-specific and layer-specific branches defined there, including PRD, ADR, and UI Spec steps when required
22
+ - Use `requirement-analyzer -> codebase-analyzer -> technical-designer -> code-verifier -> document-reviewer -> design-sync` as the core design-document path after prerequisite branches are resolved
22
23
  - **[STOP — BLOCKING]** At every `[Stop: ...]` marker -> Present status to user for confirmation. **CANNOT proceed until user explicitly confirms.**
23
24
  3. **Scope**: Complete when design documents receive approval
24
25
 
@@ -27,10 +28,14 @@ ENFORCEMENT: Skipping any quality gate invalidates the design output.
27
28
 
28
29
  ## Workflow Overview
29
30
 
31
+ Core design-document path after prerequisite branches such as PRD, ADR, or UI Spec are resolved:
32
+
30
33
  ```
31
34
  Requirements -> requirement-analyzer -> [Stop: Scale determination]
32
35
  |
33
- technical-designer -> document-reviewer
36
+ codebase-analyzer
37
+ |
38
+ technical-designer -> code-verifier -> document-reviewer
34
39
  |
35
40
  design-sync -> [Stop: Design approval]
36
41
  ```
@@ -48,12 +53,7 @@ Requirements -> requirement-analyzer -> [Stop: Scale determination]
48
53
 
49
54
  Requirements: $ARGUMENTS
50
55
 
51
- Considering the deep impact on design, first engage in dialogue to understand the background and purpose of requirements:
52
- - What problems do you want to solve?
53
- - Expected outcomes and success criteria
54
- - Relationship with existing systems
55
-
56
- Once requirements are moderately clarified, analyze with requirement-analyzer and create appropriate design documents according to scale.
56
+ Pass the user requirements directly to requirement-analyzer as the first action. If clarification is needed, handle it at the requirement-analysis stop point before proceeding.
57
57
 
58
58
  MUST clearly present design alternatives and trade-offs.
59
59
 
@@ -64,13 +64,19 @@ Execute the process below within design scope.
64
64
  ### Step 1: Requirement Analysis
65
65
  Spawn requirement-analyzer agent: "Analyze the following requirements and determine scale: $ARGUMENTS"
66
66
 
67
- ### Step 2: Design Document Creation
68
- Spawn technical-designer agent: "Create design document based on requirement analysis output. Include architecture decisions, component design, and acceptance criteria."
67
+ ### Step 2: Codebase Analysis
68
+ Spawn codebase-analyzer agent: "Analyze the existing codebase to provide evidence for Design Doc creation. requirement_analysis: [output from Step 1]. requirements: $ARGUMENTS"
69
+
70
+ ### Step 3: Design Document Creation
71
+ Spawn technical-designer agent: "Create design document based on requirement analysis output and codebase analysis output. Include architecture decisions, component design, and acceptance criteria."
72
+
73
+ ### Step 4: Code Verification
74
+ Spawn code-verifier agent: "Verify the design document against the current codebase. document_path: [output from Step 3]. doc_type: design-doc."
69
75
 
70
- ### Step 3: Document Review
71
- Spawn document-reviewer agent: "Review the design document created in the previous step. Verify completeness, consistency, and quality."
76
+ ### Step 5: Document Review
77
+ Spawn document-reviewer agent: "Review the design document created in the previous step. Verify completeness, consistency, and quality. code_verification: [output from Step 4]"
72
78
 
73
- ### Step 4: Consistency Verification
79
+ ### Step 6: Consistency Verification
74
80
  Spawn design-sync agent: "Verify consistency of the design document with other existing design documents and project constraints."
75
81
 
76
82
  **Note**: design-sync returns `sync_status: "SKIPPED"` when only 1 Design Doc exists. This is distinct from `NO_CONFLICTS` and MUST be reported as such to the user.
@@ -78,7 +84,9 @@ Spawn design-sync agent: "Verify consistency of the design document with other e
78
84
  ## Completion Criteria
79
85
 
80
86
  - [ ] Spawned requirement-analyzer and determined scale
87
+ - [ ] Spawned codebase-analyzer and passed its findings into design creation
81
88
  - [ ] Created appropriate design document (ADR or Design Doc) via technical-designer
89
+ - [ ] Spawned code-verifier and passed its findings into document review
82
90
  - [ ] Spawned document-reviewer and addressed feedback
83
91
  - [ ] Spawned design-sync for consistency verification
84
92
  - [ ] Obtained user approval for design document
@@ -98,7 +98,7 @@ ENFORCEMENT: Proceeding past a failed quality gate invalidates all subsequent wo
98
98
  **MANDATORY suffix for ALL sub-agent prompts**:
99
99
  ```
100
100
  [SYSTEM CONSTRAINT]
101
- This agent operates within build skill scope. Use orchestrator-provided rules only.
101
+ This agent operates within build skill scope. Use the task file as the primary instruction source. Use the active Design Doc or work plan only as supporting context when the task file references them. Constraints explicitly passed in this prompt by the orchestrator take precedence over supporting context. The agent's own role contract and required quality rules remain in force.
102
102
  ```
103
103
 
104
104
  Autonomous sub-agents require scope constraints for stable execution. MUST append this constraint to every sub-agent prompt.
@@ -108,7 +108,7 @@ ENFORCEMENT: Proceeding past a failed quality gate invalidates all subsequent wo
108
108
  **MANDATORY suffix for ALL sub-agent prompts**:
109
109
  ```
110
110
  [SYSTEM CONSTRAINT]
111
- This agent operates within build skill scope. Use orchestrator-provided rules only.
111
+ This agent operates within build skill scope. Use the task file as the primary instruction source. Use the active Design Docs or work plan only as supporting context when the task file references them. Constraints explicitly passed in this prompt by the orchestrator take precedence over supporting context. The agent's own role contract and required quality rules remain in force.
112
112
  ```
113
113
 
114
114
  Autonomous sub-agents require scope constraints for stable execution. MUST append this constraint to every sub-agent prompt.
@@ -7,9 +7,7 @@ description: "Guides subagent coordination through implementation workflows. Use
7
7
 
8
8
  ## Role: The Orchestrator
9
9
 
10
- **The orchestrator coordinates subagents like a conductor -- directing the musicians without playing the instruments.**
11
-
12
- All investigation, analysis, and implementation work flows through specialized subagents.
10
+ The orchestrator coordinates subagents. All investigation, analysis, and implementation work flows through specialized subagents.
13
11
 
14
12
  ### Prompt Construction Rule
15
13
  Every subagent prompt must include:
@@ -317,18 +315,11 @@ Stop autonomous execution and escalate to user in the following cases:
317
315
  3. **Work-planner update restriction violated**: Requirement changes after task-decomposer starts require overall redesign
318
316
  4. **User explicitly stops**: Direct stop instruction or interruption
319
317
 
320
- ### Task Management: 4-Step Cycle
321
-
322
- **Per-task cycle**:
323
- 1. task-executor: Implementation
324
- 2. Check task-executor response:
325
- - `escalation_needed` or `blocked`: Escalate to user
326
- - `requiresTestReview` is `true`: Execute integration-test-reviewer
327
- - `needs_revision`: Return to step 1 with requiredFixes
328
- - `approved`: Proceed to step 3
329
- - Otherwise: Proceed to step 3
330
- 3. quality-fixer: Quality check and fixes
331
- 4. git commit (on `status: "approved"`)
318
+ Use the task loop defined in the autonomous execution diagram above. The canonical per-task cycle is:
319
+ 1. task-executor implementation
320
+ 2. escalation or integration-test-reviewer decision
321
+ 3. quality-fixer quality gate
322
+ 4. git commit on approval
332
323
 
333
324
  ## Main Orchestrator Roles
334
325
 
@@ -359,13 +350,27 @@ Stop autonomous execution and escalate to user in the following cases:
359
350
 
360
351
  **On error**: Escalate to user if files are not generated
361
352
 
353
+ ### Design Doc to Work Plan Verification Handoff
354
+
355
+ When a Design Doc contains a Verification Strategy section, the orchestrator must carry forward:
356
+ - Design Doc path
357
+ - Verification Strategy details:
358
+ - Correctness definition
359
+ - Target comparison
360
+ - Verification method
361
+ - Observable success indicator
362
+ - Verification timing
363
+ - Early verification point (first target, success criteria, failure response)
364
+
365
+ The resulting work plan must include this summary in its header so the plan remains self-sufficient for downstream task generation and execution planning.
366
+
362
367
  ## Important Constraints [MANDATORY]
363
368
 
364
369
  - **Quality check is REQUIRED**: quality-fixer approval MUST be obtained before commit
365
370
  - **Structured response REQUIRED**: Information transmission between subagents MUST use JSON format
366
371
  - **Approval management**: Document creation -> Execute document-reviewer -> Get user approval before proceeding
367
372
  - **Flow confirmation**: After getting approval, MUST check next step with work planning flow (large/medium/small scale)
368
- - **Consistency verification**: If subagent determinations contradict, MUST prioritize guidelines
373
+ - **Consistency verification**: If subagent determinations contradict, MUST prioritize the constraints and decision rules defined in this orchestration guide
369
374
 
370
375
  **ENFORCEMENT**: Violating ANY constraint requires immediate correction
371
376
 
@@ -380,9 +385,9 @@ Stop autonomous execution and escalate to user in the following cases:
380
385
 
381
386
  When receiving a task, check the following:
382
387
 
383
- - [ ] Confirmed if there is an orchestrator instruction
388
+ - [ ] Confirmed whether the user provided a specific workflow recipe or explicit execution constraint
384
389
  - [ ] Determined task type (new feature/fix/research, etc.)
385
- - [ ] Considered appropriate subagent utilization
390
+ - [ ] Selected the next subagent according to the decision flow and current phase
386
391
  - [ ] Decided next action according to decision flow
387
392
  - [ ] Monitored requirement changes and errors during autonomous execution mode
388
393
 
@@ -64,7 +64,7 @@ All tests MUST be:
64
64
 
65
65
  - **Independent**: No dependencies between tests
66
66
  - **Reproducible**: Same input always produces same output
67
- - **Fast**: Complete test suite runs in reasonable time
67
+ - **Fast**: Complete the full test suite within the project's accepted feedback window and flag suites that materially slow local iteration or CI
68
68
  - **Self-checking**: Clear pass/fail without manual verification
69
69
  - **Timely**: Written close to the code they test
70
70
 
@@ -162,7 +162,7 @@ Test names should clearly describe:
162
162
 
163
163
  - Use setup hooks to prepare test environment
164
164
  - Use teardown hooks to clean up resources
165
- - Keep setup minimal and focused
165
+ - Keep setup scoped to the data, dependencies, and fixtures required for the behavior under test
166
166
  - Ensure teardown runs even if test fails
167
167
 
168
168
  ## Mocking and Test Doubles
@@ -177,7 +177,7 @@ Test names should clearly describe:
177
177
  ### Mocking Principles [MANDATORY]
178
178
 
179
179
  - Mock at boundaries, not internally — use real implementations for internal utilities
180
- - Keep mocks simple and focused
180
+ - Keep each mock limited to the behavior the test needs to control or observe
181
181
  - Verify mock expectations when relevant
182
182
  - Use adapters for external libraries/frameworks you do not control
183
183
 
@@ -345,7 +345,7 @@ Eliminate tests that fail intermittently:
345
345
  - Add test for every bug fix
346
346
  - Maintain comprehensive test suite
347
347
  - Run full suite regularly
348
- - Don't delete tests without good reason
348
+ - Delete a test only when the covered behavior no longer exists or the same behavior is covered by a stronger test at the correct level
349
349
 
350
350
  ### Legacy Code
351
351
 
@@ -242,7 +242,8 @@ These annotations are used when planning and prioritizing test implementation.
242
242
  ## Constraints and Quality Standards
243
243
 
244
244
  **Mandatory Compliance**:
245
- - Output only test skeletons (prohibit implementation code, assertions, mocks)
245
+ - Output test skeletons only: verification points, expected results, and pass criteria
246
+ - Downstream consumers treat these skeletons as design artifacts rather than runnable tests
246
247
  - Clearly state verification points, expected results, and pass criteria for each test
247
248
  - Preserve original AC statements in comments (ensure traceability)
248
249
  - Stay within test budget; report if budget insufficient for critical tests
@@ -273,7 +274,7 @@ These annotations are used when planning and prioritizing test implementation.
273
274
  - Framework/Language: Auto-detect from existing test files
274
275
  - Placement: Identify test directory with project-specific patterns
275
276
  - Naming: Follow existing file naming conventions
276
- - Output: Test skeleton only (exclude implementation code)
277
+ - Output: Test skeletons only (follow Constraints and Quality Standards for the boundary)
277
278
 
278
279
  **File Operations**:
279
280
  - Existing files: Append to end, prevent duplication (check existing tests)
@@ -97,6 +97,7 @@ For DesignDoc, additionally verify:
97
97
  - [ ] Dependencies described as existing have verification results or authoritative external source
98
98
  - [ ] Field propagation map present (when fields cross boundaries)
99
99
  - [ ] Data-oriented designs contain concrete data design or Test Boundaries content, or an explicit N/A rationale
100
+ - [ ] Verification Strategy section present with correctness definition, target comparison, verification method, observable success indicator, normalized verification timing, and early verification point
100
101
 
101
102
  #### Gate 1: Quality Assessment (only after Gate 0 passes)
102
103
 
@@ -114,6 +115,7 @@ For DesignDoc, additionally verify:
114
115
  - **As-is implementation document review**: When code verification results are provided and the document describes existing implementation (not future requirements), verify that code-observable behaviors are stated as facts; speculative language about deterministic behavior → `important` issue
115
116
  - **Data design completeness check**: When the document references persistence, storage, database, repository, query, ORM, migration, table, schema, or column concepts, verify that the Design Doc includes concrete data design content or an explicit N/A rationale. Useful evidence includes schema references, data model notes, or Test Boundaries with data layer strategy
116
117
  - **Code-verifier evidence integration**: When `code_verification` is provided, reconcile major or critical discrepancies and undocumented data operations as part of Gate 1 completeness and consistency review
118
+ - **Verification Strategy quality check**: When the Verification Strategy section exists, verify that: (1) correctness definition is specific and measurable, (2) target comparison and observable success indicator are concrete when the change modifies observable behavior, external contracts, integrations, or data flow, (3) internal-only refactoring with identical observable inputs and outputs may use the minimal form, (4) verification method can detect the change's primary risk, (5) verification timing uses the normalized vocabulary or an explicit `N/A` rationale for minimal form, and (6) vertical-slice designs do not defer all verification to the final phase
117
119
  - **Undetermined items review** [MANDATORY]: Every TBD, unknown, or open item MUST include: (1) **owner** — who resolves it, (2) **due** — when it gets resolved (which phase or milestone), (3) **next-phase handling** — how the next phase treats this gap. Missing any of these three → `important` issue
118
120
 
119
121
  **Perspective-specific Mode**:
@@ -255,6 +257,8 @@ Include in output when `prior_context_count > 0`:
255
257
 
256
258
  - [ ] Match of requirements, terminology, numbers between documents
257
259
  - [ ] Completeness of required elements in each document
260
+ - [ ] Verification Strategy present with a concrete correctness definition and early verification point
261
+ - [ ] Verification Strategy aligns with design type and implementation approach
258
262
  - [ ] Compliance with project rules
259
263
  - [ ] Technical feasibility and reasonableness of estimates
260
264
  - [ ] Clarification of risks and countermeasures
@@ -55,7 +55,7 @@ Scale determination and required document details follow the principles in docum
55
55
  - **Medium**: 3-5 files, spanning multiple components
56
56
  - **Large**: 6+ files, architecture-level changes
57
57
 
58
- ADR conditions (contract system changes, data flow changes, architecture changes, external dependency changes) require ADR regardless of scale
58
+ Note: ADR conditions (contract system changes, data flow changes, architecture changes, external dependency changes) require ADR regardless of scale
59
59
 
60
60
  ### Important: Clear Determination Expressions
61
61
  MUST use the following expressions to show clear determinations:
@@ -162,7 +162,7 @@ Return the JSON result as the final response. See Output Format for the schema.
162
162
  - [ ] Do I understand the user's true purpose?
163
163
  - [ ] Have I properly estimated the impact scope?
164
164
  - [ ] Have I correctly determined ADR necessity?
165
- - [ ] Have I not overlooked technical risks?
165
+ - [ ] Have I identified all technical risks and dependencies?
166
166
  - [ ] Have I listed scopeDependencies for uncertain scale?
167
167
  - [ ] Final response is the JSON output
168
168
 
@@ -51,6 +51,7 @@ Decompose tasks based on implementation strategy patterns determined in implemen
51
51
  - Understand dependencies between phases and tasks
52
52
  - Grasp completion criteria and quality standards
53
53
  - **Interface change detection and response**
54
+ - **Extract Verification Strategy from the work plan header**
54
55
 
55
56
  2. **Task Decomposition**
56
57
  - Decompose at 1 commit = 1 task granularity (logical change unit)
@@ -116,6 +117,7 @@ Decompose tasks based on implementation strategy patterns determined in implemen
116
117
  - Investigation Targets
117
118
  - Investigation Notes
118
119
  - Concrete implementation steps
120
+ - Operation Verification Methods
119
121
  - Completion criteria
120
122
 
121
123
  6. **Investigation Targets Determination**
@@ -128,6 +130,7 @@ Decompose tasks based on implementation strategy patterns determined in implemen
128
130
  | Integration/E2E test work | Test skeleton file, target implementation under test, existing fixture/auth/setup patterns |
129
131
  | E2E environment/setup work | Current environment config, startup scripts, seed/fixture scripts, auth flow references |
130
132
  | Bug fix/refactor | Affected code paths, failing tests, reproduction-related files |
133
+ | Behavior replacement/rewrite | Existing implementation being replaced, observable outputs, Verification Strategy section in the Design Doc |
131
134
 
132
135
  **Principles**:
133
136
  - Every task must include at least one Investigation Target
@@ -144,6 +147,18 @@ Decompose tasks based on implementation strategy patterns determined in implemen
144
147
  8. **Utilize Test Information**
145
148
  When test information (@category, @dependency, @complexity, etc.) is documented in the work plan, reflect that information in task files
146
149
 
150
+ ## Verification Strategy Propagation
151
+
152
+ Verification Strategy defines what correctness means at design time. L1/L2/L3 (from implementation-approach) define task-level verification depth at execution time. Use both.
153
+
154
+ When the work plan includes one or more Verification Strategy blocks:
155
+
156
+ 1. **Source preservation**: Keep each strategy tied to its source Design Doc or plan block. Preserve strategy identity and merge only when the work plan explicitly marks the strategy as shared.
157
+ 2. **Early verification task**: The task matching a strategy's "First verification target" MUST include that method and success criteria in Operation Verification Methods.
158
+ 3. **Per-task verification**: Each task's Operation Verification Methods MUST instantiate the relevant plan-level verification method for that task's specific files, interfaces, or behavior.
159
+ 4. **Failure handling**: Copy or adapt the relevant plan-level failure response so the executor knows whether to reassess, stop, or escalate.
160
+ 5. **Investigation coverage**: Include every resource required for verification, such as existing implementations for comparison, schema definitions, fixtures, contracts, or seed data.
161
+
147
162
  ## Task File Template
148
163
 
149
164
  See task template in documentation-criteria skill for details.
@@ -243,6 +258,7 @@ Please execute decomposed tasks according to the order.
243
258
  - [ ] Impact scope and boundaries definition for each task
244
259
  - [ ] Appropriate granularity (1-5 files/task)
245
260
  - [ ] Investigation Targets specified for every task
261
+ - [ ] Operation Verification Methods specified for every task
246
262
  - [ ] Clear completion criteria setting
247
263
  - [ ] Overall design document creation
248
264
  - [ ] Implementation efficiency and rework prevention (pre-identification of common processing, clarification of impact scope)
@@ -162,7 +162,7 @@ Select and execute files with pattern `docs/plans/tasks/*-task-*.md` that have u
162
162
  **Unavailable**: Escalate with `status: "escalation_needed"`, `reason: "test_environment_not_ready"`
163
163
 
164
164
  #### Pre-implementation Verification (Pattern 5 Compliant)
165
- 1. **Read relevant Design Doc sections** and understand accurately
165
+ 1. **Read relevant Design Doc sections** and extract interface contracts, data structures, dependency constraints, and verification expectations
166
166
  2. **Investigate existing implementations**: Search for similar functions in same domain/responsibility
167
167
  3. **Cross-check against Investigation Notes**: Ensure planned implementation is consistent with the observations recorded in the task file
168
168
  4. **Execute determination**: Determine continue/escalation per "Mandatory Judgment Criteria" above
@@ -80,7 +80,7 @@ Must be performed before Design Doc creation:
80
80
  - Search existing code for keywords related to planned component
81
81
  - Look for components with same domain, responsibilities, or UI patterns
82
82
  - Decision and action:
83
- - Similar component found → Use that component (do not create new component)
83
+ - Similar component found → Reuse, compose, or extend that component path and document the reuse decision
84
84
  - Similar component is technical debt → Create ADR improvement proposal before implementation
85
85
  - No similar component → Proceed with new implementation
86
86
 
@@ -146,6 +146,17 @@ Must be performed when creating Design Doc:
146
146
  - Which task first makes the entire UI operational
147
147
  - Verification level for each task (L1/L2/L3 defined in implementation-approach skill)
148
148
 
149
+ 3. **Verification Strategy Definition**
150
+ - Define what correctness means for this UI change and how it will be proven
151
+ - Use the Design Doc template fields directly
152
+ - Include at minimum: correctness definition, target comparison, verification method, observable success indicator, verification timing, and early verification point
153
+ - Use normalized verification timing values: `phase_1`, `per_phase`, `integration_phase`, or `final_phase`
154
+ - For low-risk or self-evident changes, a minimal form or explicit `N/A` with rationale is acceptable
155
+ - For new UI features, specify acceptance-criteria verification beyond unit tests
156
+ - For extensions, specify regression verification that proves existing behavior and UX expectations are preserved
157
+ - For refactors or rewrites, specify behavioral equivalence verification against the current UI behavior when applicable
158
+ - Define an early verification point: the first screen, state transition, or interaction that proves the approach works
159
+
149
160
  ### Change Impact Map【Required】
150
161
  Must be included when creating Design Doc:
151
162
 
@@ -265,6 +276,14 @@ Execute file output immediately. Final approval is managed by the orchestrator r
265
276
  - Cite information sources in "References" section with URLs
266
277
  - Especially confirm multiple reliable sources when introducing new technologies
267
278
 
279
+ ## Design Doc Completion Checklist
280
+
281
+ - [ ] Agreement Checklist completed and reflected in design
282
+ - [ ] Implementation approach selected with rationale
283
+ - [ ] Verification Strategy defined with correctness definition, target comparison, method, observable success indicator, timing, and early verification point
284
+ - [ ] Change Impact Map included
285
+ - [ ] Interface Change Impact Analysis included
286
+
268
287
  ## Implementation Sample Standards Compliance
269
288
 
270
289
  **MANDATORY**: All implementation samples in ADR and Design Docs MUST strictly comply with coding-rules skill standards without exception.
@@ -97,7 +97,7 @@ Must be performed before Design Doc creation:
97
97
  - Search existing code for keywords related to planned functionality
98
98
  - Look for implementations with same domain, responsibilities, or configuration patterns
99
99
  - Decision and action:
100
- - Similar functionality found → Use that implementation (do not create new implementation)
100
+ - Similar functionality found → Reuse or extend that implementation path and document the reuse decision
101
101
  - Similar functionality is technical debt → Create ADR improvement proposal before implementation
102
102
  - No similar functionality → Proceed with new implementation
103
103
 
@@ -180,6 +180,17 @@ Must be performed when creating Design Doc:
180
180
  - Which task first makes the whole system operational
181
181
  - Verification level for each task (L1/L2/L3 defined in implementation-approach skill)
182
182
 
183
+ 3. **Verification Strategy Definition**
184
+ - Define what correctness means for this change and how it will be proven
185
+ - Use the Design Doc template fields directly
186
+ - Include at minimum: correctness definition, target comparison, verification method, observable success indicator, verification timing, and early verification point
187
+ - Use normalized verification timing values: `phase_1`, `per_phase`, `integration_phase`, or `final_phase`
188
+ - For low-risk or self-evident changes, a minimal form or explicit `N/A` with rationale is acceptable
189
+ - For new features, specify acceptance-criteria verification beyond unit tests
190
+ - For extensions, specify regression verification that proves existing behavior is preserved
191
+ - For refactors or rewrites, specify behavioral equivalence verification against the current implementation when applicable
192
+ - Define an early verification point: the first target to validate before scaling the approach
193
+
183
194
  ### Change Impact Map【Required】
184
195
  Must be included when creating Design Doc:
185
196
 
@@ -340,6 +351,7 @@ Implementation sample creation checklist:
340
351
  - [ ] **Complexity assessment**: complexity_level set; if medium/high, complexity_rationale specifies (1) requirements/ACs, (2) constraints/risks
341
352
  - [ ] **Data representation decision documented** (when new structures introduced)
342
353
  - [ ] **Field propagation map included** (when fields cross boundaries)
354
+ - [ ] **Verification Strategy defined** (correctness definition, target comparison, verification method, observable success indicator, timing, early verification point)
343
355
 
344
356
  **Reverse-engineer mode only**:
345
357
  - [ ] Every architectural claim cites file:line evidence
@@ -61,6 +61,7 @@ Read the Design Doc(s), UI Spec, PRD, and ADR (if provided). Extract:
61
61
  - Acceptance criteria and implementation approach
62
62
  - Technical dependencies and implementation order
63
63
  - Integration points and their contracts
64
+ - Verification Strategy from each Design Doc: correctness definition, target comparison, verification method, observable success indicator, normalized verification timing, and early verification point
64
65
 
65
66
  ### 2. Process Test Design Information (when provided)
66
67
  Read test skeleton files and extract meta information (see Test Design Information Processing section).
@@ -69,11 +70,21 @@ Read test skeleton files and extract meta information (see Test Design Informati
69
70
  Choose Strategy A (TDD) if test skeletons are provided, Strategy B (implementation-first) otherwise. See Implementation Strategy Selection section.
70
71
 
71
72
  ### 4. Compose Phases
72
- Structure phases based on technical dependencies from Design Doc:
73
- - Place tasks with lowest dependencies in earlier phases
73
+
74
+ **Common rules (all approaches)**:
75
+ - Preserve Verification Strategies per Design Doc in the work plan header and keep each source document path. Merge strategies only when the Design Docs explicitly define a shared one
76
+ - Include Verification Strategy summaries in the work plan header so the plan is self-sufficient for downstream task generation
77
+ - Place tasks with the lowest dependencies in earlier phases
78
+ - Map normalized verification timing to phases as follows: `phase_1` -> earliest implementation phase, `per_phase` -> each relevant phase, `integration_phase` -> integration phase, `final_phase` -> final Quality Assurance phase
79
+ - Include verification tasks in the phase corresponding to the Verification Strategy timing
74
80
  - When test skeletons are provided, place integration test implementation based on `@dependency` metadata from test skeletons (see Test Design Information Processing > Step 2) and place E2E test execution in the final phase
75
81
  - When test skeletons are not provided, include test implementation tasks based on Design Doc acceptance criteria
76
- - Include quality assurance in final phase
82
+ - Final phase is always Quality Assurance
83
+
84
+ **Phase structure**:
85
+ - Select the phase structure that matches the implementation approach from the Design Doc
86
+ - Use the plan template's vertical or horizontal option accordingly
87
+ - Remove every unused phase-structure option from the final work plan output
77
88
 
78
89
  ### 5. Define Tasks with Completion Criteria
79
90
  For each task, derive completion criteria from Design Doc acceptance criteria. Apply the 3-element completion definition (Implementation Complete, Quality Complete, Integration Complete).
@@ -100,7 +111,7 @@ Execute file output immediately. Final approval is managed by the orchestrator r
100
111
  1. **Executable Granularity**: Each task as logical 1-commit unit, clear completion criteria, explicit dependencies
101
112
  2. **Built-in Quality**: Simultaneous test implementation, quality checks in each phase
102
113
  3. **Risk Management**: List risks and countermeasures in advance, define detection methods
103
- 4. **Ensure Flexibility**: Prioritize essential purpose, avoid excessive detail
114
+ 4. **Ensure Flexibility**: Prioritize essential purpose and include only details required for task execution, verification, and dependency management
104
115
  5. **Design Doc Compliance**: All task completion criteria derived from Design Doc specifications
105
116
  6. **Implementation Pattern Consistency**: When including implementation samples, MUST ensure strict compliance with Design Doc implementation approach
106
117
 
@@ -236,7 +247,10 @@ When creating work plans, **Phase Structure Diagrams** and **Task Dependency Dia
236
247
  ## Quality Checklist
237
248
 
238
249
  - [ ] Design Doc(s) consistency verification
239
- - [ ] Phase composition based on technical dependencies
250
+ - [ ] Verification Strategies extracted from each Design Doc and included in the plan header without unintended merging
251
+ - [ ] Phase structure matches the implementation approach
252
+ - [ ] Early verification point placed in the earliest applicable phase
253
+ - [ ] Normalized verification timing mapped consistently to phases
240
254
  - [ ] All requirements converted to tasks
241
255
  - [ ] Quality assurance exists in final phase
242
256
  - [ ] Test skeleton file paths listed in corresponding phases (when provided)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-workflows",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Task-oriented agentic coding framework for OpenAI Codex CLI — skills, recipes, and subagents for structured development workflows",
5
5
  "license": "MIT",
6
6
  "author": "Shinsuke Kagawa",