tracerkit 1.3.5 → 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.
- package/README.md +6 -2
- package/dist/bin.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
# TracerKit
|
|
4
4
|
|
|
5
|
-
<img src="./tracerkit.png" alt="TracerKit" width="100%" />
|
|
6
|
-
|
|
7
5
|
[](https://github.com/helderberto/tracerkit/actions/workflows/ci.yml)
|
|
8
6
|
[](https://www.npmjs.com/package/tracerkit)
|
|
9
7
|
[](https://opensource.org/licenses/MIT)
|
|
10
8
|
|
|
9
|
+
<br />
|
|
10
|
+
|
|
11
|
+
<img src="./tracerkit.png" alt="TracerKit" width="640" />
|
|
12
|
+
|
|
13
|
+
<br />
|
|
14
|
+
|
|
11
15
|
Spec-driven workflow for Claude Code: from idea to product requirements to executable plan.
|
|
12
16
|
|
|
13
17
|
**Zero runtime dependencies** — pure Markdown skills, no build step.
|
package/dist/bin.js
CHANGED
|
@@ -24,13 +24,13 @@ 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.3.
|
|
27
|
+
if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.6"];
|
|
28
28
|
let i = r[0], s = r.slice(1);
|
|
29
29
|
switch (i) {
|
|
30
30
|
case "init": return t(o(s));
|
|
31
31
|
case "update": {
|
|
32
32
|
let t = s.includes("--force"), n = e(o(s.filter((e) => e !== "--force")), { force: t });
|
|
33
|
-
return n.push("", "Updated to tracerkit/1.3.
|
|
33
|
+
return n.push("", "Updated to tracerkit/1.3.6"), n.push("If using Claude Code, restart your session to load changes."), n;
|
|
34
34
|
}
|
|
35
35
|
case "uninstall": return n(o(s));
|
|
36
36
|
default: return a;
|