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
This commit is contained in:
William Valentin
2025-10-31 17:45:47 -07:00
parent 0625d457be
commit 9b2966304d

View File

@@ -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: `<type>[optional scope]: <description>`
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