From 0f58a6634b59302ea332c83869aa3ba0535f8c2f Mon Sep 17 00:00:00 2001 From: ulises-jeremias Date: Mon, 20 Apr 2026 02:30:28 -0300 Subject: [PATCH] chore: add AGENTS.md for AI-assisted development Document key commands, tech stack, and code style conventions. --- AGENTS.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..7b50063 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,31 @@ +# Agent Instructions for create-node-app + +## Overview + +`create-node-app` is a CLI tool for scaffolding Node.js projects from templates. + +## Tech Stack + +- TypeScript +- Node.js 22+ +- pnpm 10+ +- Turborepo (monorepo) + +## Key Commands + +```bash +# Build all packages +npm run build + +# Run tests +npm run test:all + +# Lint +npm run lint +``` + +## Code Style + +- ESLint flat config +- Prettier for formatting +- TypeScript strict mode