tracerkit 1.4.0 → 1.4.1

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 (3) hide show
  1. package/README.md +3 -12
  2. package/dist/bin.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -186,8 +186,7 @@ AI: Feature Status Dashboard
186
186
 
187
187
  All commands default to the home directory. Pass a path to target a specific project.
188
188
 
189
- <details>
190
- <summary>Configuration</summary>
189
+ ## Configuration
191
190
 
192
191
  Artifacts are stored under `.tracerkit/` by default. To customize paths, create `.tracerkit/config.json`:
193
192
 
@@ -203,10 +202,7 @@ Artifacts are stored under `.tracerkit/` by default. To customize paths, create
203
202
 
204
203
  Any missing key falls back to its default. The file is optional — without it, all defaults apply. After changing config, run `tracerkit update` to regenerate skills with the new paths.
205
204
 
206
- </details>
207
-
208
- <details>
209
- <summary>Metadata Lifecycle</summary>
205
+ ## Metadata Lifecycle
210
206
 
211
207
  Each PRD carries YAML frontmatter that tracks its position in the workflow. The skills update it automatically — you never need to edit it by hand.
212
208
 
@@ -257,10 +253,7 @@ completed: 2025-06-20T09:00:00Z
257
253
 
258
254
  </details>
259
255
 
260
- </details>
261
-
262
- <details>
263
- <summary>Compared to</summary>
256
+ ## Compared to
264
257
 
265
258
  **vs. [Spec Kit](https://github.com/github/spec-kit)** (GitHub) — Thorough but heavyweight. 5 phases, Python setup, rigid phase gates. TracerKit is 3 phases, zero deps, automated verification.
266
259
 
@@ -285,8 +278,6 @@ completed: 2025-06-20T09:00:00Z
285
278
 
286
279
  </details>
287
280
 
288
- </details>
289
-
290
281
  ## Contributing
291
282
 
292
283
  1. Fork the repo and create a feature branch
package/dist/bin.js CHANGED
@@ -24,7 +24,7 @@ function o(e) {
24
24
  }
25
25
  function s(r) {
26
26
  if (r.includes("--help") || r.includes("-h")) return a;
27
- if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.4.0"];
27
+ if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.4.1"];
28
28
  let i = r[0], s = r.slice(1);
29
29
  switch (i) {
30
30
  case "init": return t(o(s));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tracerkit",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Spec-driven workflow for Claude Code: replace ad-hoc prompts with PRD → plan → verify.",
5
5
  "license": "MIT",
6
6
  "author": {