File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ It captures practical rules that prevent avoidable CI and PR churn.
88## Development Expectations
99
1010- If a public API changes, update the relevant docs in the same PR.
11+ - If new types are made part of the public API, export them from the package's ` index.ts ` in the same PR.
12+ - If new learnings or misunderstandings are discovered, propose an ` AGENTS.md ` update in the same PR.
1113- Tests should verify observable behavior changes, not only internal/config state.
1214 - Example: for a security option, assert a real secure/insecure behavior difference.
1315
@@ -28,7 +30,7 @@ It captures practical rules that prevent avoidable CI and PR churn.
28303 . Implement scoped changes only.
29314 . Run required checks: ` npm run format ` , ` npm run lint ` , and targeted tests.
30325 . Verify git diff only contains intended files.
31- 6 . Commit with focused message(s).
33+ 6 . Commit with focused message(s), using ` git commit --no-verify ` .
32347 . Push branch.
33358 . Open PR against ` main ` using a human-readable title (no ` feat(...) ` / ` fix(...) ` prefixes).
34369 . Add labels for both change type and semantic version impact.
You can’t perform that action at this time.
0 commit comments