mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-11 00:43:10 +08:00
Previously hooks were not loaded when the plugin was installed because plugin.json didn't declare the hooks path. This caused errors like: "Stop hook error: .../skills/continuous-learning/evaluate-session.sh: No such file" The hooks are defined in hooks/hooks.json and use JS implementations in scripts/hooks/ directory.
29 lines
787 B
JSON
29 lines
787 B
JSON
{
|
|
"name": "everything-claude-code",
|
|
"description": "Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, commands, and rules evolved over 10+ months of intensive daily use",
|
|
"author": {
|
|
"name": "Affaan Mustafa",
|
|
"url": "https://x.com/affaanmustafa"
|
|
},
|
|
"homepage": "https://github.com/affaan-m/everything-claude-code",
|
|
"repository": "https://github.com/affaan-m/everything-claude-code",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"claude-code",
|
|
"agents",
|
|
"skills",
|
|
"hooks",
|
|
"commands",
|
|
"rules",
|
|
"tdd",
|
|
"code-review",
|
|
"security",
|
|
"workflow",
|
|
"automation",
|
|
"best-practices"
|
|
],
|
|
"commands": "./commands",
|
|
"skills": "./skills",
|
|
"hooks": "./hooks/hooks.json"
|
|
}
|