You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update coordinator guide: run only relevant tests, not full suite
Worker agents were running the full test suite (10+ min) which is
wasteful when only a small area of code changed. Updated the completion
workflow to instruct agents to run only relevant test files/functions.
The full suite will be run separately later.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: agents/coordinator_guide.md
+16-6Lines changed: 16 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ project before making changes so you can verify your setup works.
121
121
- Information about existing PRs — what they change, whether they look correct
122
122
- Anything else the worker agent should know
123
123
124
-
**5. Your recommended approach.** What you think the fix should look like. Be specific — name files, functions, line numbers. Frame it as guidance, not commands — the worker agent may find things you didn't and should use its own judgment.
124
+
**5. Your recommended approach.** What you think the fix should look like. Be specific — name files, functions, line numbers. Frame it as guidance, not commands — the worker agent may find things you didn't and should use its own judgment. Include which specific test file(s) or test function(s) the agent should run to verify its fix — not the full suite.
125
125
126
126
**6. Completion workflow.** Every prompt file must include this section verbatim, with the issue number filled in:
127
127
@@ -130,20 +130,29 @@ project before making changes so you can verify your setup works.
130
130
131
131
After implementing and verifying the fix:
132
132
133
-
1.**Commit** your changes with a message referencing the issue:
133
+
1.**Run only the tests relevant to your change.** Do NOT run the full
134
+
test suite — it takes 10+ minutes and will be run separately later.
135
+
Instead, run the specific test file(s) that cover the code you changed:
0 commit comments