Overview
The examples below come from real runs in theprojects/ directory. Each is a blueprint (PRD, PLAN, specs, prompts, infra).
The code snippets are illustrative of style and structure; you implement the final app from the specs and prompts.
1. SnackRush — Junk Food Ordering App (Web Application)
Idea A junk food ordering app for urban users: curated snack menus, vendor partnerships, real-time ordering, and Google Pay. Web-first, with promotions for late-night snackers. Platform Web Application — Next.js, Node/Express, PostgreSQL, auth, real-time tracking, payments. What the blueprint includes- docs/ — PRD (user personas, features, API needs), PLAN, HUMAN_REVIEW, PROJECT_RULES
- frontend/ — react_nextjs.md, components.md, state_management.md, prompts/generate_frontend.txt
- backend/ — node_express.md, auth.md, services.md, apis/openapi.md
- db/ — schema.md, migrations.md, orm_models.md
- infra/ — terraform.md, ci_cd.md, monitoring.md, secrets_management.md
- testing/ — unit_tests.md, api_tests.md
- meta/ — github_push.yaml, export.zip
2. Web-Based Solana Wallet (Phantom-like) (Web Application)
Idea Build a Solana wallet like Phantom: create/import wallets, manage SOL and SPL tokens, connect to dApps, sign transactions. Web-only, non-custodial, no fiat on-ramps. Platform Web Application — Next.js, Solana Web3.js, client-side key handling, optional backend for indexing. What the blueprint includes- docs/ — PRD (wallet lifecycle, dApp connect, exclusions), PLAN, HUMAN_REVIEW, PROJECT_RULES
- frontend/ — react_nextjs.md, components.md, state_management.md, prompts
- backend/ — node_express.md, auth.md, services.md, apis/openapi.md
- db/ — schema, migrations, orm
- infra/ — terraform, ci_cd, monitoring, secrets
- testing/ — unit_tests, api_tests
- meta/ — github_push.yaml, export.zip
3. IndieTunes — Solana Music Marketplace (Web Application)
Idea A Solana-based marketplace for indie music: artists upload and sell; fans pay with SOL/SPL. Royalties on-chain, discovery, and streaming-style playback. Platform Web Application — Next.js, Node, PostgreSQL, Solana, storage for audio. What the blueprint includes Full web app layout: docs, frontend, backend, db, infra, testing, meta. Backend specs cover/api/music, /api/transactions/create, upload flows, and Solana integration.
Lesson
Chain + use case up front drives correct backend and PRD structure.
4. Decentralized P2P Messaging (Android)
Idea A decentralized P2P messaging app: E2E encryption, no central server, offline support. Android-first. Platform Android — Kotlin, Jetpack Compose, Firebase (optional), Room, GCP. What the blueprint includes- android/ — kotlin_ui.md, fragments.md, navigation.md, prompts
- backend/ — api_contracts.md, node_firebase.md, push_notifications.md
- db/ — firebase_schema.md
- infra/ — gcp_deploy.md
- meta/ — export.zip
5. SaaS for Selling Digital Products (Web Application)
Idea A SaaS to sell digital products (PDFs, text files) with Solana payments: creators upload, set prices; buyers pay and download. Platform Web Application — Next.js, Node, PostgreSQL, Solana, file storage. What the blueprint includes- docs/ — PRD, HUMAN_REVIEW, PROJECT_RULES
- frontend/ — react_nextjs, components, state_management, prompts
- backend/ — node_express, auth
- db/ — schema, migrations, orm
- infra/ — monitoring, secrets
- meta/ — github_push, export
6. Student PG Finder for Bangalore (Web Application)
Idea An app for students in Bangalore to find PG accommodations: search by area, budget, amenities; contact owners; reviews and shortlist. Platform Web Application — Next.js, Node, PostgreSQL, auth, search, reviews. Lesson Audience + geography (“students”, “Bangalore”, “PG”) directly influence filters and flows.Common patterns in generated blueprints
| Pattern | Where it shows up |
|---|---|
| PRD structure | Executive summary, goals, personas, features, exclusions |
| User stories | PRD / PLAN (“As a… I want… so that…”) |
| API-first | Backend specs and openapi.md |
| Tech alignment | Stack matches chosen platform |
| Security | JWT, env-based secrets, no keys in client |
| Infra | Terraform, CI/CD, monitoring; mobile adds GCP/Xcode |