← ClaudeAtlas

interface-designerlisted

Design interfaces using Ousterhout's "Design It Twice" method with parallel sub-agents. TRIGGER when: user asks to design an API, interface, module boundary, or public surface area, or says "design it twice." DO NOT TRIGGER when: user already has a specific interface and wants implementation, or is refactoring internals without changing the public API.
DROOdotFOO/agent-skills · ★ 1 · AI & Automation · score 75
Install: claude install-skill DROOdotFOO/agent-skills
# Design an Interface ## Philosophy Every interface design involves tradeoffs you cannot see from a single perspective. Designing it twice (or three times) with radically different constraints forces you to explore the design space before committing. This skill spawns parallel sub-agents, each constrained differently, then compares and synthesizes. ## Workflow: 5 Phases ### Phase 1: Gather Requirements Before spawning any sub-agents, clarify: - What problem does this interface solve? - Who are the callers? What do they need? - What are the invariants the interface must preserve? - What are the performance / ergonomic / safety constraints? Do NOT start designing until requirements are agreed upon. ### Phase 2: Spawn Divergent Sub-Agents Launch 3+ parallel sub-agents with the host's delegation facility, each given the same requirements but a different constraint set. In Codex, use parallel `spawn_agent` calls; in Claude Code, use parallel Agent calls. If the host has no sub-agent facility, stop and explain that the workflow cannot preserve its required independent design passes. Constraints must force **radically different** designs -- not minor variations. See [constraints.md](constraints.md) for examples. Each sub-agent produces: - Interface definition (function signatures, types, module API) - Usage example for the most common case - One paragraph on the tradeoff it optimized for ### Phase 3: Present Designs Show all designs side-by-side. Label each by its primary