From 1d80e4e8225817ac8c1ebb009fe4ddee1cf4d7c4 Mon Sep 17 00:00:00 2001 From: Bryan Thompson Date: Wed, 17 Jun 2026 15:23:28 -0500 Subject: [PATCH] Move plugin manifest to .claude-plugin/ and point skills[] at directories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Claude Code plugin under claude/ now passes `claude plugin validate`: - Move claude/plugin.json -> claude/.claude-plugin/plugin.json (validator expects the manifest under .claude-plugin/). - Point each skills[] entry at its directory (./skills/) rather than the SKILL.md file (skill entries must be directories containing SKILL.md). No functional changes — same six skills and the same MCP connector. --- claude/{ => .claude-plugin}/plugin.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename claude/{ => .claude-plugin}/plugin.json (75%) diff --git a/claude/plugin.json b/claude/.claude-plugin/plugin.json similarity index 75% rename from claude/plugin.json rename to claude/.claude-plugin/plugin.json index cc6831c..6f8c6dd 100644 --- a/claude/plugin.json +++ b/claude/.claude-plugin/plugin.json @@ -35,11 +35,11 @@ ], "mcpServers": "./.mcp.json", "skills": [ - "./skills/clean-up-dropbox-content/SKILL.md", - "./skills/collect-files-with-request/SKILL.md", - "./skills/find-dropbox-content/SKILL.md", - "./skills/inspect-dropbox-file/SKILL.md", - "./skills/organize-dropbox-folder/SKILL.md", - "./skills/share-dropbox-content/SKILL.md" + "./skills/clean-up-dropbox-content", + "./skills/collect-files-with-request", + "./skills/find-dropbox-content", + "./skills/inspect-dropbox-file", + "./skills/organize-dropbox-folder", + "./skills/share-dropbox-content" ] }