codex-workflows 0.6.7 → 0.6.9

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.
Files changed (36) hide show
  1. package/.agents/skills/ai-development-guide/SKILL.md +5 -3
  2. package/.agents/skills/ai-development-guide/references/frontend.md +11 -19
  3. package/.agents/skills/coding-rules/references/typescript.md +17 -12
  4. package/.agents/skills/documentation-criteria/references/plan-template.md +1 -1
  5. package/.agents/skills/documentation-criteria/references/task-template.md +8 -0
  6. package/.agents/skills/integration-e2e-testing/SKILL.md +1 -1
  7. package/.agents/skills/recipe-build/SKILL.md +10 -3
  8. package/.agents/skills/recipe-front-build/SKILL.md +10 -3
  9. package/.agents/skills/recipe-fullstack-build/SKILL.md +10 -3
  10. package/.agents/skills/recipe-fullstack-implement/SKILL.md +1 -1
  11. package/.agents/skills/recipe-prepare-implementation/SKILL.md +1 -0
  12. package/.agents/skills/subagents-orchestration-guide/SKILL.md +9 -6
  13. package/.agents/skills/task-analyzer/references/skills-index.yaml +1 -1
  14. package/.agents/skills/testing/SKILL.md +5 -5
  15. package/.agents/skills/testing/references/typescript.md +2 -6
  16. package/.codex/agents/acceptance-test-generator.toml +61 -96
  17. package/.codex/agents/code-reviewer.toml +4 -57
  18. package/.codex/agents/code-verifier.toml +1 -47
  19. package/.codex/agents/codebase-analyzer.toml +1 -106
  20. package/.codex/agents/design-sync.toml +2 -64
  21. package/.codex/agents/document-reviewer.toml +3 -78
  22. package/.codex/agents/integration-test-reviewer.toml +1 -26
  23. package/.codex/agents/investigator.toml +1 -73
  24. package/.codex/agents/quality-fixer-frontend.toml +4 -105
  25. package/.codex/agents/quality-fixer.toml +4 -122
  26. package/.codex/agents/requirement-analyzer.toml +1 -29
  27. package/.codex/agents/rule-advisor.toml +1 -79
  28. package/.codex/agents/scope-discoverer.toml +1 -70
  29. package/.codex/agents/security-reviewer.toml +1 -19
  30. package/.codex/agents/solver.toml +5 -54
  31. package/.codex/agents/task-decomposer.toml +18 -0
  32. package/.codex/agents/task-executor-frontend.toml +16 -142
  33. package/.codex/agents/task-executor.toml +16 -142
  34. package/.codex/agents/ui-analyzer.toml +1 -157
  35. package/.codex/agents/verifier.toml +2 -65
  36. package/package.json +1 -1
@@ -80,6 +80,7 @@ Record each supplementary finding and its impact on the existing failure points
80
80
  - Check whether the mapped execution path adequately covers the observed symptom from entry to failure
81
81
  - Identify uncovered boundaries or unverified nodes that could hide additional failure points
82
82
  - Evaluate at least 2 additional path segments or boundaries beyond the investigator's original failure-point list
83
+ - When the investigated incident is a bug or regression, or when a failure point affects a state transition, persisted state, or external boundary, trace adjacent cases sharing the same path, contract, persisted state, or external boundary and evaluate whether they carry the same class of defect
83
84
  - Evaluate each failure point independently:
84
85
  - Is the supporting evidence sufficient?
85
86
  - Is there direct counter-evidence?
@@ -125,71 +126,7 @@ Return the JSON result as the final response. See Output Format for the schema.
125
126
  **JSON format is mandatory.**
126
127
 
