From plugin-forge
This skill should be used when the user asks to "forge a plugin from these docs", "turn this documentation into a Claude Code plugin", "run the full plugin pipeline", "go from docs URL to plugin", or gives a documentation link and wants the entire docs→plugin workflow run end-to-end. Orchestrates the three plugin-forge stages in sequence.
How this skill is triggered — by the user, by Claude, or both
Slash command
/plugin-forge:forge <docs-url> [topic-slug]<docs-url> [topic-slug]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Orchestrate the full plugin-forge pipeline: take a documentation URL and walk through all three
Orchestrate the full plugin-forge pipeline: take a documentation URL and walk through all three
stages, handing artifacts between them. Use the individual stage skills (map-docs, build-prompt,
build-plugin) for à-la-carte runs; use forge to run the whole thing.
<docs-url> (required) — the documentation root or website.[topic-slug] (optional) — kebab-case slug; derived from the product name if omitted.Stage 1: map-docs <docs-url> → <topic>-doc-roadmap.md
Stage 2: build-prompt <docs-url> (+roadmap) → <topic>-plugin-prompt.md
Stage 3: build-plugin <topic>-plugin-prompt.md → ./<topic>-plugin/ (the built plugin)
Each stage's output is the next stage's input. Confirm with the user between stages — each stage is substantial and the user may want to inspect or edit an artifact before proceeding.
map-docs skill with <docs-url> (and [topic-slug]).
Run its interactive checkpoints. Output: <topic>-doc-roadmap.md. Then pause and ask the user
to confirm the roadmap looks complete before continuing.build-prompt skill with the same <docs-url>. It
detects the roadmap from Stage 1 and uses it instead of re-crawling. Output:
<topic>-plugin-prompt.md. Pause and let the user review/adjust the derived placeholders and
source tracker (especially any ⚠ inferred — confirm items).build-plugin skill with <topic>-plugin-prompt.md.
Confirm the target build directory (default ./<topic>-plugin), then run the embedded build
protocol's start protocol and proceed on approval.build-prompt will self-crawl the docs (less exhaustive). Offer this choice up front.<topic> slug across stages so filenames line up
(<topic>-doc-roadmap.md → <topic>-plugin-prompt.md → <topic>-plugin/).[UNVERIFIED]
claims or sparse coverage), surface it and let the user fix or rerun that stage before advancing.Begin by confirming scope with the user: full pipeline (all three stages) or starting from a later stage if artifacts already exist. Then invoke Stage 1.
npx claudepluginhub jbaham2/plugin-forge --plugin plugin-forgeCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.