Relative paths (./hooks/error-capture.sh) resolve against the project
working directory, not the plugin root. Replaced with
${CLAUDE_PLUGIN_ROOT}/hooks/error-capture.sh in both hooks.json and
settings.json.
Fixes #392
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
820 B
JSON
29 lines
820 B
JSON
{
|
|
"name": "self-improving-agent",
|
|
"displayName": "Self-Improving Agent",
|
|
"version": "1.0.0",
|
|
"description": "Curate auto-memory, promote learnings to rules, extract skills from patterns.",
|
|
"author": "Reza Rezvani",
|
|
"license": "MIT",
|
|
"platforms": ["claude-code", "openclaw", "codex"],
|
|
"category": "development",
|
|
"tags": ["memory", "auto-memory", "self-improvement", "learning", "rules", "skills"],
|
|
"repository": "https://github.com/alirezarezvani/claude-skills",
|
|
"commands": {
|
|
"review": "/si:review",
|
|
"promote": "/si:promote",
|
|
"extract": "/si:extract",
|
|
"status": "/si:status",
|
|
"remember": "/si:remember"
|
|
},
|
|
"hooks": {
|
|
"PostToolUse": {
|
|
"Bash": "${CLAUDE_PLUGIN_ROOT}/hooks/error-capture.sh"
|
|
}
|
|
},
|
|
"agents": [
|
|
"memory-analyst",
|
|
"skill-extractor"
|
|
]
|
|
}
|