>
Add this skill
npx mdskills install sickn33/design-orchestrationWell-structured meta-workflow that enforces design validation gates with clear routing logic
1---2name: design-orchestration3description: >4 Orchestrates design workflows by routing work through5 brainstorming, multi-agent review, and execution readiness6 in the correct order. Prevents premature implementation,7 skipped validation, and unreviewed high-risk designs.8---910# Design Orchestration (Meta-Skill)1112## Purpose1314Ensure that **ideas become designs**, **designs are reviewed**, and15**only validated designs reach implementation**.1617This skill does not generate designs.18It **controls the flow between other skills**.1920---2122## Operating Model2324This is a **routing and enforcement skill**, not a creative one.2526It decides:27- which skill must run next28- whether escalation is required29- whether execution is permitted3031---3233## Controlled Skills3435This meta-skill coordinates the following:3637- `brainstorming` — design generation38- `multi-agent-brainstorming` — design validation39- downstream implementation or planning skills4041---4243## Entry Conditions4445Invoke this skill when:46- a user proposes a new feature, system, or change47- a design decision carries meaningful risk48- correctness matters more than speed4950---5152## Routing Logic5354### Step 1 — Brainstorming (Mandatory)5556If no validated design exists:5758- Invoke `brainstorming`59- Require:60 - Understanding Lock61 - Initial Design62 - Decision Log started6364You may NOT proceed without these artifacts.6566---6768### Step 2 — Risk Assessment6970After brainstorming completes, classify the design as:7172- **Low risk**73- **Moderate risk**74- **High risk**7576Use factors such as:77- user impact78- irreversibility79- operational cost80- complexity81- uncertainty82- novelty8384---8586### Step 3 — Conditional Escalation8788- **Low risk**89 → Proceed to implementation planning9091- **Moderate risk**92 → Recommend `multi-agent-brainstorming`9394- **High risk**95 → REQUIRE `multi-agent-brainstorming`9697Skipping escalation when required is prohibited.9899---100101### Step 4 — Multi-Agent Review (If Invoked)102103If `multi-agent-brainstorming` is run:104105Require:106- completed Understanding Lock107- current Design108- Decision Log109110Do NOT allow:111- new ideation112- scope expansion113- reopening problem definition114115Only critique, revision, and decision resolution are allowed.116117---118119### Step 5 — Execution Readiness Check120121Before allowing implementation:122123Confirm:124- design is approved (single-agent or multi-agent)125- Decision Log is complete126- major assumptions are documented127- known risks are acknowledged128129If any condition fails:130- block execution131- return to the appropriate skill132133---134135## Enforcement Rules136137- Do NOT allow implementation without a validated design138- Do NOT allow skipping required review139- Do NOT allow silent escalation or de-escalation140- Do NOT merge design and implementation phases141142---143144## Exit Conditions145146This meta-skill exits ONLY when:147- the next step is explicitly identified, AND148- all required prior steps are complete149150Possible exits:151- “Proceed to implementation planning”152- “Run multi-agent-brainstorming”153- “Return to brainstorming for clarification”154- "If a reviewed design reports a final disposition of APPROVED, REVISE, or REJECT, you MUST route the workflow accordingly and state the chosen next step explicitly."155---156157## Design Philosophy158159This skill exists to:160- slow down the right decisions161- speed up the right execution162- prevent costly mistakes163164Good systems fail early.165Bad systems fail in production.166167This meta-skill exists to enforce the former.168
Full transparency — inspect the skill content before installing.