@laitszkin/apollo-toolkit 3.6.3 → 3.6.5
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 +11 -0
- package/analyse-app-logs/scripts/__pycache__/filter_logs_by_time.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/log_cli_utils.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/search_logs.cpython-312.pyc +0 -0
- package/docs-to-voice/scripts/__pycache__/docs_to_voice.cpython-312.pyc +0 -0
- package/generate-spec/SKILL.md +8 -5
- package/generate-spec/references/templates/tasks.md +21 -44
- package/generate-spec/scripts/__pycache__/create-specscpython-312.pyc +0 -0
- package/katex/scripts/__pycache__/render_katex.cpython-312.pyc +0 -0
- package/open-github-issue/scripts/__pycache__/open_github_issue.cpython-312.pyc +0 -0
- package/package.json +1 -1
- package/read-github-issue/scripts/__pycache__/find_issues.cpython-312.pyc +0 -0
- package/read-github-issue/scripts/__pycache__/read_issue.cpython-312.pyc +0 -0
- package/resolve-review-comments/scripts/__pycache__/review_threads.cpython-312.pyc +0 -0
- package/text-to-short-video/scripts/__pycache__/enforce_video_aspect_ratio.cpython-312.pyc +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ All notable changes to this repository are documented in this file.
|
|
|
7
7
|
### Added
|
|
8
8
|
- (None yet)
|
|
9
9
|
|
|
10
|
+
## [v3.6.5] - 2026-04-29
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Synchronize `package-lock.json` version with release
|
|
14
|
+
- Fix template assertion test to match the simplified tasks.md format
|
|
15
|
+
|
|
16
|
+
## [v3.6.4] - 2026-04-29
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- 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
|
|
20
|
+
|
|
10
21
|
## [v3.6.3] - 2026-04-28
|
|
11
22
|
|
|
12
23
|
### Changed
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/generate-spec/SKILL.md
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
|
-
-
|
|
94
|
-
-
|
|
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
|
-
-
|
|
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
|
-
|
|
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. [ ] [
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
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
|
-
|
|
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
|
-
-
|
|
30
|
-
-
|
|
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
|
-
-
|
|
46
|
-
-
|
|
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
|
|
56
|
-
- Every
|
|
57
|
-
- Treat `tasks.md` as an implementation queue, not a
|
|
58
|
-
- Each
|
|
59
|
-
-
|
|
60
|
-
- Use
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
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.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|