lichens-innovation/ai-dev-tools

create-plugin

Scaffolds a new plugin in a local marketplace repository: creates the plugin directory, plugin.json manifest, skills/ folder, and registers it in marketplace.json. Use when the user asks to add a new plugin, create a plugin, or register a plugin in the marketplace.

First seen Jun 18, 2026

Installation

$ npx skills add lichens-innovation/ai-dev-tools --skill create-plugin

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from lichens-innovation/ai-dev-tools · top by installs.

npx skills add lichens-innovation/ai-dev-tools

Browse all from lichens-innovation/ai-dev-tools

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 6
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,900 B
  • docs SUMMARY.md 286 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Create Plugin

Scaffold a new plugin in a local marketplace and register it.

User's intention

$ARGUMENTS

References

Consult the relevant doc(s) before making structural decisions:

  • [docs/plugins.md](${CLAUDESKILLDIR}/../../../../docs/plugins.md) — plugin structure, manifest, hooks and relative paths
  • [docs/marketplace.md](${CLAUDESKILLDIR}/../../../../docs/marketplace.md) — marketplace structure, registration, publishing, versioning, auto-updates
  • [docs/skills.md](${CLAUDESKILLDIR}/../../../../docs/skills.md) — skill format, popular repositories, skills CLI
  • [docs/subagents.md](${CLAUDESKILLDIR}/../../../../docs/subagents.md) — subagent usage, AGENTS.md format, coordination tips
  • [docs/hooks.md](${CLAUDESKILLDIR}/../../../../docs/hooks.md) — hook lifecycle, PreToolUse / PostToolUse, hook scripts
  • [docs/rules.md](${CLAUDESKILLDIR}/../../../../docs/rules.md) — rules format and scope
  • [docs/mcp.md](${CLAUDESKILLDIR}/../../../../docs/mcp.md) — MCP server configuration
  • [docs/memory.md](${CLAUDESKILLDIR}/../../../../docs/memory.md) — memory system, persistent memory for subagents
  • [docs/skills-cli.md](${CLAUDESKILLDIR}/../../../../docs/skills-cli.md) — skills CLI commands
  • [docs/claude-code.md](${CLAUDESKILLDIR}/../../../../docs/claude-code.md) — Claude Code settings, commands, IDE integrations

Workflow

The form data submitted by the user was injected into your context as additionalContext by the UserPromptExpansion hook. Parse the JSON object { name, description, keywords, marketplacePath } and proceed:

  1. Create plugin directory structure

`` <marketplacePath>/plugins/<name>/ ├── .claude-plugin/ │ └── plugin.json ├── skills/ └── README.md ``

  1. Write plugin.json

Read <marketplacePath>/.claude-plugin/marketplace.json to get the owner name and email, then write <marketplacePath>/plugins/<name>/.claude-plugin/plugin.json: ``json { "name": "<name>", "version": "0.1.0", "description": "<description>", "author": { "name": "<owner.name from marketplace.json>", "email": "<owner.email from marketplace.json>" }, "homepage": "<metadata.homepage from marketplace.json>", "keywords": ["<keyword1>", "<keyword2>"] } ``

  1. Write README.md

Create <marketplacePath>/plugins/<name>/README.md with a minimal header and the plugin description.

  1. Register in marketplace

Edit <marketplacePath>/.claude-plugin/marketplace.json and append to the plugins array: ``json { "name": "<name>", "source": "./plugins/<name>", "description": "<description>" } ``

  1. Hooks

If the plugin needs event hooks, add them to hooks/hooks.json in the plugin root (or inline in plugin.json) rather than user settings. See [Hooks and Relative Paths](${CLAUDESKILLDIR}/../../../../docs/plugins.md#hooks-and-relative-paths).

  1. Report to user

- <marketplacePath>/plugins/<name>/.claude-plugin/plugin.json created - <marketplacePath>/plugins/<name>/skills/ created - <marketplacePath>/plugins/<name>/README.md created - Entry added to <marketplacePath>/.claude-plugin/marketplace.json - Next steps: - Use /create-skill or /create-subagent to populate the plugin with tools - Test locally: claude --plugin-dir <marketplacePath>/plugins/<name> - Once satisfied with the result, update the marketplace so the plugin becomes visible: claude plugin marketplace update