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
+85Lines changed: 85 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,87 @@ Branch naming: `fix/issue-NNN-short-description` or `feat/short-description`.
9
9
10
10
Before opening the PR, if the change alters parser behavior or internals, *read* the Architecture, Extension Patterns, and Gotchas sections of this file against the change — don't grep for it: AGENTS.md paraphrases behavior in its own words, so text made stale by a code change rarely matches the code's phrasing (a doc-staleness sweep driven by grep terms from the diff will miss it every time). The same applies when scoping a doc-review pass or a subagent prompt: include AGENTS.md in the list of docs to check, or it won't be checked.
11
11
12
+
## Rules documentation (docs/design/)
13
+
14
+
Three committed contributor docs carry the parser's normative rules
15
+
and their reasons, enforced by the doc tests in tests/v2/
16
+
(rules_doc.py and the test_doc_*/test_rules_doc* modules). Before proposing a
17
+
design or a fix that touches parser behavior, read
18
+
docs/design/mechanisms.md and the relevant docs/design/rules.md
19
+
sections — the catalog is keyed by problem shape, and the pattern
0 commit comments