Two review passes on PR #91 (correctness + simplification) found the
prior fixup commit (d6fd9b6) left the deprecation notice it added
half-applied, cited a nonexistent ADR, and introduced/compounded a
few duplicate restatements of the same facts across apm-workflow's
skill files and apm-orchestrate's Hard rules.
- plugin-author/SKILL.md cited ADR-0016 (doesn't exist) instead of
ADR-0006 for the version-parity invariant.
- The deprecation banner on plugin-author/marketplace-author wasn't
reflected in their routing `description:` frontmatter, forge's
routing table, either kyberforge README skill table, or CONTEXT.md
— now propagated consistently; routing behavior is unchanged since
issue #90 (repo-wide apm conversion) hasn't landed yet.
- apm-orchestrate's `configure` operation only covered scaffolding a
new package, not editing an existing apm.yml (e.g. removing a
marketplace.packages[] entry, which has no dedicated `apm` CLI verb
and is just a manifest edit). Added `edit-config`, intentionally
ungated — a local file edit isn't the same class of irreversible
action as `apm publish`, and normal review already gates the commit.
- Deduplicated facts restated 3-4x across SKILL.md/references/ADR
boundaries (audit semantics, reserved name prefixes, marketplace-add
direction, registries precondition), and trimmed configure.md's
~55-line apm.yml schema dump — copied near-verbatim from the
research doc — down to a compact key list with a pointer, matching
install.md's existing terse cross-referencing style.
Deliberately left as-is: apm-orchestrate's parallel/sequential
fan-out logic stays inline rather than extracted to a shared
reference, since neither git-orchestrate nor gitea-orchestrate need
it yet — premature extraction for a single caller.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_0186ERbyACLRuRxPRnqwpa4m
9.7 KiB
name, description, allowed-tools, metadata
| name | description | allowed-tools | metadata | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| marketplace-author | Use when the user wants to add a plugin to the marketplace ("register my plugin", "add to marketplace", "list plugin X"), remove an entry ("unlist plugin X", "remove from marketplace"), or update an existing entry ("bump the marketplace version", "update the description for Y"). Always updates both .claude-plugin/marketplace.json and .github/plugin/marketplace.json in the same pass. Out of scope: plugin scaffold and configuration — use /plugin-author for that. Does not run `claude plugin marketplace add` or equivalent CLI registration commands — only manages `marketplace.json` entries. Deprecated per ADR-0015 — superseded by apm-workflow; kept until issue #90 lands. | Bash Read Write Edit |
|
Deprecated: Superseded by
apm-workflowper ADR-0015 — deletion pending issue #90 (not yet changed). Useapm-workflow marketplace(apm marketplace init/package add/check) for CREATE/ADD/REMOVE/UPDATE andapm-workflow compile(apm packemits.claude-plugin/marketplace.json) instead.
Gotchas
- Both marketplace files must be identical after every operation — never update one without the other in the same edit pass.
- Every catalog mutation (ADD, REMOVE, UPDATE) requires a catalog
versionbump in both files in the same edit pass. Clients cache the catalog and use the version to detect changes — skipping the bump means the new state is invisible until a forced refresh. Convention: ADD and REMOVE → minor bump (e.g.0.1.1→0.2.0); UPDATE → patch bump (e.g.0.2.0→0.2.1). Theversionfield may be at the top level or nested insidemetadata— bump whichever form is present. sourcefor local plugins is a relative path from the marketplace root, not the plugin directory name alone (e.g."./plugins/kyberforge", not"kyberforge").- The
{ "source": "github", ... }object form is only for GitHub. For GitLab, Gitea, or any other git host, use{ "source": "git", "url": "https://..." }with a full URL.
Route
Determine which operation applies before touching any file:
- Neither
.claude-plugin/marketplace.jsonnor.github/plugin/marketplace.jsonexist → follow CREATE - Only one file exists → stop and note the mirror is missing; ask the user whether to create the missing mirror from the existing file, or whether this is an error. Do not proceed until both files are present or the user has explicitly directed you to create the missing one.
- Both files exist + plugin name NOT in
plugins[]+ add/register/list intent → follow ADD - Both files exist + plugin name IS in
plugins[]+ remove/unlist/delete intent → follow REMOVE - Both files exist + plugin name IS in
plugins[]+ change/update/bump intent → follow UPDATE - User asks to validate without any add/remove/update intent → follow VALIDATE
- Ambiguous → ask: "Did you mean to add a new plugin entry, update an existing one, or remove one?"
CREATE
Run this flow only when no marketplace.json exists anywhere in the repo.
Prerequisites
Confirm you have:
- Marketplace name (kebab-case, e.g.
my-marketplace) - Owner name (and optionally email)
- Marketplace description (optional but recommended)
- At least one initial plugin entry (name, source, description)
If prerequisites are missing, ask before writing.
Step 1 — Write .claude-plugin/marketplace.json
Create the file with the following structure (fill in the values from prerequisites):
{
"name": "<marketplace-name>",
"owner": { "name": "<owner-name>", "email": "<owner-email>" },
"metadata": {
"description": "<marketplace-description>",
"version": "0.1.0"
},
"plugins": [
{
"name": "<plugin-name>",
"description": "<plugin-description>",
"source": "<source>"
}
]
}
Omit "email" if not provided. Omit "metadata.version" if the user does not want a pinned catalog version. The metadata object is the Copilot CLI canonical location for top-level description and version — Claude Code accepts both metadata-nested and top-level forms; use metadata for dual-tool repos.
Step 2 — Write .github/plugin/marketplace.json
Write identical content to .github/plugin/marketplace.json. These two files must always be identical.
Step 3 — Validate
Follow the VALIDATE flow.
ADD
Run this flow when a plugin name does not yet exist in plugins[] and the intent is to add it.
Prerequisites
Confirm you have:
- Plugin name (kebab-case; reserved prefixes
anthropic-*,claude-*,agent-skills,official-claude-pluginsare rejected by the validator) - Plugin description
- Source type and source value (see source type branching below)
- Version (optional; omit for git-sourced plugins)
If you need details on a specific source type shape or per-entry optional fields, read references/manifest-fields.md.
Source type branching
If the user has not specified a source type, assume local path (the most common case for in-repo plugins). Only ask if the user's intent is unclear: "I'll treat this as a local path plugin — is that right, or does it live on GitHub, a git URL, or npm?"
Source shapes per type:
Local path:
"source": "./plugins/<name>"
GitHub:
"source": { "source": "github", "repo": "owner/repo" }
Add "ref": "<branch-or-tag>" inside the object if the user specifies a branch or tag. Add "sha": "<commit-sha>" if pinning to an exact commit — sha takes precedence over ref when both are present.
Git URL:
"source": { "source": "git", "url": "https://..." }
Add "ref": "<branch-or-tag>" inside the object if specified.
npm:
"source": { "source": "npm", "package": "@scope/pkg", "version": "1.0.0" }
version is required for npm source.
Entry shape
The full entry added to plugins[]:
{
"name": "<name>",
"description": "<description>",
"source": <source per type above>
}
Include "version": "<version>" at the entry level only when the source is npm or when the user explicitly requests a pinned version in the catalog.
Include "strict": false when the plugin is a dual Claude Code / Copilot CLI plugin — this prevents Copilot from rejecting CC-specific fields in the plugin directory.
Step 1 — Read both files
Read .claude-plugin/marketplace.json and .github/plugin/marketplace.json. Verify they are identical. If they differ, stop and report the divergence — do not proceed until the user resolves it.
Step 2 — Add the entry
Append the new entry to the end of the plugins[] array in .claude-plugin/marketplace.json. Array order is not semantically significant, but always add at the end for consistency.
Step 3 — Mirror
Apply the identical addition to .github/plugin/marketplace.json in the same edit pass.
Step 4 — Bump catalog version
Apply a minor bump to the version field in both files in the same edit pass (e.g. 0.1.1 → 0.2.0). Find the field at the top level or inside metadata — bump whichever form is present.
Step 5 — Validate
Follow the VALIDATE flow.
REMOVE
Run this flow when an entry exists in plugins[] and the intent is to remove it.
Step 1 — Confirm the target
Read .claude-plugin/marketplace.json. Identify the entry to remove. State the full entry as it currently appears.
Step 2 — HITL gate
State clearly before proceeding:
"I will remove the
<name>entry from both.claude-plugin/marketplace.jsonand.github/plugin/marketplace.json. This does not delete the plugin files. Confirm?"
Do not proceed until the user confirms. If the user says "yes" or equivalent, continue to Step 3.
Step 3 — Remove from both files
Remove the entry from plugins[] in .claude-plugin/marketplace.json.
Apply the identical removal to .github/plugin/marketplace.json in the same edit pass.
Step 4 — Bump catalog version
Apply a minor bump to the version field in both files in the same edit pass (e.g. 0.1.1 → 0.2.0). Find the field at the top level or inside metadata — bump whichever form is present.
Step 5 — Validate
Follow the VALIDATE flow.
UPDATE
Run this flow when an entry exists in plugins[] and the intent is to change one or more fields.
If you need to verify a field name or source type shape, read references/manifest-fields.md.
Step 1 — Read the current entry
Read .claude-plugin/marketplace.json. Show the current state of the target entry so the user can confirm the fields to change.
Step 2 — Apply changes
State which fields will change and to what values, then edit .claude-plugin/marketplace.json.
Apply the identical change to .github/plugin/marketplace.json in the same edit pass.
Step 3 — Bump catalog version
Apply a patch bump to the version field in both files in the same edit pass (e.g. 0.2.0 → 0.2.1). Find the field at the top level or inside metadata — bump whichever form is present.
Step 4 — Validate
Follow the VALIDATE flow.
VALIDATE
Run from the repo root (not from the plugin directory or .claude-plugin/):
claude plugin validate .
Add --strict to promote warnings to errors — recommended in CI.
Report the output. If validation fails, describe the specific error and what needs to be fixed. Do not attempt to auto-fix validation errors unless the fix is unambiguous (e.g. a trailing comma that violates JSON syntax); otherwise, describe the fix and ask the user to confirm.