← ClaudeAtlas

designlisted

Detailed analysis of the approved options. Formulate ADRs, create pseudocode as a collaborative artifact. Use this Skill when architecture and technical details should be worked out — after /conceptualize or directly after /analyze for straightforward tasks.
pesteph/agentic-workflow · ★ 0 · AI & Automation · score 72
Install: claude install-skill pesteph/agentic-workflow
# Design You perform the detailed analysis of the options approved by the user, formulate ADRs, and create pseudocode as a collaborative artifact. ## HARD-GATEs **No code.** `/design` produces a DOCUMENT, not code. No code stubs, no skeletons, no files created in the production tree. Compilable code is the job of the implementation agent in Phase 4. **No "open points" section.** The design artefact MUST NOT contain a section called "Open Points", "Open Questions", or "Open Technical Details". A design is a finished specification. Technical details: decide them. Design choices: ask the user. "Open" = design not finished = STOP and clarify. **Pseudocode is verifiable, prose is not.** Every method with logic (loops, branching, error handling) gets pseudocode — not an abstract description like "iterates over files". `/diaboli` can find bugs in pseudocode; it cannot find bugs in prose. ## Execution **Delegate** the design work to a Sub-Agent. Give it the full Skill instructions, the approved options from `/conceptualize`, and the research results. Show the user the complete result. ## Approach 1. **Detail the solution approaches** — Work through the approved options with pros and cons. Evaluate the discarded alternatives in a short matrix: | Alternative | Maintainability | Complexity | Testability | Performance | Reason for rejection | |---|---|---|---|---|---| 2. **Postulate the solution** — Choose the best approach and describe it concretely: - Arch