Plugin Packager

Package claudefiles components into a valid Claude Code plugin

majiayu000 f2d7f87 2 files · 1.3 KB Updated 567 repo stars

File contents

Plugin Packager

Quick Package (Default)

Create .claude-plugin/plugin.json:

{
  "name": "claudefiles",
  "version": "1.0.0",
  "description": "Claude Code components: agents, commands, hooks, skills",
  "license": "MIT",
  "commands": ["./commands/golang/", "./commands/typescript/", "./commands/docs/"],
  "agents": ["./agents/golang/", "./agents/typescript/", "./agents/python/", "./agents/docs/", "./agents/general/"],
  "skills": "./skills/",
  "hooks": ["./hooks/golang/hooks.json", "./hooks/security/hooks.json"]
}

Validate

chmod +x hooks/golang/scripts/*.sh hooks/security/scripts/*.py
claude plugin install . --scope local

Checklist

  • .claude-plugin/ directory exists
  • plugin.json has name + version
  • Scripts have +x permission
  • All paths start with ./

majiayu000/claude-skill-registry-data/tree/main/development/plugin-packager commit f2d7f87ed4

Frequently asked questions

npx skillmds add majiayu000/plugin-packager-2