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
Copy file name to clipboardExpand all lines: .agents/commands/pr.md
+58-17Lines changed: 58 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,31 +122,72 @@ This PR adds support for...
122
122
When the user provides custom instructions after `--`:
123
123
- Parse any referenced commit SHAs and read their full messages
124
124
- Focus the description content on areas the user emphasizes
125
-
- Structure QA Notes according to user's specific testing instructions
125
+
- Structure QA Notes according to user's specific manual testing instructions and automated coverage notes
126
126
- Custom instructions take priority over default generation rules for sections they address
127
-
- Preserve exact testing steps provided by the user (don't summarize or omit details)
128
-
129
-
**QA Notes / Testing Scenarios:**
130
-
- Structure with numbered headings and steps
131
-
- Make steps easily referenceable
132
-
- Be specific about what to test and expected outcomes
127
+
- Preserve exact manual testing steps provided by the user (don't summarize or omit details)
128
+
- If custom instructions include automated checks or coverage notes, place them under `#### Automated Checks`
129
+
130
+
**QA Notes / Validation:**
131
+
- QA Notes separate actionable human QA instructions from automated verification coverage.
132
+
- Always use this structure:
133
+
```md
134
+
### QA Notes
135
+
#### Manual Tests
136
+
#### Automated Checks
137
+
```
138
+
- Keep local verification commands, Gradle tasks, detekt, lint, unit tests, build passes, cargo test, cargo clippy, npm test, typecheck, CI coverage, or similar automated checks out of `#### Manual Tests`; summarize them under `#### Automated Checks` when they add useful context.
139
+
- Use `#### Automated Checks` to summarize automated verification evidence, prioritizing coverage added, modified, or removed with file paths and a short explanation.
140
+
- For removed automated coverage, state why it was removed.
141
+
- Do not list standard CI or PR bot commands as checkbox items just because they run for every PR. If standard CI coverage is worth mentioning, summarize it in one sentence.
142
+
- List raw commands only when they were run locally, are non-standard, use special flags or environment values, validate workflow behavior, or explain a meaningful verification gap.
143
+
- For workflow behavior validation, include `(after merge)` in the automated check item because workflow changes only take effect for PRs opened after the workflow update merges.
144
+
- If no actionable manual validation exists, write `N/A` under `#### Manual Tests`.
145
+
- If no automated checks were run and no automated coverage changed, write `N/A` under `#### Automated Checks`.
Copy file name to clipboardExpand all lines: AGENTS.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,10 @@
1
1
# CLAUDE.md
2
2
3
-
This file provides guidance to AI agents like Cursor/Claude Code/Codex/WARP when working with code in this repository.
3
+
This file provides guidance to Codex, Claude Code, and Cursor when working with code in this repository.
4
+
5
+
## Agent Commands
6
+
7
+
Durable shared agent command specs live in `.agents/commands/`. For PR creation, follow `.agents/commands/pr.md`; `.claude/commands` is a compatibility symlink to the same files.
0 commit comments