← ClaudeAtlas

plugin-manifest-referencelisted

Ground truth for Claude Code plugin packaging — the plugin.json and marketplace.json field sets actually in use, how enabledPlugins and extraKnownMarketplaces are keyed, where installed plugins resolve on disk, and why a plugin-bundled CLAUDE.md does not load. Use when Shane asks "what fields does plugin.json support", "can a plugin declare dependencies on another plugin", "why isn't my plugin's CLAUDE.md loading", "where do installed plugin skills live", or is authoring or debugging a plugin manifest. Do NOT use for writing a skill's own SKILL.md (use /write-a-skill) or for marketplace listing/SEO copy.
slogsdon/skills-workflows · ★ 0 · AI & Automation · score 67
Install: claude install-skill slogsdon/skills-workflows
# Skill: /plugin-manifest-reference The answers to the packaging questions that keep getting re-researched from scratch — separated into what is verified against working manifests and what is still open. **Don't:** answer from memory about plugin schema; the field set here is what is *observed working*, and anything past it needs the live docs. **Don't** present the open question in §Open as settled — five sessions across three repos have asked it and none produced a citable answer. **Don't** assume a plugin's CLAUDE.md loads. ## Verified: `.claude-plugin/plugin.json` Observed across 11 shipping plugins (`slogsdon-claude-code-config` ×7, `loop-and-gate-*` ×4): ```json { "name": "skills-vault-knowledge", "version": "0.3.0", "description": "One line. Shown in plugin listings and the marketplace card.", "author": { "name": "Shane Logsdon", "email": "shane@shanelogsdon.com" }, "license": "MIT" } ``` `name`, `version`, `description` are load-bearing. `author.email` is optional — present in `loop-and-gate-foundation`, absent from the rest, both install fine. No shipping manifest here declares anything else. ## Verified: `.claude-plugin/marketplace.json` ```json { "name": "slogsdon-claude-code-config", "owner": { "name": "Shane Logsdon", "email": "shane@shanelogsdon.com" }, "metadata": { "description": "Marketplace-level blurb" }, "plugins": [ { "name": "skills-design", "source": { "source": "github", "repo": "slogsdon/skills-design" },