From 779085e272928e458e2342930cc5e17e3d6481c5 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Mon, 26 Jan 2026 20:00:20 -0800 Subject: [PATCH] fix: add missing agents and hooks declarations to plugin.json - Added agents field pointing to ./agents directory (10 agents) - Added hooks field pointing to ./hooks/hooks.json - These were supported but not declared, potentially causing agents not to load when installed as a plugin Addresses part of #88 (rules still need manual install per upstream limitation - filed anthropics/claude-code#21163) --- .claude-plugin/plugin.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 6abaa72..1fbe5bc 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -23,5 +23,7 @@ "best-practices" ], "commands": "./commands", - "skills": "./skills" + "skills": "./skills", + "agents": "./agents", + "hooks": "./hooks/hooks.json" }