tracerkit 1.3.2 → 1.3.4
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/README.md +1 -1
- package/dist/bin.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://www.npmjs.com/package/tracerkit)
|
|
7
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Spec-driven workflow for Claude Code: from idea to product requirements to executable plan.
|
|
10
10
|
|
|
11
11
|
**Zero runtime dependencies** — pure Markdown skills, no build step.
|
|
12
12
|
|
package/dist/bin.js
CHANGED
|
@@ -7,7 +7,7 @@ var a = [
|
|
|
7
7
|
"Usage: tracerkit <command> [path]",
|
|
8
8
|
"",
|
|
9
9
|
"Commands:",
|
|
10
|
-
" init [path] Install skills (default:
|
|
10
|
+
" init [path] Install skills (default: home directory)",
|
|
11
11
|
" update [path] Refresh files from latest version, skip modified files",
|
|
12
12
|
" uninstall [path] Remove TracerKit skills, keep user artifacts",
|
|
13
13
|
"",
|
|
@@ -19,16 +19,16 @@ var a = [
|
|
|
19
19
|
function o(e) {
|
|
20
20
|
let t = e.includes("--global"), n = e.find((e) => !e.startsWith("-"));
|
|
21
21
|
if (t && n) throw Error("Cannot use --global with a path argument");
|
|
22
|
-
return t ? i() : n ? r(n) :
|
|
22
|
+
return t ? i() : n ? r(n) : i();
|
|
23
23
|
}
|
|
24
24
|
function s(r) {
|
|
25
|
-
if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.
|
|
25
|
+
if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.4"];
|
|
26
26
|
let i = r[0], s = r.slice(1);
|
|
27
27
|
switch (i) {
|
|
28
28
|
case "init": return t(o(s));
|
|
29
29
|
case "update": {
|
|
30
30
|
let t = s.includes("--force"), n = e(o(s.filter((e) => e !== "--force")), { force: t });
|
|
31
|
-
return n.push("", "Updated to tracerkit/1.3.
|
|
31
|
+
return n.push("", "Updated to tracerkit/1.3.4"), n.push("If using Claude Code, restart your session to load changes."), n;
|
|
32
32
|
}
|
|
33
33
|
case "uninstall": return n(o(s));
|
|
34
34
|
default: return a;
|