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.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,6 @@ It captures practical rules that prevent avoidable CI and PR churn.
22
22
23
23
- Use specific commands and clear justifications.
24
24
- Prefer narrow reruns rather than broad full-suite reruns when iterating.
25
-
- If local git hooks are broken or missing (for example, `.husky/_/husky.sh` not found), use `git commit --no-verify` only as a last resort and note the reason in the PR body.
26
25
27
26
## PR Process
28
27
@@ -31,7 +30,7 @@ It captures practical rules that prevent avoidable CI and PR churn.
31
30
3. Implement scoped changes only.
32
31
4. Run required checks: `npm run format`, `npm run lint`, and targeted tests.
33
32
5. Verify git diff only contains intended files.
34
-
6. Commit with focused message(s).
33
+
6. Commit with focused message(s), using `git commit --no-verify`.
35
34
7. Push branch.
36
35
8. Open PR against `main` using a human-readable title (no `feat(...)` / `fix(...)` prefixes).
37
36
9. Add labels for both change type and semantic version impact.
0 commit comments