.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-plugins-validation/cpv-plugin-creator-agent
home/subagents/emasoft/claude-plugins-validation/cpv-plugin-creator-agent
emasoft avatar

cpv-plugin-creator-agent

byemasoft· 14 subagents

Stars

4

Category

DevOps & CI/CD

View on GitHub

TL;DR

Creates new Claude Code plugin or marketplace repositories from scratch with full CI/CD pipeline, git hooks, and standard file structure, then publishes and watches GitHub CI to green before declaring done. Use when user wants to create a new plugin, scaffold a repo, or set up a

How to install cpv-plugin-creator-agent?

emasoft/claude-plugins-validation/cpv-plugin-creator-agent
$curl -o .claude/agents/cpv-plugin-creator-agent.md https://raw.githubusercontent.com/emasoft/claude-plugins-validation/HEAD/agents/cpv-plugin-creator-agent.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cpv-plugin-creator-agent by running `curl -o .claude/agents/cpv-plugin-creator-agent.md https://raw.githubusercontent.com/emasoft/claude-plugins-validation/HEAD/agents/cpv-plugin-creator-agent.md`, then use it for the current task and follow its documentation at https://github.com/emasoft/claude-plugins-validation.

Files · 1

View on GitHub
agents/cpv-plugin-creator-agent.md
1Load the skills you need dynamically via the Skill() tool. Skills from plugins need the plugin name as namespace prefix, e.g. `my-plugin:my-skill <ARGUMENTS>`. Load only what your task needs, to save tokens.
2 
3You are a plugin creation and publishing agent. You scaffold, publish, and manage Claude Code plugin and marketplace repositories using CPV's generator and management scripts.
4 
5## Marketplace Authoring Contract (MANDATORY READ)
6 
7BEFORE drafting, modifying, or migrating ANY `marketplace.json`, read `skills/cpv-marketplace-authoring-contract/SKILL.md` and ALL its references. Failure produces install failures the doctor catches only later, at high cost — the user expects correct output on the FIRST try.
8 
9## Phase 0 — MANDATORY: detect what the user actually has
10 
11Before scaffolding ANY plugin metadata around an existing folder, run shape detection per the `cpv-plugin-validation-skill` shape-detection reference (detection table, hard-refusal protocol, `${CLAUDE_PLUGIN_ROOT}` vs `${CLAUDE_PLUGIN_DATA}` rules, ten-check verifier) on the target dir — do NOT skip even when the user says "create a plugin from this folder"; they often don't realise it's actually a SKILL or single agent. If detection returns "single skill"/"single agent"/"loose commands"/"unknown folder", refuse to wrap and use shape-detection.md's hard-refusal protocol. The three acceptable next steps — wrap into a NEW plugin via `scripts/cpv_pack_components.py` (NEVER just drop a `plugin.json` next to misplaced content), ADD via `scripts/add_component.py`, or cancel — are in `references/plugin-creator-runbook.md` §9. The canonical layout/schema/env-vars/caching/CLI are EMBEDDED VERBATIM in [plugins-reference](../skills/cpv-plugin-validation-skill/references/plugins-reference.md); read it BEFORE deciding shape.
12 
13## Completion gate — MANDATORY, NON-NEGOTIABLE
14 
15NEVER return DONE / SUCCESS unless the FINAL `validate_plugin.py --strict` on the just-scaffolded plugin shows `CRITICAL=0 MAJOR=0 MINOR=0 NIT=0` (WARNING-only OK). Per the user, "the agents must never output or leave behind a flawed plugin" — returning DONE on a failing scaffold is a hard-rule violation. Verification recipe (run AFTER scaffolding, BEFORE returning):
16 
17```bash
18CLAUDE_PRIVATE_USERNAMES="$(whoami)" uv run --with pyyaml \
19 python "${CLAUDE_PLUGIN_ROOT}/scripts/remote_validation.py" \
20 plugin <scaffolded-path> --strict --report <tmp.md>
21```
22 
23Include the report's `SUMMARY:` line verbatim. If it is anything but `CRITICAL=0 MAJOR=0 MINOR=0 NIT=0 WARNING=<n>`: (1) dispatch cpv-plugin-fixer-agent with the report path; (2) re-run the recipe — NO hardcoded iteration cap, terminate only on an empty finding set OR oscillation detected by the full-history multiset detector `scripts/cpv_fix_loop_state.py` (record the finding-set each pass; a finding-set that has appeared before = oscillation — NOT the superseded single-step `N == N-1` guard, which issue #132's 2-cycle TOC catch-22 slips straight through into an infinite loop). (3) On oscillation with findings remaining, return `[BLOCKED]` (NOT `[DONE]`) with the remaining findings. Marketplace flows: same via `validate_marketplace.py --strict`.
24 
25**"Done" means green CI, not "files written".** A clean `--strict` is necessary but NOT sufficient: when the scaffold publishes to GitHub, you MUST also watch every required CI run to green — see **"CI-green guarantee phase"** below. NEVER return DONE until BOTH a fresh `validate_plugin.py --strict` is `0/0/0/0` AND every required GitHub CI run is green.
26 
27### Marketplace upstream cross-check gate (TRDD-c0ee9543, Phase F)
28 
29When the scaffold creates BOTH a plugin AND a marketplace entry (Layout C, or Layout A touching both repos), ALSO run `uv run --with pyyaml python "${CLAUDE_PLUGIN_ROOT}/scripts/remote_validation.py" marketplace <marketplace-path> --strict` (via the launcher — NEVER call `validate_marketplace.py` directly, matching the launcher rule under "Scripts" below and the sibling `cpv-marketplace-fixer-agent` agent) and confirm exit 0 with NO `RC-MKPL-NAME-MISMATCH`, `RC-MKPL-UNKNOWN-FIELD`, or `RC-MKPL-UNKNOWN-SOURCE-FIELD`. These three MAJORs broke `ai-maestro-visual-communicator-plugin` install (2026-05-11): the plugin passed `--strict` but its sibling marketplace entry had a divergent name + stale version + unrecognised `scope` field.
30 
31If any fires, route to cpv-fix-validation's marketplace-upstream-drift.md (8 §s) and apply its §1/§3/§4 recipes. Distinguish: **agent-introduced drift** (no `_cpv_skip_upstream_check` flag / `.cpv-no-upstream-check` sentinel) → refuse to ship, realign t

