Right-sized architecture
A simple app gets 4 static files. A complex one gets Workers, KV, and cron. Your spec matches your actual needs.
Zero-stack app specifications
Answer a few questions about your app — what it does, who it's for, where the data lives. Gist turns your answers into a deployment-ready specification that any AI coding assistant can implement without the back-and-forth.
Title, one-line description, and what your users see first. No jargon required.
We ask about data, hosting, and design. Every option is laid out with trade-offs visible — pick what fits, skip what doesn't matter.
A markdown file with architecture decisions, security guidance, implementation order, and a suggested prompt for your AI assistant.
A real spec — not a template. Tailored to your answers, right-sized to your app's complexity.
# Weather Now — Gist Specification
## Meta
- Gist version: 1.0
- Complexity tier: minimal
## Summary
> A clutter-free personal weather app. Fetches weather
> from Open-Meteo (free, no key) directly from the
> browser. Plain HTML/CSS/JS — no framework, no build
> step, no server. Deploy static files to Cloudflare Pages.
## Architecture
- Host: Cloudflare Pages (free tier)
- Framework: None — plain HTML/CSS/JS
- Proxy: None (API is free, no key needed)
## Implementation Order
1. Scaffold: index.html, style.css, app.js, favicon
2. HTML shell with loading/error/success states
3. Styles: cool palette, dark mode, responsive
4. Connect: Open-Meteo API + Nominatim geocoding
5. Web standards: og:image, CSP, meta tags
6. Deploy: push to Cloudflare Pages
## Suggested Prompt
"Build step by step, starting with mock data..." A simple app gets 4 static files. A complex one gets Workers, KV, and cron. Your spec matches your actual needs.
API keys never touch your frontend. Trust boundaries are explicit. The pre-ship checklist catches what you'd miss.
Without a spec, your AI assistant asks a dozen clarifying questions. With one, it can start building immediately.
Every recommendation fits within free tier limits. Budget math is included — no surprise charges.
Five minutes of questions. A spec you can hand to any AI coding assistant.
Create your spec