{"id":45657252,"url":"https://github.com/1mb-dev/gistapp","last_synced_at":"2026-04-02T16:22:43.629Z","repository":{"id":340213298,"uuid":"1165031820","full_name":"1mb-dev/gistapp","owner":"1mb-dev","description":"Zero-stack app spec generator. Describe an idea, answer architecture questions, download a deployment-ready spec.","archived":false,"fork":false,"pushed_at":"2026-03-28T05:55:15.000Z","size":493,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T10:52:05.073Z","etag":null,"topics":["ai-coding","astro","cloudflare-pages","developer-tools","spec-generator","static-site"],"latest_commit_sha":null,"homepage":"https://gist.1mb.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/1mb-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-23T18:48:47.000Z","updated_at":"2026-03-28T05:54:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/1mb-dev/gistapp","commit_stats":null,"previous_names":["1mb-dev/gistapp"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/1mb-dev/gistapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1mb-dev%2Fgistapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1mb-dev%2Fgistapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1mb-dev%2Fgistapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1mb-dev%2Fgistapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1mb-dev","download_url":"https://codeload.github.com/1mb-dev/gistapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1mb-dev%2Fgistapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31309834,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-coding","astro","cloudflare-pages","developer-tools","spec-generator","static-site"],"created_at":"2026-02-24T08:50:21.505Z","updated_at":"2026-04-02T16:22:43.621Z","avatar_url":"https://github.com/1mb-dev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gist\n\n**Turn app ideas into deployment-ready specs.**\n\nGist is a zero-stack app spec generator. Describe your idea, answer a few architecture questions, and download a markdown spec you can hand to Claude, Cursor, or Codex for implementation.\n\nTry it at [gist.1mb.dev](https://gist.1mb.dev).\n\n---\n\n## Why Gist?\n\nAI coding assistants produce better output when given clear constraints and architectural decisions upfront. But structuring those decisions requires knowledge most people don't have — free tier limits, caching strategies, CORS proxies, data freshness patterns.\n\nGist captures those decisions through a guided question flow and generates a spec that includes everything an AI assistant needs: architecture, UX states, implementation order, and a suggested prompt.\n\nThe spec matches the app's actual complexity. A personal weather app gets 4 static files. A public dashboard with live data gets a Worker proxy and cron jobs. Gist's complexity router prevents over-engineering.\n\n## How It Works\n\n1. **Describe** your app idea (title, audience, what it does)\n2. **Answer** structured questions about data, scale, hosting, and design\n3. **Preview** the generated spec in-browser\n4. **Download** the markdown file and hand it to your AI assistant\n\nThe entire flow runs client-side. No server, no database, no account required.\n\n## Architecture\n\nGist is a static Astro site deployed to Cloudflare Pages.\n\n- **Framework:** [Astro 5](https://astro.build) with static output\n- **Styling:** Vanilla CSS with custom properties — no framework dependencies\n- **Logic:** TypeScript modules handle question routing, complexity detection, and spec generation\n- **Hosting:** Cloudflare Pages (zero cost, global CDN)\n- **Analytics:** Cloudflare Web Analytics + custom Insights Worker with KV counters\n\nThree core modules drive the product:\n\n| Module                  | Purpose                                                        |\n| ----------------------- | -------------------------------------------------------------- |\n| `src/lib/questions.ts`  | Question definitions, conditional visibility, persona overlays |\n| `src/lib/complexity.ts` | Routes answers to minimal/standard/full architecture tiers     |\n| `src/lib/generator.ts`  | Assembles the final markdown spec from answers + tier          |\n\nSee [docs/architecture.md](docs/architecture.md) for details.\n\n## Development\n\nRequires Node.js 22+.\n\n```bash\n# Install dependencies\nnpm install\n\n# Start dev server\nnpm run dev\n\n# Run tests\nnpm test\n\n# Check formatting and types\nnpm run lint\n\n# Build for production\nnpm run build\n```\n\n### Scripts\n\n| Command              | What it does                                      |\n| -------------------- | ------------------------------------------------- |\n| `npm run dev`        | Start Astro dev server                            |\n| `npm test`           | Run all tests (site + worker)                     |\n| `npm run lint`       | Check formatting (Prettier) + types (astro check) |\n| `npm run format`     | Auto-format all files                             |\n| `npm run check`      | Type-check Astro files                            |\n| `npm run build`      | Production build to `dist/`                       |\n| `npm run preview`    | Preview production build locally                  |\n| `npm run worker:dev` | Start Insights Worker dev server                  |\n\n### Project Structure\n\n```\nsrc/\n  layouts/Base.astro       # HTML shell, meta tags, asset links\n  pages/                   # Routes: index, create, spec, admin, 404\n  styles/                  # Design tokens, reset, global styles, fonts\n  lib/                     # TypeScript: questions, complexity, generator, insights, types\nworker/\n  src/index.ts             # Insights Worker (event ingestion, stats API)\n  wrangler.toml            # Cloudflare Worker config + KV binding\npublic/                    # Static assets: favicon, OG image, service worker, fonts\n```\n\n## Documentation\n\n- [Architecture](docs/architecture.md) — How the pieces fit together\n- [Design System](docs/design-system.md) — Tokens, typography, color, dark mode\n- [Spec Generation](docs/spec-generation.md) — How specs are assembled from answers\n- [Contributing](docs/contributing.md) — Setup, conventions, how to submit changes\n- [Changelog](CHANGELOG.md) — Release history\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1mb-dev%2Fgistapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1mb-dev%2Fgistapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1mb-dev%2Fgistapp/lists"}