127
128
  ```json
128
- {
129
- "investigationReview": {
130
- "originalFailurePointCount": 3,
131
- "coverageAssessment": "sufficient|partial|insufficient",
132
- "identifiedGaps": ["Perspectives overlooked in investigation"]
133
- },
134
- "triangulationSupplements": [
135
- {
136
- "source": "Additional information source investigated",
137
- "findings": "Content discovered",
138
- "impactOnFailurePoints": "Impact on existing failure points"
139
- }
140
- ],
141
- "scopeValidation": {
142
- "verified": true,
143
- "concerns": ["Concerns"]
144
- },
145
- "externalResearch": [
146
- {
147
- "query": "Search query used",
148
- "source": "Information source",
149
- "findings": "Related information discovered",
150
- "impactOnFailurePoints": "Impact on failure points"
151
- }
152
- ],
153
- "additionalFailurePoints": [
154
- {
155
- "id": "AFP1",
156
- "description": "Additional failure point description",
157
- "rationale": "Why this failure point was considered",
158
- "evidence": {"supporting": [], "contradicting": []},
159
- "plausibility": "high|medium|low"
160
- }
161
- ],
162
- "pathCoverageFindings": [
163
- {
164
- "nodeId": "N1",
165
- "status": "covered|partially_covered|uncovered",
166
- "findings": "Coverage finding",
167
- "followUpNeeded": ["Needed follow-up"]
168
- }
169
- ],
170
- "failurePointsEvaluation": [
171
- {
172
- "failurePointId": "FP1 or AFP1",
173
- "description": "Failure point description",
174
- "verificationLevel": "speculation|indirect|direct|verified",
175
- "refutationStatus": "unrefuted|partially_refuted|refuted",
176
- "remainingUncertainty": ["Remaining uncertainty"]
177
- }
178
- ],
179
- "conclusion": {
180
- "confirmedFailurePoints": [
181
- {"failurePointId": "FP1", "status": "confirmed|probable|possible", "originalCheckStatus": "retained|added_by_verifier|null"}
182
- ],
183
- "failurePointRelationships": [
184
- {"from": "FP1", "to": "FP2", "relationship": "independent|upstream_of|downstream_of|amplifies|same_boundary"}
185
- ],
186
- "finalStatus": "ready_for_solution|needs_more_investigation",
187
- "coverageAssessment": "sufficient|partial|insufficient",
188
- "statusRationale": "Rationale for status and coverage level",
189
- "recommendedVerification": ["Additional verification needed to confirm conclusion"]
190
- },
191
- "verificationLimitations": ["Limitations of this verification process"]
192
- }
129
+ {"investigationReview":{"originalFailurePointCount":3,"coverageAssessment":"sufficient|partial|insufficient","identifiedGaps":["Perspectives overlooked in investigation"]},"triangulationSupplements":[{"source":"Additional information source investigated","findings":"Content discovered","impactOnFailurePoints":"Impact on existing failure points"}],"scopeValidation":{"verified":true,"concerns":["Concerns"]},"externalResearch":[{"query":"Search query used","source":"Information source","findings":"Related information discovered","impactOnFailurePoints":"Impact on failure points"}],"additionalFailurePoints":[{"id":"AFP1","description":"Additional failure point description","rationale":"Why this failure point was considered","evidence":{"supporting":[],"contradicting":[]},"plausibility":"high|medium|low"}],"pathCoverageFindings":[{"nodeId":"N1","status":"covered|partially_covered|uncovered","findings":"Coverage finding","followUpNeeded":["Needed follow-up"]}],"failurePointsEvaluation":[{"failurePointId":"FP1 or AFP1","description":"Failure point description","verificationLevel":"speculation|indirect|direct|verified","refutationStatus":"unrefuted|partially_refuted|refuted","remainingUncertainty":["Remaining uncertainty"]}],"conclusion":{"confirmedFailurePoints":[{"failurePointId":"FP1","status":"confirmed|probable|possible","originalCheckStatus":"retained|added_by_verifier|null"}],"failurePointRelationships":[{"from":"FP1","to":"FP2","relationship":"independent|upstream_of|downstream_of|amplifies|same_boundary"}],"finalStatus":"ready_for_solution|needs_more_investigation","coverageAssessment":"sufficient|partial|insufficient","statusRationale":"Rationale for status and coverage level","recommendedVerification":["Additional verification needed to confirm conclusion"]},"verificationLimitations":["Limitations of this verification process"]}
193
130
  ```
194
131
 
195
132
  ## Completion Criteria
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-workflows",
3
- "version": "0.6.7",
3
+ "version": "0.6.9",
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",