Architecture rules for Astro server-side rendering, React client islands, Tailwind CSS, and Cloudflare Pages/Workers edge deployment.
Standardized production guidelines for Astro SSR, React Client Islands, Tailwind CSS, and Cloudflare Edge Deployment.
Yes. AGENTS.md is the open cross-tool standard read natively by Cursor, Claude Code, Windsurf, GitHub Copilot, and 30+ other agents. This page also ships a dedicated .mdc file for Cursor's modern .cursor/rules format if you prefer scoped, glob-based rule loading.
Astro server-renders .astro pages before any client JavaScript runs, so data is already available at render time. Fetching again inside a React island with useEffect duplicates the request, adds a loading flash, and defeats the zero-JS-by-default model — pass the data down as a serializable prop instead.
Only with the Node compatibility flag enabled in wrangler.toml (nodejs_compat). Without it, fs, child_process, and other Node core modules are unavailable at the edge — use Web Platform APIs (fetch, crypto, Request/Response) instead, which work identically in Cloudflare Workers.
Ultra-fast edge API architecture using Bun.serve(), Hono v4, Drizzle ORM with embedded SQLite / Turso libSQL, and Zod OpenAPI validation.
Production guidelines for FastAPI, Pydantic v2 validation, Async SQLAlchemy 2.0 (asyncpg), Alembic migrations, and PostgreSQL/Redis.
Architecture guidelines for single-binary Go services using the Echo framework, embedded SQLite, and minimal-JS server-rendered UI.
High-throughput systems architecture rules for Go (Golang), pgxpool connection management, sqlc type-safe query generation, and React web dashboards.