988 B
988 B
Node / TypeScript Harness Notes
Use this reference for Node.js or TypeScript repositories.
Common files to inspect
package.jsontsconfig.jsoneslint.config.*or.eslintrc*vitest.config.*,jest.config.*,playwright.config.*src/,apps/,packages/,tests/
Common validation commands
Prefer commands already defined by the repo. Typical examples:
npm testnpm run lintnpm run buildnpm run typecheckpnpm testpnpm lintpnpm buildpnpm tsc --noEmit
Suggested AGENTS.md sections
- project purpose
- important directories
- install / build / test / lint commands
- constraints on schema, dependencies, and generated files
- validation order
Common guardrails
- do not edit generated clients unless the task is specifically about generation
- avoid lockfile churn unless dependencies truly changed
- prefer targeted tests before full test suite
- note whether e2e tests are slow or environment-dependent