From 5a17f570db44d73c0cf911814f543954fc5bb9de Mon Sep 17 00:00:00 2001 From: Steve M Date: Fri, 21 Nov 2025 01:39:58 -0800 Subject: [PATCH] docs: Update README with skills and hooks sections (#11818) * docs: Update README with skills and hooks sections Added sections for skills and hooks to the plugin structure per the [official documentation](https://code.claude.com/docs/en/plugins#plugin-structure-overview). * docs: add .mcp.json --------- Co-authored-by: Anthony Morris --- plugins/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/README.md b/plugins/README.md index 0509b867..e2d20ca0 100644 --- a/plugins/README.md +++ b/plugins/README.md @@ -81,8 +81,11 @@ Each plugin follows the standard Claude Code plugin structure: plugin-name/ ├── .claude-plugin/ │ └── plugin.json # Plugin metadata -├── commands/ # Slash commands (optional) -├── agents/ # Specialized agents (optional) +├── commands/ # Slash commands (optional) +├── agents/ # Specialized agents (optional) +├── skills/ # Agent Skills (optional) +├── hooks/ # Event handlers (optional) +├── .mcp.json # External tool configuration (optional) └── README.md # Plugin documentation ```