|
@@ -5,18 +5,19 @@ Probes for [the taxonomy](../SKILL.md#taxonomy), tuned during the 2026-08 purge.
|
|
|
## Invocation rules
|
|
## Invocation rules
|
|
|
|
|
|
|
|
- Add `--hidden --glob '!.git/**'` so `.agents/` is searched; ripgrep skips dot-directories by default and the purge's biggest miss risk was Agent Notes.
|
|
- Add `--hidden --glob '!.git/**'` so `.agents/` is searched; ripgrep skips dot-directories by default and the purge's biggest miss risk was Agent Notes.
|
|
|
-- Exclusions go last so a later include cannot re-admit them: `--glob '!vendor/**' --glob '!node_modules/**' --glob '!.agents/notes/archived/**' --glob '!.agents/skills/dsh-trim-cot-leakage/references/**'` (this directory quotes leaked shapes as calibration), plus recorded fixture and snapshot directories in scope.
|
|
|
|
|
|
|
+- Exclusions go last so a later include cannot re-admit them: `--glob '!vendor/**' --glob '!node_modules/**' --glob '!.agents/notes/archived/**' --glob '!.agents/skills/dsh-trim-cot-leakage/**'` (the skill's own files quote leaked shapes as calibration), plus recorded fixture and snapshot directories in scope. The [owning note](../../../notes/implemented/process/2026-08-09-committed-artifact-citations.md) also self-hits through its quoted evidence; judge it as evidence, not usage.
|
|
|
|
|
+- Natural-language lines carry `-i` so sentence-initial capitals hit ("This PR adds…", "Probably fine…"); the code-shaped first line stays case-sensitive — `-i` would turn `\bT\d\b` and `\bP-I\b` into noise.
|
|
|
- A zero-hit pattern proves nothing until you have seen it match: test it against a known-positive string before trusting the negative.
|
|
- A zero-hit pattern proves nothing until you have seen it match: test it against a known-positive string before trusting the negative.
|
|
|
|
|
|
|
|
## English battery
|
|
## English battery
|
|
|
|
|
|
|
|
```sh
|
|
```sh
|
|
|
rg -n --hidden '\(decision \d|\(audit [A-Z]\d|design §|plan §|design ledger|\(B ruling|\bP-I\b|\bW\d\b|\bT\d\b' ...
|
|
rg -n --hidden '\(decision \d|\(audit [A-Z]\d|design §|plan §|design ledger|\(B ruling|\bP-I\b|\bW\d\b|\bT\d\b' ...
|
|
|
-rg -n --hidden 'this PR|this branch|this stack|later PR|previous commit|this commit' ...
|
|
|
|
|
-rg -n --hidden 'used to |no longer|previously|the old |was renamed|was moved' ...
|
|
|
|
|
-rg -n --hidden '\bv1\b|this cut|\bcut \d|\btoday\b|\bfor now\b|roadmap' ...
|
|
|
|
|
|
|
+rg -n --hidden -i 'this PR|this branch|this stack|later PR|previous commit|this commit' ...
|
|
|
|
|
+rg -n --hidden -i 'used to |no longer|previously|the old |was renamed|was moved' ...
|
|
|
|
|
+rg -n --hidden -i '\bv1\b|this cut|\bcut \d|\btoday\b|\bfor now\b|roadmap' ...
|
|
|
rg -n --hidden -i 'rejected in review|review round|reviewer|as of v\d' ...
|
|
rg -n --hidden -i 'rejected in review|review round|reviewer|as of v\d' ...
|
|
|
-rg -n --hidden 'probably |should be enough|should suffice|it simply|is safe —|is safe --' ...
|
|
|
|
|
|
|
+rg -n --hidden -i 'probably |should be enough|should suffice|it simply|is safe —|is safe --' ...
|
|
|
rg -n --hidden '§\d' ...
|
|
rg -n --hidden '§\d' ...
|
|
|
```
|
|
```
|
|
|
|
|
|
|
@@ -36,7 +37,7 @@ Judged and kept during the purge; expect them again:
|
|
|
- **"This PR" in process docs** — documentation *about* PR workflow ("the PR body should…", templates, this repo's process notes) legitimately says "PR"; the ban is on a doc adopting one PR's vantage about the code.
|
|
- **"This PR" in process docs** — documentation *about* PR workflow ("the PR body should…", templates, this repo's process notes) legitimately says "PR"; the ban is on a doc adopting one PR's vantage about the code.
|
|
|
- **`v1` as protocol or path segment** — `/v1/chat` endpoints and wire-format names are identifiers, not version stamps.
|
|
- **`v1` as protocol or path segment** — `/v1/chat` endpoints and wire-format names are identifiers, not version stamps.
|
|
|
- **`§N` with a committed owner** — external standards (RFC 9110 §10.1.5) and committed docs that own their §-numbering stay citable by section.
|
|
- **`§N` with a committed owner** — external standards (RFC 9110 §10.1.5) and committed docs that own their §-numbering stay citable by section.
|
|
|
-- **Contrastive "actually" and noun "wait"** — ordinary English, not hedging.
|
|
|
|
|
|
|
+- **Contrastive "actually" and noun "wait"** — ordinary English, not hedging; no committed line probes them, so they surface only when you extend the battery with broader hedging patterns.
|
|
|
- **"Today" in generated timestamps and CLI output samples** — recorded output keeps its voice.
|
|
- **"Today" in generated timestamps and CLI output samples** — recorded output keeps its voice.
|
|
|
- **本版本 in zh prose** — a legitimate rendering of "this release" in versioned-artifact contexts; the banned indexical is 本版 as a bare stamp mirroring "this cut".
|
|
- **本版本 in zh prose** — a legitimate rendering of "this release" in versioned-artifact contexts; the banned indexical is 本版 as a bare stamp mirroring "this cut".
|
|
|
- **Alternatives-considered sections** — "rejected" inside an Agent Note's genre slot is the sanctioned home, not review choreography.
|
|
- **Alternatives-considered sections** — "rejected" inside an Agent Note's genre slot is the sanctioned home, not review choreography.
|