mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-03 21:23:10 +08:00
Claude Code automatically loads hooks/hooks.json from the plugin directory. Explicitly specifying it in plugin.json causes a duplicate hooks error: Duplicate hooks file detected: ./hooks/hooks.json resolves to already-loaded file .../hooks/hooks.json. The standard hooks/hooks.json is loaded automatically, so manifest.hooks should only reference additional hook files. Fixes #29
29 lines
776 B
JSON
29 lines
776 B
JSON
{
|
|
"name": "everything-claude-code",
|
|
"version": "1.0.0",
|
|
"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"
|
|
}
|