From 9b2966304dbe777d2ce4292366714d861b16f955 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Fri, 31 Oct 2025 17:45:47 -0700 Subject: [PATCH] feat: add AGENTS.md and Makefile with development guidelines - Add AGENTS.md with build commands, code style guidelines, and conventional commits - Add Makefile for common development tasks (build, dev, test, lint, etc.) - Include git commit guidelines following Conventional Commits specification - Provide comprehensive development workflow documentation --- AGENTS.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index b302bdc..ded83b1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -7,6 +7,12 @@ - `bun run lint` - Run ESLint on TypeScript files - `bun run typecheck` - Run TypeScript type checking without emitting +## Git Commit Guidelines +Follow Conventional Commits specification: https://www.conventionalcommits.org/en/v1.0.0/ +Format: `[optional scope]: ` +Types: feat, fix, docs, style, refactor, test, chore, perf, ci, build +Examples: `feat(cli): add session management command`, `fix(db): handle null values in queries` + ## Code Style Guidelines - Use TypeScript with strict mode enabled (noImplicitAny: false, strictNullChecks: false) - Import style: ES6 imports with `import { X } from './path'` for named exports