- Fork the repository
- Create a feature branch from
main - Make your changes
- Submit a pull request
pnpm install
nx run-many -t build # Verify setup workspnpm nx run-many -t build # Build all
pnpm nx run-many -t test # Test all
pnpm nx run-many -t lint # Lint all
pnpm verify # Full verificationSingle project:
nx build [project-name]
nx test [project-name]Use conventional commits:
feat: add new query function
fix: handle empty input gracefully
docs: update API reference
refactor: simplify validation logic
test: add edge case coverage
chore: update dependencies
Follow the conventions in docs/conventions/:
software-design.md— Design principlestesting.md— Testing requirements- Code placement follows the
development-skills:separation-of-concernsskill
100% test coverage is mandatory. All commits must pass:
pnpm verify- Ensure
pnpm run verifypasses locally - Write clear PR description
- Address review feedback
For task management, see docs/workflow/task-workflow.md.
This project was built with Claude Code with skills from claude-skillz.