@vpxa/aikit 0.1.65 → 0.1.67

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 (27) hide show
  1. package/package.json +1 -1
  2. package/packages/cli/dist/constants-D93JHBiN.js +1 -0
  3. package/packages/cli/dist/index.js +3 -3
  4. package/packages/cli/dist/{init-DBo2fDoM.js → init-DANkCO2c.js} +1 -1
  5. package/packages/cli/dist/{user-CXIL0rVI.js → user-Bb99C6xW.js} +1 -1
  6. package/scaffold/flows/_epilogue/steps/docs-sync/README.md +119 -119
  7. package/scaffold/flows/aikit-advanced/steps/design/README.md +16 -2
  8. package/scaffold/flows/aikit-advanced/steps/execute/README.md +3 -1
  9. package/scaffold/flows/aikit-advanced/steps/plan/README.md +3 -1
  10. package/scaffold/flows/aikit-advanced/steps/spec/README.md +3 -1
  11. package/scaffold/flows/aikit-advanced/steps/task/README.md +3 -1
  12. package/scaffold/flows/aikit-advanced/steps/verify/README.md +3 -1
  13. package/scaffold/flows/aikit-basic/steps/assess/README.md +3 -1
  14. package/scaffold/flows/aikit-basic/steps/design/README.md +12 -3
  15. package/scaffold/flows/aikit-basic/steps/implement/README.md +3 -1
  16. package/scaffold/flows/aikit-basic/steps/verify/README.md +3 -1
  17. package/scaffold/general/skills/docs/SKILL.md +508 -508
  18. package/scaffold/general/skills/docs/references/diataxis-anti-patterns.md +146 -146
  19. package/scaffold/general/skills/docs/references/diataxis-compass.md +122 -122
  20. package/scaffold/general/skills/docs/references/diataxis-quadrants.md +191 -191
  21. package/scaffold/general/skills/docs/references/diataxis-quality.md +75 -75
  22. package/scaffold/general/skills/docs/references/diataxis-templates.md +119 -119
  23. package/scaffold/general/skills/docs/references/flow-artifacts-guide.md +69 -69
  24. package/scaffold/general/skills/docs/references/project-knowledge-gotchas.md +31 -31
  25. package/scaffold/general/skills/docs/references/project-knowledge-templates.md +280 -280
  26. package/scaffold/general/skills/docs/references/project-knowledge-workflow.md +79 -79
  27. package/packages/cli/dist/constants-BjDyZo-l.js +0 -1
@@ -18,13 +18,14 @@ Classify the task into one of these categories:
18
18
  | **Refactor** | Code cleanup, rename, restructure, no behavior change | → **Auto-skip** to next step |
19
19
  | **Small feature** | New behavior, new endpoint, new component, UI change | → Run **Quick Design** below |
20
20
 
21
- **If the task is a bug fix or refactor**, produce a minimal `design-decisions.md`:
21
+ **If the task is a bug fix or refactor**, write `{{artifacts_path}}/design-decisions.md` to disk:
22
22
  ```markdown
23
23
  ## Design Decisions
24
24
  - **Task type**: Bug fix / Refactor
25
25
  - **Design gate**: Auto-skipped — no design work needed
26
26
  - **Proceed to**: Assessment
27
27
  ```
28
+ **You MUST create this file on disk** at the exact `{{artifacts_path}}/design-decisions.md` path — do not just present the content in chat.
28
29
  Then report `DONE` to the Orchestrator so the flow advances.
29
30
 
30
31
  ### 2. Quick Design (Small Features Only)
@@ -39,7 +40,7 @@ For small features that need minimal design:
39
40
  3. **Decision Protocol** (if technical decisions exist) — Delegate to 2-4 Researcher agents in parallel:
40
41
  - Each researcher evaluates a different approach
41
42
  - Synthesize findings into a recommendation
42
- 4. **Produce `design-decisions.md`**:
43
+ 4. **Write `{{artifacts_path}}/design-decisions.md`** to disk:
43
44
 
44
45
  ```markdown
45
46
  ## Design Decisions
@@ -66,9 +67,13 @@ When complete, report status:
66
67
 
67
68
  **Do NOT call `flow_step`** — let the Orchestrator advance the flow.
68
69
 
70
+ ## Outputs
71
+
72
+ Write `{{artifacts_path}}/design-decisions.md` to disk. **You MUST create this file** using `create_file` or equivalent — do not just present content in chat. This file is a prerequisite for the next step.
73
+
69
74
  ## Produces
70
75
 
71
- - `design-decisions.md` — Task classification, FORGE tier, key design decisions
76
+ - `{{artifacts_path}}/design-decisions.md` — Task classification, FORGE tier, key design decisions
72
77
 
73
78
  ## Agents
74
79
 
@@ -96,6 +101,10 @@ Load these skills BEFORE executing this step:
96
101
 
97
102
  ## Completion Criteria
98
103
 
104
+ - [ ] `{{artifacts_path}}/design-decisions.md` written to disk (NOT just presented in chat)
105
+ - [ ] FORGE tier determined (for small features)
106
+ - [ ] Key design decisions documented
107
+
99
108
  ## Knowledge Capture
100
109
 
101
110
  Before completing this step, persist important findings using `remember()`:
@@ -39,7 +39,9 @@ If any prerequisites are missing or incomplete:
39
39
 
40
40
  ## Outputs
41
41
 
42
- Produce `{{artifacts_path}}/progress.md` with:
42
+ Write `{{artifacts_path}}/progress.md` to disk. **You MUST create this file** using `create_file` or equivalent — do not just present content in chat.
43
+
44
+ Template:
43
45
 
44
46
  ```markdown
45
47
  # Implementation Progress: <task title>
@@ -42,7 +42,9 @@ If any prerequisites are missing or incomplete:
42
42
 
43
43
  ## Outputs
44
44
 
45
- Produce `{{artifacts_path}}/verify-report.md` with:
45
+ Write `{{artifacts_path}}/verify-report.md` to disk. **You MUST create this file** using `create_file` or equivalent — do not just present content in chat.
46
+
47
+ Template:
46
48
 
47
49
  ```markdown
48
50
  # Verification Report: <task title>