codex-workflows 0.1.0 → 0.2.0

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.
@@ -40,35 +40,45 @@ Skill Status:
40
40
  2. Clarify task dependencies
41
41
  3. Phase division and prioritization
42
42
  4. Define completion criteria for each task (derived from Design Doc acceptance criteria)
43
- 5. **Define operational verification procedures for each phase**
43
+ 5. Define operational verification procedures for each phase
44
44
  6. Concretize risks and countermeasures
45
45
  7. Document in progress-trackable format
46
46
 
47
- ## Required Information
48
-
49
- Required input (in natural language):
50
-
51
- - **Operation Mode**:
52
- - `create`: New creation (default)
53
- - `update`: Update existing plan
54
-
55
- - **Requirements Analysis Results**: Requirements analysis results (scale determination, technical requirements, etc.)
56
- - **PRD**: PRD document (if created)
57
- - **ADR**: ADR document (if created)
58
- - **Design Doc(s)**: Design Doc document(s) (if created, may be multiple for cross-layer features)
59
- - **Test Design Information** (reflect in plan if provided from previous process):
60
- - Test definition file path
61
- - Test case descriptions (it.todo format, etc.)
62
- - Meta information (@category, @dependency, @complexity, etc.)
63
- - **Current Codebase Information**:
64
- - List of affected files
65
- - Current test coverage
66
- - Dependencies
67
-
68
- - **Update Context** (update mode only):
69
- - Path to existing plan
70
- - Reason for changes
71
- - Tasks needing addition/modification
47
+ ## Input Parameters
48
+
49
+ - **mode**: `create` (default) | `update`
50
+ - **designDoc**: Path to Design Doc(s) (may be multiple for cross-layer features)
51
+ - **uiSpec** (optional): Path to UI Specification (frontend/fullstack features)
52
+ - **prd** (optional): Path to PRD document
53
+ - **adr** (optional): Path to ADR document
54
+ - **testSkeletons** (optional): Paths to integration/E2E test skeleton files from acceptance-test-generator
55
+ - **updateContext** (update mode only): Path to existing plan, reason for changes
56
+
57
+ ## Workflow
58
+
59
+ ### 1. Load Input Documents
60
+ Read the Design Doc(s), UI Spec, PRD, and ADR (if provided). Extract:
61
+ - Acceptance criteria and implementation approach
62
+ - Technical dependencies and implementation order
63
+ - Integration points requiring E2E verification
64
+
65
+ ### 2. Process Test Design Information (when provided)
66
+ Read test skeleton files and extract meta information (see Test Design Information Processing section).
67
+
68
+ ### 3. Select Implementation Strategy
69
+ Choose Strategy A (TDD) if test skeletons are provided, Strategy B (implementation-first) otherwise. See Implementation Strategy Selection section.
70
+
71
+ ### 4. Compose Phases
72
+ Structure phases based on technical dependencies from Design Doc:
73
+ - Place tasks with lowest dependencies in earlier phases
74
+ - Include operational verification at integration points
75
+ - Include quality assurance in final phase
76
+
77
+ ### 5. Define Tasks with Completion Criteria
78
+ For each task, derive completion criteria from Design Doc acceptance criteria. Apply the 3-element completion definition (Implementation Complete, Quality Complete, Integration Complete).
79
+
80
+ ### 6. Produce Work Plan Document
81
+ Write the work plan following the plan template from documentation-criteria skill. Include Phase Structure Diagram and Task Dependency Diagram (mermaid).
72
82
 
73
83
  ## Work Plan Output Format
74
84
 
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Shinsuke Kagawa
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  **End-to-end AI coding workflows for [Codex CLI](https://developers.openai.com/codex/cli)** — specialized subagents handle requirements, design, implementation, and quality checks so you get code with explicit design docs, test coverage, and commit-level traceability — not just raw generations.
8
8
 
9
- Built on the [Agent Skills specification](https://developers.openai.com/codex/skills/) and [Codex subagents](https://developers.openai.com/codex/subagents). Works with GPT-5.4 and GPT-5.3-Codex-Spark.
9
+ Built on the [Agent Skills specification](https://developers.openai.com/codex/skills/) and [Codex subagents](https://developers.openai.com/codex/subagents). Works with the latest GPT models.
10
10
 
11
11
  ---
12
12
 
@@ -144,7 +144,7 @@ Invoke recipes with `$recipe-name` in Codex. Type `$recipe-` and use tab complet
144
144
  | `$recipe-design` | Requirements → ADR/Design Doc | Architecture planning |
145
145
  | `$recipe-plan` | Design Doc → test skeletons → work plan | Planning phase |
146
146
  | `$recipe-build` | Execute backend tasks autonomously | Resume backend implementation |
147
- | `$recipe-review` | Design Doc compliance validation with auto-fixes | Post-implementation check |
147
+ | `$recipe-review` | Design Doc compliance and security validation with auto-fixes | Post-implementation check |
148
148
  | `$recipe-diagnose` | Problem investigation → verification → solution | Bug investigation |
149
149
  | `$recipe-reverse-engineer` | Generate PRD + Design Docs from existing code | Legacy system documentation |
150
150
  | `$recipe-add-integration-tests` | Add integration/E2E tests from Design Doc | Test coverage for existing code |
@@ -157,7 +157,7 @@ Invoke recipes with `$recipe-name` in Codex. Type `$recipe-` and use tab complet
157
157
  | `$recipe-front-design` | Requirements → UI Spec → frontend Design Doc | Frontend architecture planning |
158
158
  | `$recipe-front-plan` | Frontend Design Doc → test skeletons → work plan | Frontend planning phase |
159
159
  | `$recipe-front-build` | Execute frontend tasks with RTL + quality checks | Resume frontend implementation |
160
- | `$recipe-front-review` | Frontend compliance validation with React-specific fixes | Frontend post-implementation check |
160
+ | `$recipe-front-review` | Frontend compliance and security validation with React-specific fixes | Frontend post-implementation check |
161
161
 
162
162
  ### Fullstack (Cross-Layer)
163
163
 
@@ -244,6 +244,7 @@ Codex spawns these as needed during recipe execution. Each agent runs in its own
244
244
  |-------|------|
245
245
  | `code-reviewer` | Design Doc compliance validation |
246
246
  | `code-verifier` | Document-code consistency verification |
247
+ | `security-reviewer` | Security compliance review after implementation |
247
248
  | `rule-advisor` | Skill selection via metacognitive analysis |
248
249
  | `scope-discoverer` | Codebase scope discovery for reverse docs |
249
250
 
@@ -316,7 +317,7 @@ your-project/
316
317
  │ ├── requirement-analyzer.toml
317
318
  │ ├── technical-designer.toml
318
319
  │ ├── task-executor.toml
319
- │ └── ... (22 agents total)
320
+ │ └── ... (23 agents total)
320
321
  └── docs/ # Created as you use the recipes
321
322
  ├── prd/
322
323
  ├── design/
@@ -332,7 +333,7 @@ your-project/
332
333
 
333
334
  **Q: What models does this work with?**
334
335
 
335
- A: Designed for GPT-5.4 (default). Subagents like rule-advisor use GPT-5.3-Codex-Spark for faster lightweight analysis. Models are configurable per agent in the TOML files.
336
+ A: Designed for the latest GPT models. Lightweight subagents (e.g. rule-advisor) can use smaller models for faster analysis. Models are configurable per agent in the TOML files.
336
337
 
337
338
  **Q: Can I customize the agents?**
338
339
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-workflows",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
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",