From e03a5628e3900e037fe02b2f20138a1b91c2046e Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 6 Jan 2026 08:15:03 +0100 Subject: [PATCH] docs: prefer bun-first TypeScript execution --- AGENTS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 740d607d9..9b7411e61 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -7,7 +7,9 @@ ## Build, Test, and Development Commands - Install deps: `pnpm install` -- Run CLI in dev: `pnpm clawdbot ...` (bun entry) or `pnpm dev` for `src/index.ts`. +- Prefer Bun for TypeScript execution (scripts, dev, tests): `bun ` / `bunx `. +- Run CLI in dev: `pnpm clawdbot ...` (bun) or `pnpm dev`. +- Node remains supported for running built output (`dist/*`) and production installs. - Type-check/build: `pnpm build` (tsc) - Lint/format: `pnpm lint` (biome check), `pnpm format` (biome format) - Tests: `pnpm test` (vitest); coverage: `pnpm test:coverage`