This skill is for Claude Code in the main session. It explains how to use the reusable Copilot plugin at /workspace/repos/jgwill/miadi-orchestration-kit/copilot/miadi-design-bundle-integration-kit to integrate any Claude Design bundle into any target codebase.
The plugin holds the generic toolkit (agents + skills). The PDE’s orchestration folder holds the instance-specific charters. Claude Code is the conductor.
<pde-folder>/bundle/<project>/).README.md, chats/, and project/ (with tokens.css, hub index.html, screens, and artifacts).claude-design-handoff.md describing the bundle and the integration intent.If the bundle has not yet been fetched and extracted, that is a prior phase — handle it directly in the main session (the integration kit does not fetch bundles).
claude-design-handoff.md to confirm: bundle path, target codebase, milestone reference, key fidelity anchors.<pde-folder>/orchestration/ with at minimum:
prompts/wave1-*.txt, prompts/wave2-*.txt, prompts/wave3-*.txt (session charters)launch.sh (parameterized launcher)audit.sh (cheap post-wave audit)MAIN_SESSION_HANDOFF.md (instance-specific orchestration brief)MAIN_SESSION_HANDOFF.md — this is where the previous Claude Code instance recorded everything you need to know about this specific Design→Codebase pair../launch.sh <N> — runs the wave via Copilot CLI with the kit plugged in./audit.sh <N> — runs the cheap post-wave audit using a free model (gpt-5-mini)wave-<N>-report.md after each wave; verify the orchestration contract was followedlaunch.sh does)copilot \
--model gpt-5.4 \
--reasoning-effort xhigh \
--yolo \
--no-ask-user \
--plugin-dir /workspace/repos/jgwill/miadi-orchestration-kit/copilot/miadi-design-bundle-integration-kit \
--add-dir <target-codebase> \
--add-dir <pde-folder> \
--add-dir /workspace/repos/jgwill/miadi-orchestration-kit \
--add-dir /workspace/repos/miadisabelle/mia-awesome-copilot \
--share <pde-folder>/orchestration/wave-<N>-session.md \
--share-gist \
--name "<wave-name>" \
-p "$(cat <pde-folder>/orchestration/prompts/wave<N>-*.txt)"
--share-gist exports the full subagent dispatch ledger to a secret GitHub gist after the wave completes — Claude Code uses this to review and evolve the session.
After every wave:
copilot --resume --model gpt-5-mini --reasoning-effort high --yolo --no-ask-user \
--add-dir <target-codebase> \
--add-dir <pde-folder> \
--share <pde-folder>/orchestration/wave-<N>-audit-session.md \
--name "<wave-name>-audit" \
-p "Read wave-<N>-report.md and the implementation files. Verify orchestration contract was followed: lane discipline, two-stage review, READ-ONLY bundle, context preservation, token fidelity. Report concretely with file:line. If broken, say where."
gpt-5-mini is free — the audit is cheap. Always run it.
In order:
claude-design-handoff.md — the integration intentorchestration/MAIN_SESSION_HANDOFF.md — instance-specific orchestration brief/workspace/repos/jgwill/miadi-orchestration-kit/copilot/miadi-design-bundle-integration-kit/README.md — kit overview/b/trading/skills/software-development/miadi-copilot-wave-launcher/SKILL.md — wave launcher conventions/b/trading/skills/software-development/subagent-driven-development/SKILL.md — fresh-subagent-per-task pattern--plugin-dir.| Kit | Use when |
|---|---|
stckin-orchestration-kit |
STCKin / structural-tension-aware deep-search |
miadi-promotion-context-kit |
Provenance → spec → wiki → retrieval promotion |
miadi-adversarial-review-kit |
Adversarial review of in-flight work |
miadi-design-bundle-integration-kit |
Design→Codebase integration (this skill drives it) |
Compose by stacking --plugin-dir <kit> flags when a wave needs multiple kits.