Skip to content

Quick Reference

Use this page when you want the answer quickly.

ToolPrimary fileNotes
Codex and AGENTS-first toolsAGENTS.mdBest shared default across tools
Claude CodeCLAUDE.md plus shared docsGood for Claude-specific memory or hooks
Gemini CLIGEMINI.md or configured AGENTS.mdSame core role, different filename
GitHub Copilotworkspace instructions plus repo docsOften paired with shared AGENTS.md
Cursorrules plus repo docsOften benefits from shared project instructions
  • install, dev, test, lint, and build commands
  • project conventions that actually matter
  • off-limits areas
  • verification expectations
  • safety rules
Put it in…Best for
AGENTS.md or equivalentdurable repo-wide rules
skill or rule bundlerepeatable, task-specific workflows
promptone-off task details
GoalBetter prompt shape
safer implementationdefine constraints and ask for verification
risky refactorask for a plan first
UI changerequire screenshot evidence
bug fixpaste the real error and ask for root cause
broad taskscope it to a directory or system
AGENTS.md
## Commands
- Install: `npm install`
- Dev: `npm run dev`
- Verify: `npm run verify`
## Rules
- Prefer small diffs.
- Add tests when behavior changes.
- Update docs when workflows or APIs change.
- Ask before destructive actions.
## Verification
- Run the relevant checks before finishing.
- Say what you verified versus assumed.