@laitszkin/apollo-toolkit 3.6.3 → 3.6.4

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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ All notable changes to this repository are documented in this file.
7
7
  ### Added
8
8
  - (None yet)
9
9
 
10
+ ## [v3.6.4] - 2026-04-29
11
+
12
+ ### Changed
13
+ - Simplify `generate-spec` tasks.md template with compact per-item format (inline file/change/outcome + Verify field), and strengthen SKILL.md §4 to require exact file path, modification, and verification step for every task item
14
+
10
15
  ## [v3.6.3] - 2026-04-28
11
16
 
12
17
  ### Changed
@@ -86,16 +86,19 @@ Own the shared planning-doc lifecycle for feature work so other skills can reuse
86
86
 
87
87
  ### 4) Fill `tasks.md`
88
88
 
89
- - Use `## **Task N: [Task Title]**` for each main task.
90
- - Describe each task's purpose and the related requirement IDs.
89
+ - Use `## **Task N: [Task Title]**` for each main task with `Purpose`, `Requirements`, `Scope`, and `Out of scope` guardrails.
91
90
  - Use `- N. [ ]` for atomic task items; use `- N.x [ ]` only when a task must be split into additional atomic subtasks.
92
91
  - Treat `tasks.md` as an implementation queue, not a high-level summary.
93
- - Make each checkbox atomic: one verb, one responsibility, one concrete output, and one verification hook.
94
- - For every task, include allowed scope, out-of-scope guardrails, requirement/design/contract inputs, expected output, completion condition, and verification hook.
92
+ - **Every checkbox must specify three things: (a) the exact file path or function, (b) the specific modification to make, and (c) a concrete verification step.** These three are mandatory — no item may omit any of them.
93
+ - Per-item format (compact template):
94
+ - `[file/function]` — `[specific modification; expected outcome]`
95
+ - `- Verify:` — focused command, test reference, or manual inspection
96
+ - Do not add extra sub-fields beyond what the template provides; put all change detail in the inline description.
97
+ - Make each checkbox atomic: one verb, one file/function, one change outcome, and one verification hook.
95
98
  - If one task needs more than three files, more than one behavior slice, or an implementation decision not already captured in `design.md` or `contract.md`, split it before approval.
96
99
  - Use `$test-case-strategy` to define test IDs and unit drift checks for non-trivial local logic before implementation starts.
97
100
  - Include explicit tasks for testing, mocks/fakes, regression coverage, and adversarial or edge-case hardening when relevant.
98
- - Do not write vague tasks such as `Implement integration`, `Add tests`, or `Update docs`; replace them with task-local outputs, test IDs, and verification commands.
101
+ - Vague items such as `Implement integration`, `Add tests`, or `Update docs` are forbidden; replace them with specific file paths, concrete changes, and executable verification commands.
99
102
 
100
103
  ### 5) Fill `contract.md`
101
104
 
@@ -7,59 +7,36 @@
7
7
 
8
8
  Purpose: [one sentence describing the narrow outcome]
9
9
  Requirements: [R1.x]
10
- Allowed scope: [files/modules/functions this task may touch]
10
+ Scope: [files/modules/functions this task may touch]
11
11
  Out of scope: [files/modules/behaviors this task must not change]
12
12
 
13
- - 1. [ ] [Main task item]
14
- - Input: [requirement/design/contract evidence]
15
- - Touches: [specific file/function/module]
16
- - Output: [specific code/doc/test artifact]
17
- - Done when: [observable completion condition]
18
- - Verify with: [focused command/check/manual inspection]
19
- - Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
20
- - Do not: [explicit implementation-drift guardrail]
13
+ - 1. [ ] **[file/function]** **[specific modification to make; expected outcome]**
14
+ - Verify: [focused command/check/manual inspection; drift check ref if applicable]
15
+
16
+ - 2. [ ] **[file/function]** — **[specific modification to make; expected outcome]**
17
+ - Verify: [focused command/check/manual inspection; drift check ref if applicable]
21
18
 
22
19
  ## **Task 2: [Task Title]**
