@sma1lboy/kobe 0.5.26 → 0.5.28
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 +12 -5
- package/dist/cli/index.js +1875 -1263
- package/package.json +1 -1
- package/dist/share/skills/kobe/SKILL.md +0 -109
package/README.md
CHANGED
|
@@ -253,16 +253,19 @@ If the daemon isn't running, `kobe api ...` exits 2 with
|
|
|
253
253
|
|
|
254
254
|
### Install the agent skill
|
|
255
255
|
|
|
256
|
-
`kobe api` gives the *capability*. The
|
|
256
|
+
`kobe api` gives the *capability*. The SKILL.md gives the model the
|
|
257
257
|
*intent* — when to fan out, how to scope subtask prompts, how to read results
|
|
258
|
-
back. Install it
|
|
258
|
+
back. Install it via the [Vercel Labs agent-skills CLI](https://github.com/vercel-labs/skills):
|
|
259
259
|
|
|
260
260
|
```bash
|
|
261
|
-
kobe skill
|
|
262
|
-
kobe skill install --yes # overwrite an existing copy
|
|
263
|
-
kobe skill uninstall # remove it
|
|
261
|
+
npx skills add Sma1lboy/kobe --skill kobe --agent claude-code
|
|
264
262
|
```
|
|
265
263
|
|
|
264
|
+
The skill source lives at `.agents/skills/kobe/SKILL.md` in this repo,
|
|
265
|
+
which is one of the directories `npx skills` scans by default. The
|
|
266
|
+
agent-skills CLI fetches it directly from GitHub and writes it to
|
|
267
|
+
`~/.claude/skills/kobe/SKILL.md`.
|
|
268
|
+
|
|
266
269
|
After install, Claude Code automatically picks up the skill on its next launch.
|
|
267
270
|
For project-level overrides, copy the file to `<repo>/.claude/skills/kobe/SKILL.md`
|
|
268
271
|
and customise — Claude Code's discovery order is project > user > none.
|
|
@@ -270,6 +273,10 @@ and customise — Claude Code's discovery order is project > user > none.
|
|
|
270
273
|
`kobe diagnose` reports whether the skill is installed, which is the
|
|
271
274
|
fastest way to confirm.
|
|
272
275
|
|
|
276
|
+
> `kobe skill install` is deprecated as of v0.6 — use the `npx skills`
|
|
277
|
+
> command above. `kobe skill uninstall` still works for cleaning up an
|
|
278
|
+
> older copy.
|
|
279
|
+
|
|
273
280
|
## Coming later
|
|
274
281
|
|
|
275
282
|
- Homebrew tap (mirroring [`sma1lboy/homebrew-codefox`](https://github.com/sma1lboy/homebrew-codefox)) so you can `brew install kobe` without touching Bun directly.
|