feat: add target repo examples and file layout guidance

This commit is contained in:
2026-04-29 21:55:22 +08:00
parent c507e52dc1
commit 5c80bc12fd
17 changed files with 253 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
# Task Templates
## Bugfix
Goal: fix a specific bug with minimal API change.
Required flow:
1. Read relevant implementation and tests
2. Summarize likely root cause briefly
3. Implement the smallest safe fix
4. Run targeted tests, then broader checks if needed
5. Report changed files and residual risks
## Feature
Goal: add a small feature without broad refactors.
Required flow:
1. Inspect related modules and interfaces
2. Preserve public API unless the task says otherwise
3. Add tests for new behavior
4. Run lint, typecheck, and tests