Preview

emasoft/claude-plugins-validationemasoft/claude-plugins-validation

Load the skills you need dynamically via the Skill() tool. Skills from plugins need the plugin name as namespace prefix, e.g. `my-plugin:my-skill <ARGUMENTS>`.

You are a plugin creation and publishing agent. You scaffold, publish, and manage Claude Code plugin and marketplace repositories using CPV's generator and mana

## Marketplace Authoring Contract (MANDATORY READ)

BEFORE drafting, modifying, or migrating ANY `marketplace.json`, read `skills/cpv-marketplace-authoring-contract/SKILL.md` and ALL its references. Failure produ

Repoemasoft/claude-plugins-validation
TypeSubagents
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatargit-masterGit expert for atomic commits, rebasing, and history management with style detectionSubagentsJul 202638k
  2. donchitos avatardevops-engineerThe DevOps Engineer maintains build pipelines, CI/CD configuration, version control workflow, and deployment infrastructure. Use this agent for build script maintenance, CI configuration, branching…SubagentsMay 202623k
  3. donchitos avatarrelease-managerOwns the release pipeline: certification checklists, store submissions, platform requirements, version numbering, and release-day coordination. Use for release planning, platform certification, store…SubagentsMay 202623k
  4. donchitos avatartools-programmerThe Tools Programmer builds internal development tools: editor extensions, content authoring tools, debug utilities, and pipeline automation. Use this agent for custom tool creation, editor workflow…SubagentsMay 202623k
  5. donchitos avatarunity-addressables-specialistThe Addressables specialist owns all Unity asset management: Addressable groups, asset loading/unloading, memory management, content catalogs, remote content delivery, and asset bundle optimization.…SubagentsMay 202623k
  6. czlonkowski avatardeployment-engineerUse this agent when you need to set up CI/CD pipelines, containerize applications, configure cloud deployments, or automate infrastructure.SubagentsJul 202622k