mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
800 B
800 B
description
| description |
|---|
| Investigate and fix an issue |
Fix the issue: $ARGUMENTS
- Understand — search the codebase for relevant code, read the files, understand current behavior
- Reproduce — if possible, identify a test case or request that triggers the issue
- Root cause — trace through Routes → Services → Repositories to find where the bug originates
- Fix — implement the fix following project conventions:
- Domain exceptions in services (not HTTP errors)
db.flush()in repositories (notcommit)- Type hints on all changed signatures
- Test — run
cd backend && uv run pytestto verify no regressions - Lint — run
cd backend && uv run ruff check . --fix && uv run ruff format . - Summary — explain what was changed and why