Addresses 7 verified findings from the /code-review pass on PR #91's APM-conversion changes: - apm-workflow's description omitted install triggers, misrouting "install my apm dependencies" requests to apm-install instead - `apm marketplace check` was listed under both the marketplace and audit dispatch rows, breaking the "one reference file per action" contract; kept under marketplace.md, its real usage-sequence home - ADR-0015 claimed apm-workflow docs are generic/repo-agnostic while marketplace.md cited this repo's AGENTS.md and git-commits/ git-remotes skills by name; stripped the holocron-specific citations (marketplace.md, compile.md) so the claim now holds - plugin-author/marketplace-author are superseded per ADR-0015 with deletion deferred to #90; added deprecation notices pointing to the replacing apm-workflow dispatch actions - apm-orchestrate/gitea-orchestrate/git-orchestrate all instruct dispatch "via Skill" without granting the Skill tool; added it to all three - apm-orchestrate mandated strictly sequential fan-out across independent packages with no shared state; relaxed to permit parallel dispatch, matching this repo's own subagent-parallelization guidance Refs: #91
plugin-author
Creates, updates, and releases plugin scaffolds for the holocron marketplace.
What it does
Manages both manifests (plugin.json for Copilot CLI and .claude-plugin/plugin.json for Claude Code) in one pass. Three operations: create a new plugin scaffold with placeholder manifests and skeleton dirs; update configuration fields (shared fields updated in both manifests simultaneously); release a version with HITL gate before tagging.
Out of scope: plugin content (skills, agents, hooks, MCP servers inside those dirs) and marketplace.json entries.
Before you start
Have ready: the plugin name (kebab-case) and the repo root path.
Usage
/plugin-author
Manual scaffold (human workflow):
bash scripts/new-plugin.sh <plugin-name> <repo-root>
# Examples:
bash scripts/new-plugin.sh my-tools /root/ai-development
bash scripts/new-plugin.sh data-tools .
Files
| File | Purpose |
|---|---|
SKILL.md |
Skill instructions for agents |
scripts/new-plugin.sh |
Scaffolds both manifests and skeleton dirs for a new plugin |
references/manifest-fields.md |
All optional fields for both manifests beyond the scaffolded defaults |
references/sources.md |
Research provenance — sources that informed this skill |
scripts/README.md |
Directory meta-documentation for scripts/ |
references/README.md |
Directory meta-documentation for references/ |