StrongDM published three natural language specifications for an AI workflow platform. They shipped zero code. Sam handed the specs to Amplifier and built the entire thing.
Software specifications written in natural language, not code. Detailed enough for an AI to implement from scratch. Design docs become source code input.
DOT-graph orchestrator that chains LLM calls into multi-stage workflows
Autonomous agentic loop pairing LLMs with developer tools
Single interface across OpenAI, Anthropic, and Google Gemini
Source: github.com/strongdm/attractor
Claude, GPT, and Gemini all participating in the build process — not just one model, but the full ensemble reviewing and implementing together.
Workflows defined as Graphviz DOT files. Each node is a task. Each edge is flow. You can literally see your workflow.
DOT files convert to SVG for instant visualization of your pipeline topology.
CSS-like model stylesheets assign different LLM models to different nodes. Fan-out to parallel branches. Fan-in with heuristic selection.
Extended thinking, agentic tool use, file operations
codex-rs style execution in sandboxed environments
Gemini-cli style with streaming and function calling
Each provider's model reviewed the profile designed for its own provider. Claude reviewed Claude's profile. GPT reviewed GPT's.
Code reviewed by 2–3 models per feature, with cross-reviews. Models caught different classes of bugs.
Every feature tested with mock tests AND live API calls against all 3 providers.
Working features: file I/O, pipeline chaining, parallel execution, subagent spawning, structured output, checkpoint/resume
"What if your design docs were the source code input?"