Currently in development
Build better software with AI.
A platform for people who build software with AI. Practical know-how and tools that produce real files, not hype.
Questions or ideas: hello@appcodely.com
Stack coverage
Built around the tools you already use
Claude Code
Cursor
GitHub Copilot
Anthropic
Next.js
React
Laravel
Nuxt
Supabase
Prisma
Cloudflare
Docker
Vercel
Railway
What this is
Everything you need to build software with AI.
Not an AI news site. Practical material and tools you use while building.
Written from real builds. Every page comes from a project that shipped.
No hype, no fluff. Short pages, concrete commands, copy-paste configs.
Tools, not just text. Generators that produce files you commit.
# CLAUDE.md ## Stack Next.js 15, TypeScript, Prisma, Postgres ## Commands npm run dev # local server npm run test # vitest npm run lint # eslint + prettier ## Rules - Server components by default - Zod on every API boundary - No new deps without approval
# PRD: acme-billing ## Problem Checkout lives in spreadsheets; finance loses two days a month reconciling it. ## In scope (v1) - Stripe checkout on the billing page - Invoice PDF attached to receipts ## Requirements you forgot + Refund flow, not just the happy path + Webhooks: idempotent, out-of-order safe
# acme-billing Usage-based billing for the Acme platform. ## Getting started npm install cp .env.example .env npm run dev ## Configuration | STRIPE_SECRET_KEY | Stripe API key | | DATABASE_URL | Postgres DSN |