tracerkit 1.3.4 → 1.3.6

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 +8 -1
  2. package/dist/bin.js +13 -11
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -6,6 +6,12 @@
6
6
  [![npm version](https://img.shields.io/npm/v/tracerkit)](https://www.npmjs.com/package/tracerkit)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
8
 
9
+ <br />
10
+
11
+ <img src="./tracerkit.png" alt="TracerKit" width="640" />
12
+
13
+ <br />
14
+
9
15
  Spec-driven workflow for Claude Code: from idea to product requirements to executable plan.
10
16
 
11
17
  **Zero runtime dependencies** — pure Markdown skills, no build step.
@@ -42,8 +48,9 @@ Open Claude Code in any project and start using:
42
48
  | `tracerkit update --force` | Replace modified files with latest versions |
43
49
  | `tracerkit uninstall` | Remove TracerKit skills, keep user artifacts |
44
50
  | `tracerkit --version` | Print version |
51
+ | `tracerkit --help` | Show help message |
45
52
 
46
- All commands default to the home directory. Pass a path or use `--global` explicitly to target `~/`.
53
+ All commands default to the home directory. Pass a path to target a specific project.
47
54
 
48
55
  <details>
49
56
  <summary>Per-project usage</summary>
package/dist/bin.js CHANGED
@@ -7,28 +7,30 @@ var a = [
7
7
  "Usage: tracerkit <command> [path]",
8
8
  "",
9
9
  "Commands:",
10
- " init [path] Install skills (default: home directory)",
11
- " update [path] Refresh files from latest version, skip modified files",
12
- " uninstall [path] Remove TracerKit skills, keep user artifacts",
10
+ " init [path] Install skills to ~/.claude/skills/ (or [path] if given)",
11
+ " update [path] Refresh unchanged files from latest version, skip modified",
12
+ " uninstall [path] Remove TracerKit skill directories, keep prds/ and plans/",
13
13
  "",
14
14
  "Options:",
15
- " --force Replace modified files with latest versions",
16
- " --global Target home directory instead of current directory",
17
- " --version, -v Print version"
15
+ " --force Overwrite modified files during update",
16
+ " --help, -h Show this help message",
17
+ " --version, -v Print version",
18
+ "",
19
+ "All commands default to the home directory when no path is given."
18
20
  ];
19
21
  function o(e) {
20
- let t = e.includes("--global"), n = e.find((e) => !e.startsWith("-"));
21
- if (t && n) throw Error("Cannot use --global with a path argument");
22
- return t ? i() : n ? r(n) : i();
22
+ let t = e.find((e) => !e.startsWith("-"));
23
+ return t ? r(t) : i();
23
24
  }
24
25
  function s(r) {
25
- if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.4"];
26
+ if (r.includes("--help") || r.includes("-h")) return a;
27
+ if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.6"];
26
28
  let i = r[0], s = r.slice(1);
27
29
  switch (i) {
28
30
  case "init": return t(o(s));
29
31
  case "update": {
30
32
  let t = s.includes("--force"), n = e(o(s.filter((e) => e !== "--force")), { force: t });
31
- return n.push("", "Updated to tracerkit/1.3.4"), n.push("If using Claude Code, restart your session to load changes."), n;
33
+ return n.push("", "Updated to tracerkit/1.3.6"), n.push("If using Claude Code, restart your session to load changes."), n;
32
34
  }
33
35
  case "uninstall": return n(o(s));
34
36
  default: return a;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tracerkit",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "Stack-agnostic spec-driven workflow for AI coding assistants",
5
5
  "license": "MIT",
6
6
  "author": {