Plugin Packager

Package claudefiles components into a valid Claude Code plugin Use when this capability is needed.

tomevault-io d0ef8a7 2 files · 1.8 KB Updated

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 ./

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/jamesprial--claudefiles--plugin-packager commit d0ef8a7ddf

Frequently asked questions

npx skillmds@latest add tomevault-io/plugin-packager