Generate a Vite React AGENTS.md

Vite projects move fast, but generic repo instructions often gloss over command conventions and how much structure client-side apps really need.

This preset keeps the generated file short, practical, and tuned for React plus Vite workflows without backend assumptions.

It is useful when you want a clean agent contract for small to midsize frontend codebases.

Common commands

  • Install: npm install
  • Dev: npm run dev
  • Lint: npm run lint
  • Typecheck: npm run typecheck
  • Build: npm run build
  • Test: npm run test

Common forbidden actions

  • Do not add backend proxy endpoints or hosted prompt services.
  • Do not add global state libraries without approval.
  • Do not add form frameworks for simple structured inputs.

Why this preset needs tailored guidance

Vite repos need direct guidance about client-only logic, lightweight abstractions, and command consistency rather than generic full-stack rules.