tracerkit 1.18.1 → 1.18.2
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 +51 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,14 +25,24 @@ Three skills drive the workflow: **define** (`/tk:prd`), **plan** (`/tk:plan`),
|
|
|
25
25
|
|
|
26
26
|
## Get Started
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
<details open>
|
|
29
|
+
<summary><b>Claude Code (recommended)</b></summary>
|
|
30
|
+
|
|
31
|
+
**Marketplace install:**
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
/plugin marketplace add helderberto/tracerkit
|
|
35
|
+
/plugin install tk@tracerkit-marketplace
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
**CLI install:**
|
|
29
39
|
|
|
30
40
|
```bash
|
|
31
41
|
npm install -g tracerkit
|
|
32
42
|
tracerkit init
|
|
33
43
|
```
|
|
34
44
|
|
|
35
|
-
Skills are installed to `~/.claude/skills/`, available in every project. Safe to re-run
|
|
45
|
+
Skills are installed to `~/.claude/skills/`, available in every project. Safe to re-run.
|
|
36
46
|
|
|
37
47
|
<details>
|
|
38
48
|
<summary>Per-project install (team members get skills via git)</summary>
|
|
@@ -45,17 +55,46 @@ tracerkit uninstall . # remove project-scoped skills
|
|
|
45
55
|
|
|
46
56
|
</details>
|
|
47
57
|
|
|
58
|
+
</details>
|
|
59
|
+
|
|
48
60
|
<details>
|
|
49
|
-
<summary>
|
|
61
|
+
<summary><b>Cursor</b></summary>
|
|
50
62
|
|
|
51
|
-
|
|
63
|
+
Copy skills into `.cursor/rules/`, or use Notepads for on-demand context. See [docs/cursor-setup.md](docs/cursor-setup.md).
|
|
52
64
|
|
|
65
|
+
</details>
|
|
66
|
+
|
|
67
|
+
<details>
|
|
68
|
+
<summary><b>Gemini CLI</b></summary>
|
|
69
|
+
|
|
70
|
+
Install as native skills for auto-discovery:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
gemini skills install https://github.com/helderberto/tracerkit.git --path skills
|
|
53
74
|
```
|
|
54
|
-
/plugin marketplace add helderberto/tracerkit
|
|
55
|
-
/plugin install tk@tracerkit-marketplace
|
|
56
|
-
```
|
|
57
75
|
|
|
58
|
-
|
|
76
|
+
Or add to `GEMINI.md` for persistent context. See [docs/gemini-cli-setup.md](docs/gemini-cli-setup.md).
|
|
77
|
+
|
|
78
|
+
</details>
|
|
79
|
+
|
|
80
|
+
<details>
|
|
81
|
+
<summary><b>GitHub Copilot</b></summary>
|
|
82
|
+
|
|
83
|
+
Copy skills to `.github/skills/` or add workflow rules to `.github/copilot-instructions.md`. See [docs/copilot-setup.md](docs/copilot-setup.md).
|
|
84
|
+
|
|
85
|
+
</details>
|
|
86
|
+
|
|
87
|
+
<details>
|
|
88
|
+
<summary><b>OpenCode</b></summary>
|
|
89
|
+
|
|
90
|
+
Uses agent-driven skill execution via `AGENTS.md`. See [docs/opencode-setup.md](docs/opencode-setup.md).
|
|
91
|
+
|
|
92
|
+
</details>
|
|
93
|
+
|
|
94
|
+
<details>
|
|
95
|
+
<summary><b>Other agents</b></summary>
|
|
96
|
+
|
|
97
|
+
Skills are plain Markdown with YAML frontmatter — they work with any agent that accepts instruction files. Clone the repo and point your agent at the `skills/` directory.
|
|
59
98
|
|
|
60
99
|
</details>
|
|
61
100
|
|
|
@@ -131,6 +170,10 @@ Direction is inferred from the current `storage` config. All artifacts are migra
|
|
|
131
170
|
| [Configuration](docs/configuration.md) | Storage backends, GitHub options, custom paths |
|
|
132
171
|
| [Metadata Lifecycle](docs/metadata-lifecycle.md) | Understand YAML frontmatter states and transitions |
|
|
133
172
|
| [Comparison](docs/comparison.md) | Compare TracerKit to Spec Kit, Kiro, and OpenSpec |
|
|
173
|
+
| [Cursor Setup](docs/cursor-setup.md) | Use TracerKit skills in Cursor |
|
|
174
|
+
| [Gemini CLI Setup](docs/gemini-cli-setup.md) | Use TracerKit skills in Gemini CLI |
|
|
175
|
+
| [Copilot Setup](docs/copilot-setup.md) | Use TracerKit skills in GitHub Copilot |
|
|
176
|
+
| [OpenCode Setup](docs/opencode-setup.md) | Use TracerKit skills in OpenCode |
|
|
134
177
|
|
|
135
178
|
## Contributing
|
|
136
179
|
|