23
20
 
24
21
  Purpose: [one sentence describing the narrow outcome]
25
22
  Requirements: [R2.x]
26
- Allowed scope: [files/modules/functions this task may touch]
23
+ Scope: [files/modules/functions this task may touch]
27
24
  Out of scope: [files/modules/behaviors this task must not change]
28
25
 
29
- - 2. [ ] [Main task item]
30
- - Input: [requirement/design/contract evidence]
31
- - Touches: [specific file/function/module]
32
- - Output: [specific code/doc/test artifact]
33
- - Done when: [observable completion condition]
34
- - Verify with: [focused command/check/manual inspection]
35
- - Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
36
- - Do not: [explicit implementation-drift guardrail]
37
-
38
- ## **Task 3: [Task Title]**
39
-
40
- Purpose: [one sentence describing the narrow outcome]
41
- Requirements: [R3.x]
42
- Allowed scope: [files/modules/functions this task may touch]
43
- Out of scope: [files/modules/behaviors this task must not change]
26
+ - 1. [ ] **[file/function]** **[specific modification to make; expected outcome]**
27
+ - Verify: [focused command/check/manual inspection; drift check ref if applicable]
44
28
 
45
- - 3. [ ] [Main task item]
46
- - Input: [requirement/design/contract evidence]
47
- - Touches: [specific file/function/module]
48
- - Output: [specific code/doc/test artifact]
49
- - Done when: [observable completion condition]
50
- - Verify with: [focused command/check/manual inspection]
51
- - Unit drift check: [UT-xx target unit; expected result/assertion, or N/A with reason]
52
- - Do not: [explicit implementation-drift guardrail]
29
+ - 2. [ ] **[file/function]** **[specific modification to make; expected outcome]**
30
+ - Verify: [focused command/check/manual inspection; drift check ref if applicable]
53
31
 
54
32
  ## Notes
55
- - Task order should reflect actual implementation sequence.
56
- - Every main task must map back to `spec.md` requirement IDs.
57
- - Treat `tasks.md` as an implementation queue, not a high-level work summary.
58
- - Each checkbox must be atomic: one verb, one responsibility, one concrete output, and one verification hook.
59
- - Split any task that needs more than three files, more than one behavior slice, or a design decision not already captured in `design.md` or `contract.md`.
60
- - Use `$test-case-strategy` to define test IDs and unit drift checks before implementation.
61
- - Include explicit tasks for required test coverage (unit, regression, property-based, integration/E2E as applicable), mock scenario setup, and adversarial/edge-case hardening.
62
- - Do not write vague tasks such as `Implement integration`, `Add tests`, or `Update docs`; replace them with task-local outputs, test IDs, and verification commands.
63
- - For batch specs, tasks must never include "wait for Spec X to land first" as a prerequisite; if such a dependency appears, re-slice the plan or move the coordination rule into `coordination.md`.
64
- - After execution, the agent must update each checkbox (`[x]` for done, `[ ]` for not done).
65
- - Remove all placeholder guidance text in square brackets after filling.
33
+ - Task order reflects implementation sequence.
34
+ - Every task must map back to `spec.md` requirement IDs.
35
+ - Treat `tasks.md` as an implementation queue, not a summary.
36
+ - Each item must include the exact file path (or function/module), the specific change, and a concrete verification step — vague items are forbidden.
37
+ - Each checkbox is atomic: one verb, one file/function, one change outcome, one verification hook.
38
+ - Use `N.x [ ]` for sub-items only when a parent item needs further breakdown.
39
+ - Split tasks that exceed 3 files or span multiple behavior slices.
40
+ - Use `$test-case-strategy` for drift checks before implementation.
41
+ - After execution, update `[x]` for done, `[ ]` for pending.
42
+ - Remove all `[...]` placeholder text after filling.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laitszkin/apollo-toolkit",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
4
4
  "description": "Apollo Toolkit npm installer for managed skill copying across Codex, OpenClaw, and Trae.",
5
5
  "license": "MIT",
6
6
  "author": "LaiTszKin",