@imix-js/taproot 0.3.0 → 0.4.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/dist/adapters/index.d.ts +11 -1
- package/dist/adapters/index.js +113 -1
- package/dist/adapters/index.js.map +1 -1
- package/dist/commands/dod.d.ts +1 -0
- package/dist/commands/dod.js +24 -2
- package/dist/commands/dod.js.map +1 -1
- package/dist/commands/init.js +7 -1
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/update.js +22 -5
- package/dist/commands/update.js.map +1 -1
- package/dist/core/configuration.js +25 -0
- package/dist/core/configuration.js.map +1 -1
- package/dist/core/dod-runner.d.ts +4 -2
- package/dist/core/dod-runner.js +30 -1
- package/dist/core/dod-runner.js.map +1 -1
- package/dist/core/test-cache.d.ts +39 -0
- package/dist/core/test-cache.js +187 -0
- package/dist/core/test-cache.js.map +1 -0
- package/dist/validators/types.d.ts +4 -0
- package/docs/agents.md +11 -0
- package/docs/cli.md +3 -1
- package/docs/configuration.md +45 -1
- package/docs/patterns.md +43 -0
- package/package.json +1 -1
- package/skills/backlog.md +7 -3
- package/skills/bug.md +13 -0
- package/skills/commit.md +14 -1
- package/skills/grill-me.md +1 -0
- package/skills/guide.md +1 -0
- package/skills/implement.md +19 -1
- package/skills/review-all.md +1 -1
- package/skills/review.md +1 -0
- package/skills/status.md +3 -2
package/skills/review-all.md
CHANGED
|
@@ -73,7 +73,7 @@ Run a comprehensive review of an entire subtree — an intent and all its descen
|
|
|
73
73
|
**What's next?**
|
|
74
74
|
[A] `/tr-refine <highest-priority-path>` — fix the top-priority finding
|
|
75
75
|
[B] `/tr-plan` — surface the next implementable behaviour
|
|
76
|
-
[C] `/tr-
|
|
76
|
+
[C] `/tr-backlog <finding>` — capture a deferred finding before routing it to the hierarchy
|
|
77
77
|
|
|
78
78
|
## Output
|
|
79
79
|
|
package/skills/review.md
CHANGED
|
@@ -60,6 +60,7 @@ Stress-test a single Taproot artifact — an `intent.md`, `usecase.md`, or `impl
|
|
|
60
60
|
**What's next?**
|
|
61
61
|
[A] `/tr-refine <path>` — apply the findings to the spec
|
|
62
62
|
[B] `/tr-implement <path>/` — spec is clean; proceed to implementation
|
|
63
|
+
[C] `/tr-backlog <finding>` — capture an out-of-scope issue for later without routing it now
|
|
63
64
|
|
|
64
65
|
## Output
|
|
65
66
|
|
package/skills/status.md
CHANGED
|
@@ -78,12 +78,13 @@ Generated: <date>
|
|
|
78
78
|
[B] `/tr-refine taproot/<intent>/<behaviour>/` — add missing tests
|
|
79
79
|
[C] `/tr-plan` — pick a different next item
|
|
80
80
|
|
|
81
|
-
- **If no specific items were found** (healthy project):
|
|
81
|
+
- **If no specific items were found** (healthy project): check whether `.taproot/backlog.md` exists and contains items. Show the generic fallback menu:
|
|
82
82
|
|
|
83
83
|
**What's next?**
|
|
84
84
|
[A] `/tr-plan` — pick the next behaviour to implement
|
|
85
|
-
[B] `/tr-ineed` —
|
|
85
|
+
[B] `/tr-ineed` — route a new requirement into the hierarchy
|
|
86
86
|
[C] `/tr-review-all` — deeper semantic review of specs
|
|
87
|
+
[D] `/tr-backlog` — triage captured ideas (only if `.taproot/backlog.md` is non-empty)
|
|
87
88
|
|
|
88
89
|
## Output
|
|
89
90
|
|