mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-08 23:43:07 +08:00
BREAKING: Commands are now loaded as skills per Claude Code's unified architecture. Changes: - Removed separate `commands` field from plugin.json - Added `./commands/` to `skills` array - Bumped version to 1.2.0 - Updated description to reflect unified structure This aligns with Claude Code's documentation which has merged skills and slash commands into a single concept. Both directories are now loaded as skills, maintaining backwards compatibility. Closes #111
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "everything-claude-code",
|
|
"version": "1.2.0",
|
|
"description": "Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, 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",
|
|
"rules",
|
|
"tdd",
|
|
"code-review",
|
|
"security",
|
|
"workflow",
|
|
"automation",
|
|
"best-practices"
|
|
],
|
|
"skills": ["./skills/", "./commands/"],
|
|
"agents": [
|
|
"./agents/architect.md",
|
|
"./agents/build-error-resolver.md",
|
|
"./agents/code-reviewer.md",
|
|
"./agents/database-reviewer.md",
|
|
"./agents/doc-updater.md",
|
|
"./agents/e2e-runner.md",
|
|
"./agents/go-build-resolver.md",
|
|
"./agents/go-reviewer.md",
|
|
"./agents/planner.md",
|
|
"./agents/refactor-cleaner.md",
|
|
"./agents/security-reviewer.md",
|
|
"./agents/tdd-guide.md"
|
|
]
|
|
}
|