mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
feat: unify commands and skills (v1.2.0)
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
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "everything-claude-code",
|
"name": "everything-claude-code",
|
||||||
"version": "1.0.0",
|
"version": "1.2.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",
|
"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": {
|
"author": {
|
||||||
"name": "Affaan Mustafa",
|
"name": "Affaan Mustafa",
|
||||||
"url": "https://x.com/affaanmustafa"
|
"url": "https://x.com/affaanmustafa"
|
||||||
@@ -14,7 +14,6 @@
|
|||||||
"agents",
|
"agents",
|
||||||
"skills",
|
"skills",
|
||||||
"hooks",
|
"hooks",
|
||||||
"commands",
|
|
||||||
"rules",
|
"rules",
|
||||||
"tdd",
|
"tdd",
|
||||||
"code-review",
|
"code-review",
|
||||||
@@ -23,8 +22,7 @@
|
|||||||
"automation",
|
"automation",
|
||||||
"best-practices"
|
"best-practices"
|
||||||
],
|
],
|
||||||
"commands": ["./commands/"],
|
"skills": ["./skills/", "./commands/"],
|
||||||
"skills": ["./skills/"],
|
|
||||||
"agents": [
|
"agents": [
|
||||||
"./agents/architect.md",
|
"./agents/architect.md",
|
||||||
"./agents/build-error-resolver.md",
|
"./agents/build-error-resolver.md",
|
||||||
|
|||||||
Reference in New Issue
Block a user