tracerkit 1.3.2 → 1.3.3
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 +10 -9
- package/dist/bin.js +4 -3
- 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
|
|
|
@@ -34,14 +34,15 @@ Open Claude Code in any project and start using:
|
|
|
34
34
|
|
|
35
35
|
### 3. CLI Reference
|
|
36
36
|
|
|
37
|
-
| Command
|
|
38
|
-
|
|
|
39
|
-
| `tracerkit init`
|
|
40
|
-
| `tracerkit init <path>`
|
|
41
|
-
| `tracerkit update`
|
|
42
|
-
| `tracerkit update --force`
|
|
43
|
-
| `tracerkit
|
|
44
|
-
| `tracerkit
|
|
37
|
+
| Command | Description |
|
|
38
|
+
| ------------------------------ | ---------------------------------------------- |
|
|
39
|
+
| `tracerkit init` | Install skills to `~/.claude/skills/` |
|
|
40
|
+
| `tracerkit init <path>` | Install skills to a specific project directory |
|
|
41
|
+
| `tracerkit update` | Refresh to latest version, skip modified files |
|
|
42
|
+
| `tracerkit update --force` | Replace modified files with latest versions |
|
|
43
|
+
| `tracerkit update --overwrite` | Alias for `--force` (avoids npx flag conflict) |
|
|
44
|
+
| `tracerkit uninstall` | Remove TracerKit skills, keep user artifacts |
|
|
45
|
+
| `tracerkit --version` | Print version |
|
|
45
46
|
|
|
46
47
|
All commands default to the home directory. Pass a path or use `--global` explicitly to target `~/`.
|
|
47
48
|
|
package/dist/bin.js
CHANGED
|
@@ -13,6 +13,7 @@ var a = [
|
|
|
13
13
|
"",
|
|
14
14
|
"Options:",
|
|
15
15
|
" --force Replace modified files with latest versions",
|
|
16
|
+
" --overwrite Alias for --force (avoids npx flag conflict)",
|
|
16
17
|
" --global Target home directory instead of current directory",
|
|
17
18
|
" --version, -v Print version"
|
|
18
19
|
];
|
|
@@ -22,13 +23,13 @@ function o(e) {
|
|
|
22
23
|
return t ? i() : n ? r(n) : process.cwd();
|
|
23
24
|
}
|
|
24
25
|
function s(r) {
|
|
25
|
-
if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.
|
|
26
|
+
if (r.includes("--version") || r.includes("-v")) return ["tracerkit/1.3.3"];
|
|
26
27
|
let i = r[0], s = r.slice(1);
|
|
27
28
|
switch (i) {
|
|
28
29
|
case "init": return t(o(s));
|
|
29
30
|
case "update": {
|
|
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
|
+
let t = s.includes("--force") || s.includes("--overwrite"), n = e(o(s.filter((e) => e !== "--force" && e !== "--overwrite")), { force: t });
|
|
32
|
+
return n.push("", "Updated to tracerkit/1.3.3"), n.push("If using Claude Code, restart your session to load changes."), n;
|
|
32
33
|
}
|
|
33
34
|
case "uninstall": return n(o(s));
|
|
34
35
|
default: return a;
|