Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,20 @@
- **Testing**: Separate unit/integration tests, use descriptive test names, mock external dependencies
- **Comments**: Document complex business logic, avoid obvious comments, use JSDoc for public APIs
- **Async**: Use async/await over promises, handle errors at appropriate levels

## Quality Assurance

**IMPORTANT**: Before submitting any solution, agents MUST run the following commands to ensure code quality:

```bash
npm run build
npm run lint
```

If either command fails:

1. Fix all build errors and linting issues
2. Re-run the commands until they pass
3. Only then submit the solution as complete

This ensures all code meets project standards and prevents CI/CD failures.
Loading
Loading