mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-07 07:03:14 +08:00
- feat(plugin.json): add agents declaration to make 9 agents visible in /agents command (fixes #66, closes PR #67) - fix(backend-patterns): correct requirePermission HOF pattern to properly wrap handlers instead of expecting Request directly (fixes #54, closes PR #63) - docs(user-CLAUDE): add privacy guideline about redacting secrets from logs before sharing (fixes #38, closes PR #39) - fix(eval-harness): add mandatory frontmatter with name, description, and tools fields (closes PR #58)
29 lines
778 B
JSON
29 lines
778 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"
|
|
],
|
|
"agents": "./agents",
|
|
"commands": "./commands",
|
|
"skills": "./skills"
|
|
}
|