Create Plugin
Meta workflows for creating and reviewing AI agent plugins that are marketplace-ready.
Components
Skills
| Skill | Description |
|---|---|
create-plugin-scaffold |
Scaffold a new plugin directory with manifest, components, and repository wiring |
review-plugin-submission |
Run a pre-submission quality check against marketplace expectations |
Workflow: Scaffold
- Validate plugin name (lowercase kebab-case, starts/ends with alphanumeric).
- Create base files:
plugin.json,SKILL.md, optionalREADME.md. - Populate
plugin.jsonwith name, version, description, author, license, keywords. - Create component files with valid frontmatter.
- If marketplace exists, add plugin entry.
- Ensure all paths are relative and valid.
Workflow: Review Submission
- Verify manifest validity.
- Verify component discoverability.
- Verify component metadata (frontmatter).
- Verify marketplace integration.
- Verify documentation quality.
Guardrails
- Keep plugin focused on one use case.
- Prefer concise, actionable skill text.
- Do not reference files that don't exist.
- Use folder discovery defaults unless custom paths required.