plumbbob 0.4.2 → 0.4.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/.claude-plugin/plugin.json +1 -1
- package/README.md +5 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plumbbob",
|
|
3
3
|
"displayName": "Plumbbob",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.4",
|
|
5
5
|
"description": "Attention-first build process — driver skills + a CLI that keep you the decider; guidance, not enforcement.",
|
|
6
6
|
"author": { "name": "Rob McLarty", "email": "hello@robmclarty.com", "url": "https://robmclarty.com" },
|
|
7
7
|
"homepage": "https://github.com/robmclarty/plumbbob#readme",
|
package/README.md
CHANGED
|
@@ -199,8 +199,11 @@ plumbbob init # link it into Claude Code; --uninstall to undo
|
|
|
199
199
|
```
|
|
200
200
|
|
|
201
201
|
`init` symlinks the package into `~/.claude/skills/plumbbob`, where Claude Code
|
|
202
|
-
loads it as a plugin
|
|
203
|
-
|
|
202
|
+
loads it as a plugin. Claude Code namespaces a plugin's skills as
|
|
203
|
+
`/plumbbob:<skill>`, so they appear as `/plumbbob:plan`, `/plumbbob:status`, and the
|
|
204
|
+
rest — already clear of built-in and other-plugin commands, no prefix needed. The
|
|
205
|
+
post-edit hook auto-registers from `hooks.json`.
|
|
206
|
+
Nothing else under `~` is touched
|
|
204
207
|
and `settings.json` is left alone — restart Claude Code (or `/reload-plugins`) to
|
|
205
208
|
activate. Because it's a symlink, a later `npm i -g plumbbob@latest` stays live with
|
|
206
209
|
no re-link.
|