@pilotspace/add 1.0.0 → 1.1.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.
- package/CHANGELOG.md +48 -0
- package/GETTING-STARTED.md +66 -4
- package/README.md +2 -2
- package/bin/cli.js +27 -35
- package/docs/02-the-flow.md +9 -6
- package/docs/04-step-2-scenarios.md +2 -0
- package/docs/05-step-3-contract.md +2 -0
- package/docs/06-step-4-tests.md +2 -0
- package/docs/08-step-6-verify.md +11 -2
- package/docs/09-the-loop.md +18 -0
- package/docs/10-setup-and-stages.md +36 -7
- package/docs/13-adoption.md +2 -2
- package/docs/14-foundation.md +12 -4
- package/docs/appendix-f-requirements-matrix.md +5 -4
- package/package.json +5 -3
- package/skill/add/SKILL.md +40 -13
- package/skill/add/adopt.md +65 -0
- package/skill/add/deltas.md +12 -2
- package/skill/add/phases/0-setup.md +87 -24
- package/skill/add/phases/3-contract.md +16 -0
- package/skill/add/phases/4-tests.md +14 -0
- package/skill/add/phases/5-build.md +3 -0
- package/skill/add/phases/6-verify.md +15 -3
- package/skill/add/report-template.md +48 -0
- package/skill/add/run.md +11 -3
- package/skill/add/scope.md +18 -0
- package/skill/add/setup-review.md +62 -0
- package/skill/add/streams.md +206 -0
- package/tooling/add.py +940 -56
- package/tooling/templates/TASK.md.tmpl +7 -0
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
slug: {{slug}} · created: {{date}} · stage: {{stage}}
|
|
4
4
|
phase: specify <!-- specify -> scenarios -> contract -> tests -> build -> verify -> observe -> done -->
|
|
5
|
+
<!-- high-risk/method-defining scope? declare `risk: high` on the slug line above and lower
|
|
6
|
+
the dial with `autonomy: conservative` — the engine refuses an unguarded completion
|
|
7
|
+
(`unguarded_high_risk_auto`, run.md guard). A comment is never a declaration. -->
|
|
5
8
|
|
|
6
9
|
> One file = one task. Fill sections top-to-bottom; the `add` skill drives each phase.
|
|
7
10
|
> When a phase is unclear, read its book chapter in `.add/docs/` (linked per section).
|
|
@@ -66,6 +69,10 @@ Plan (one test per scenario, asserting behavior not internals):
|
|
|
66
69
|
- test_<scenario>: arrange <Given> / act <When> / assert <Then> + assert <unchanged>
|
|
67
70
|
|
|
68
71
|
Tests live in: `./tests/` · MUST run red (missing implementation) before Build.
|
|
72
|
+
<!-- declare paths as backticked tokens on this line: `./…` = this task dir ·
|
|
73
|
+
a token with "/" = project root · a bare name = sibling of the previous
|
|
74
|
+
token's dir · a directory counts its *.py files (non-recursive); reports
|
|
75
|
+
mark declared counts with † · anything resolving outside the project root counts 0 -->
|
|
69
76
|
|
|
70
77
|
<!-- EXIT: one test per scenario; suite red for the RIGHT reason; target recorded. -->
|
|
71
78
|
|