Build AI using AI
Output is the first framework designed for AI coding agents. The entire codebase is structured so Claude Code can scaffold, plan, generate, test, and iterate on your workflows. Each workflow is a folder.workflow.ts, steps.ts, types.ts, prompts/, evaluators.ts — everything your agent needs to understand context lives together.
Ships with Claude Code integration. Native commands, sub-agents, and a CLAUDE.md that teaches Claude the framework’s patterns. Describe what you want in plain English. Claude builds it.
Everything included
No more stitching together SaaS subscriptions. Output handles the fundamentals in one place: Where do prompts live? In your repo as.prompt files — version-controlled, reviewable, deployable with your code. Not scattered strings. Not locked in external dashboards.
How do you test non-deterministic code? LLM-as-judge evaluators with confidence scores. Programmatic quality gates, not vibes.
How do you track costs? Every LLM call traces token counts and model info. Query execution history anytime.
How do you handle secrets? AI apps need a lot of API keys. Sharing .env files is risky, and coding agents shouldn’t see your secrets. Encrypted credentials, scoped per environment, managed through the CLI.
How do you scale? Temporal is already there under the hood. You don’t think about it until you need it.
The Code
Two functions to organize your code:workflow() for orchestration, step() for I/O.
What’s Included
Prompt Management
.prompt files with LiquidJS templating. Version-controlled, reviewable in PRs, deployed with your code.Multi-Provider LLM
Anthropic, OpenAI, Azure, Vertex AI, Bedrock. Switch providers by changing one line in your prompt file.
LLM-as-Judge Evals
Built-in evaluators with confidence scores and reasoning. Test non-deterministic code programmatically.
Tracing and Cost Tracking
Every operation traced automatically. Token counts, costs, latency. JSON on disk, zero config. You own your data.
Durable Orchestration
Temporal under the hood. Automatic retries, workflow history, replay on failure. You don’t think about it until you need it.
Encrypted Credentials
AES-256-GCM encrypted secrets, scoped per environment and workflow. No more sharing
.env files or external vault subscriptions.Get Started
Set up your first Output project in 5 minutes