From nickcrew-claude-ctx-plugin
Orchestrates multiple sibling mapping/audit/doc skills across a shared scope into a single navigable HTML artifact. Coaches step-by-step with approval gates. Use for complete onboarding or coordinating 2+ analyses.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nickcrew-claude-ctx-plugin:mapping-suiteThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You have a small library of skills that map, audit, and document a system from different angles — `architectural-analysis`, `release-analysis`, `wiring-audit`, `doc-claim-validator`, `doc-completeness-audit`, etc. They share conventions (`docs/<skill>/<date>/`, mermaid + cited reports, cross-skill callout reuse, `--style corporate` HTML output) and they share a common prior: a recent `architect...
You have a small library of skills that map, audit, and document a system from different angles — architectural-analysis, release-analysis, wiring-audit, doc-claim-validator, doc-completeness-audit, etc. They share conventions (docs/<skill>/<date>/, mermaid + cited reports, cross-skill callout reuse, --style corporate HTML output) and they share a common prior: a recent architectural-analysis run is the foundational artifact most of the others can build on.
Coordinating them by hand means resolving the same scope four times, threading the same prior through four different Phase 0 lookups, and ending up with four standalone HTMLs to share. This skill owns the coordination so you don't.
The skill is a coach, not an autorunner. At each step it presents:
You invoke the sibling. The orchestrator records what landed and proposes the next step.
Trigger this skill when:
Do not trigger when:
A recipe is a named sequence of sibling-skill invocations with recommended scope inheritance. v1 ships two; both are release-engineer-onboarding flavored.
For: tooling that drives releases for other systems (PowerShell fleet orchestrators, deploy-bot scripts, release-cutting CLIs). The unit of analysis is the operations the tool performs, not the tool itself.
Reader: a release engineer onboarding to a tool they'll be running.
Plan: see references/recipes/release-driver-onboarding.md. Summary:
scope_shape: driver-only (or driver+kube if the tool also ships itself). Skip arch-analysis prior — the tool isn't a deployed system, so an arch-analysis on it would mostly produce noise.docs/runbooks/, scoped narrowly. Catches drifted procedures the release-analysis Phase 5b reconciliation flagged but didn't resolve.For: systems that get deployed (single repo or multi-repo union). The unit of analysis is the system itself.
Reader: any new engineer onboarding — release-engineer-flavored but applicable to anyone who needs to read the system end-to-end.
Plan: see references/recipes/deployed-system-onboarding.md. Summary:
The user can name a sequence directly: "run release-analysis, then doc-completeness-audit, then combined HTML." The orchestrator treats this as a one-off recipe — same coaching loop, same manifest, same combined-HTML output. No need to formalize it as a stored recipe.
Six phases. Phases 0 and 5 are unique to this skill; phases 1–4 are the coaching loop.
| Phase | Name | Purpose |
|---|---|---|
| 0 | Resolve scope and prior arch-analysis | Same three-tier resolution release-analysis uses. Result is shared with every sibling. |
| 1 | Choose recipe | Named recipe (release-driver onboarding, deployed-system onboarding) or user-defined sequence. |
| 2 | Generate run plan | Sequence of sibling-skill invocations with inherited scope and recommended args. |
| 3 | Coach through the plan | For each step: present, wait for user to invoke, capture output path, update manifest, propose next. |
| 4 | Combine | Run scripts/compile-combined.sh against the manifest to produce one navigation HTML. |
| 5 | Hand-off | Recommend next steps based on what each sibling surfaced (e.g., "doc-claim-validator flagged 3 drifted runbooks — want to invoke doc-maintenance?"). |
Same three-tier resolution as release-analysis's Phase 0:
~/source/source-control-automation building on ~/source/docs/architecture/2026-05-16/." Skip search.<cwd>/docs/architecture/*/ and <cwd>/../docs/architecture/*/.Parse the prior README's frontmatter:
scope, target_repo, modes, date.Propose the inherited scope to the user. Confirm before proceeding.
If no prior arch-analysis exists and the recipe needs one (deployed-system onboarding does; release-driver onboarding doesn't), this is the first decision point: run arch-analysis first, or proceed without prior context. Ask.
Persist the result to docs/<suite-date>-suite/suite-scope.md:
---
suite_date: 2026-05-18
recipe: release-driver-onboarding
scope: source-control-automation
target_repo: ~/source/source-control-automation
prior_arch_analysis: none (recipe doesn't require one)
eve_mcp_used: true
---
Present the recipes:
Two recipes are available. Which fits this run?
1. release-driver onboarding — for tooling that drives releases for other systems
2. deployed-system onboarding — for systems that get deployed
Or describe a custom sequence.
If the user named a recipe in the trigger, skip the prompt and confirm: "Running release-driver onboarding. Plan: release-analysis + doc-claim-validator + combined HTML. Sound right?"
Read references/recipes/<recipe>.md for the recipe-specific plan. The plan is a list of steps; each step has:
Write the plan to docs/<suite-date>-suite/suite.yaml per references/suite-manifest.md. Initialize all steps with status: pending.
For each step in order:
Skill tool or by typing the prompt. The orchestrator does not auto-invoke.find docs/<skill>/*/). Validate the path resolves to a directory containing the expected artifacts (per the recipe's expected output path).completed, record the path. If the user skipped the step, mark skipped with a note.If a step fails (sibling skill errored, user hit a blocker), mark failed in the manifest with the error reason and present options: retry, skip, or pause the suite. Do not silently retry.
When all required steps are completed (or skipped), run:
bash scripts/compile-combined.sh docs/<suite-date>-suite/
This produces docs/<suite-date>-suite/<suite-date>-suite.html — a navigation HTML that links to each sibling's standalone HTML in the recommended reading order. Per the v1 design, it's a shell (navigation + brief summaries) with links to the per-skill HTMLs. No content is inlined; each sibling HTML stays canonical.
Pass --banner <path> to add a header banner.
If a sibling skill didn't produce HTML output (some doc skills produce only markdown), the navigation links to the markdown report instead.
Survey the sibling outputs and propose next-step skills:
doc-claim-validator flagged drifted claims → recommend doc-maintenance to triage.release-analysis surfaced gap states with no documented recovery → recommend the team author runbooks; doc-completeness-audit can confirm the coverage gap.wiring-audit found broken or stale UI↔backend wires → recommend addressing the worst severity findings before the next release.architectural-analysis if findings depended on outdated context.Do not auto-invoke. Recommend, let the user choose.
docs/2026-05-18-suite/
├── suite-scope.md # Phase 0: one-time scope resolution
├── suite.yaml # Phase 2-3: run manifest, status per step
├── 2026-05-18-suite.html # Phase 4: combined navigation HTML
# Sibling artifacts stay where they live (immutable):
docs/release/2026-05-18/ # release-analysis output
docs/architecture/2026-05-16/ # ingested arch-analysis (untouched)
docs/wiring-audit/2026-05-18/ # if run
The suite parent (<date>-suite/) is separate from each sibling's own dir. Suites are coordination metadata; sibling outputs are the actual reports.
Every sibling skill that participates in a mapping-suite run reads docs/<suite-date>-suite/suite-scope.md for inherited scope. This is the shared seam that makes the suite work without each skill re-resolving scope.
Practical implication: when you invoke a sibling under a suite, pass the suite-scope path explicitly:
"Run release-analysis using the scope at
docs/2026-05-18-suite/suite-scope.md."
The sibling's Phase 0 / Phase 1 reads it, applies the same target_repo and prior-arch-analysis path the suite resolved, and proceeds. No second confirmation prompt.
For sibling skills that don't yet read suite-scope.md (only release-analysis does so far in v1), the orchestrator passes the scope by repeating it in the invocation prompt. Future siblings can opt into the shared-scope contract.
references/recipes/release-driver-onboarding.md — recipe 1 detailreferences/recipes/deployed-system-onboarding.md — recipe 2 detailreferences/suite-manifest.md — suite.yaml schema and lifecyclereferences/scope-sharing.md — the suite-scope.md convention sibling skills readscripts/compile-combined.sh — generate the combined navigation HTMLassets/template.html — pandoc template for the combined HTML (symlink to architectural-analysis's template; same shell, different content)npx claudepluginhub nickcrew/claude-cortexBuilds a 3-tier documentation system (CLAUDE.md, orientation maps, domain & use case skills) by analyzing codebase structure, config files, and asking targeted questions about product/architecture.
Analyzes deployment and recovery across Docker Compose and Kubernetes/Eve. Produces mermaid diagrams and cited reports for promotion paths, environment topology, configuration provenance, and rollback procedures.
Orchestrates multi-phase project execution by dispatching isolated persona agents for planning, execution, verification, integration, and review.