Executive Summary
The /createsolution command takes your program requirements (the "ask") and
produces a comprehensive, multi-perspective solution design. It leverages three AI models
(Claude, Gemini, and Codex) in two phases:
Phase 1 (Design): AI models analyze requirements and propose solutions.
Phase 2 (Critique): AI models challenge the solution for simplicity before finalization.
The result is a critique-refined solution that has been challenged for over-engineering,
compared to industry best practices, and optimized for simplicity.
Use --skip-critique to bypass the critique loop for faster, simpler projects.
📝
Refines Requirements
Transforms your raw ideas into clear, professional specifications
🤖
Multi-AI Design
Gets design perspectives from Claude, Gemini, and Codex
🔍
Critique Loop
Challenges solution for simplicity and over-engineering
✨
Refined Solution
Produces battle-tested, simplified design
flowchart LR
subgraph Input
A[Program Ask]
end
subgraph "Steps 1-3"
B[Name Approval]
C[Refine Spec]
D[Claude Analysis]
end
subgraph "Step 4: Review Board"
E[Gemini]
F[Codex]
end
subgraph "Steps 5-6"
G[Synthesize v1]
H[Optimize v1]
end
subgraph "Steps 7-10: Critique Review"
direction TB
I[Review Board]
J[Refactor Plan]
K[Re-Synth v2]
L[Final Optimize]
end
subgraph Output
M[Executive Site]
end
A --> B --> C --> D
D --> E
D --> F
E --> G
F --> G
G --> H --> I
I --> J --> K --> L
L --> M
style A fill:#ffd700,color:#1a1a2e
style M fill:#4ade80,color:#1a1a2e
style E fill:#4285f4,color:#fff
style F fill:#10b981,color:#fff
style D fill:#d97757,color:#fff
style I fill:#a855f7,color:#fff
style J fill:#a855f7,color:#fff
style K fill:#a855f7,color:#fff
style L fill:#a855f7,color:#fff
→
11
Present
Web deployment
flowchart LR
subgraph Input
A[Program Ask]
end
subgraph "Steps 1-3"
B[Name Approval]
C[Refine Spec]
D[Claude Analysis]
end
subgraph "Step 4: Review Board"
E[Gemini]
F[Codex]
end
subgraph "Steps 5-6"
G[Synthesize]
H[Optimize]
end
subgraph Output
I[Executive Site]
end
A --> B --> C --> D
D --> E
D --> F
E --> G
F --> G
G --> H --> I
style A fill:#ffd700,color:#1a1a2e
style I fill:#4ade80,color:#1a1a2e
style E fill:#4285f4,color:#fff
style F fill:#10b981,color:#fff
style D fill:#d97757,color:#fff