Tech News
← Back to articles

AGENTS.md – Open format for guiding coding agents

read original related products more articles

# Sample AGENTS.md file

## Dev environment tips

- Use `pnpm dlx turbo run where ` to jump to a package instead of scanning with `ls` .

- Run `pnpm install --filter ` to add the package to your workspace so Vite, ESLint, and TypeScript can see it.

- Use `pnpm create vite@latest -- --template react-ts` to spin up a new React + Vite package with TypeScript checks ready.

- Check the name field inside each package's package.json to confirm the right name—skip the top-level one.

## Testing instructions

- Find the CI plan in the .github/workflows folder.

- Run `pnpm turbo run test --filter ` to run every check defined for that package.

- From the package root you can just call `pnpm test` . The commit should pass all tests before you merge.

... continue reading