Universal repo context template (.agents/AGENTS.md) that works across Claude Code, Cursor, Windsurf, DeepSeek Harness, and Codex.
Tags: instructions, agents-md, open-standard, context, cross-platform, conventions
Open AGENTS.md Repository Standard Specification & Context File
Overview
AGENTS.md is an open standard context format for declaring project architecture, commands, coding standards, and guardrails to any AI agent runtime.
Standard Structure (AGENTS.md / .agents/AGENTS.md)
# Project Overview
[Brief technical description of application purpose and target architecture]
## Tech Stack
- Frontend: React 19, TypeScript, Vite, Tailwind CSS, shadcn/ui
- Backend: Express, Node.js, TypeScript, Drizzle ORM
- Database: PostgreSQL
## Core Workspace Commands
- Dev Server: `npm run dev`
- Typecheck: `npm run check`
- Unit Tests: `npm run test`
- Build: `npm run build`
## Architecture & Code Conventions
1. All client-side tools reside in `client/src/tools/`.
2. Database access must go through server storage interfaces (`server/storage.ts`).
3. Never use TypeScript `any` — define explicit types in `shared/schema.ts`.