Fix for when CLAUDE_PLUGIN_ROOT contains spaces (#169)

* Fix for when CLAUDE_PLUGIN_ROOT contains spaces

* chore(skill-improver): bump version to 1.0.2 for hooks.json fix

The space-quoting fix to hooks.json is a behavioral change, but clients
only pull plugin updates when the version increases. Bump plugin.json and
the root marketplace.json from 1.0.1 to 1.0.2 (kept in sync) so existing
users actually receive the fix.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Dan Guido <dan@trailofbits.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Tim Lander
2026-05-28 03:53:26 +08:00
committed by GitHub
parent 98b01ec8ff
commit c94841be3d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -365,7 +365,7 @@
},
{
"name": "skill-improver",
"version": "1.0.1",
"version": "1.0.2",
"description": "Automatically reviews and fixes Claude Code skills through iterative refinement until they meet quality standards. Requires plugin-dev plugin.",
"author": {
"name": "Paweł Płatek",
@@ -1,6 +1,6 @@
{
"name": "skill-improver",
"version": "1.0.1",
"version": "1.0.2",
"description": "Automatically reviews and fixes Claude Code skills through iterative refinement until they meet quality standards. Requires plugin-dev plugin.",
"author": {
"name": "Paweł Płatek",
+1 -1
View File
@@ -6,7 +6,7 @@
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/stop-hook.sh",
"command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/stop-hook.sh\"",
"timeout": 30
}
]