@simpleapps-com/augur-skills 2026.4.7 → 2026.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -52,6 +52,22 @@ Every agent interaction should leave the codebase in a better state. If you enco
|
|
|
52
52
|
|
|
53
53
|
Do not classify issues as "pre-existing" to justify skipping them — context compaction erases your memory of changes made earlier in the session, so what looks pre-existing is often something you introduced. Even if you truly did not cause it, the goal is zero issues, not blame assignment. Fix it anyway. Do not argue with the user about whether an issue is yours to fix. It is.
|
|
54
54
|
|
|
55
|
+
## RFC 2119 keywords are binding
|
|
56
|
+
|
|
57
|
+
When a wiki page, skill, rule, spec, or issue uses MUST, MUST NOT, SHALL, or SHALL NOT, you MUST comply literally. YOU MUST NOT downgrade a MUST to a SHOULD because:
|
|
58
|
+
|
|
59
|
+
- it would take longer
|
|
60
|
+
- an example in the current session shows otherwise
|
|
61
|
+
- the codebase appears inconsistent
|
|
62
|
+
- you judge the requirement unnecessary
|
|
63
|
+
- it is inconvenient
|
|
64
|
+
|
|
65
|
+
If a MUST seems wrong, impossible, or in conflict with another MUST — STOP and ask the user. Do not silently relax it and proceed. The writer chose the keyword deliberately; overriding it is the agent substituting its judgment for the writer's. SHOULD allows deviation only with a factual justification about the current situation — convenience and time pressure are never valid justifications.
|
|
66
|
+
|
|
67
|
+
Session examples do not override written directives. If code in the session contradicts a MUST from the wiki or a skill, the session code is the problem — flag it, do not use it as permission to violate the MUST.
|
|
68
|
+
|
|
69
|
+
See `simpleapps:writing-style` for the full reading-compliance rules.
|
|
70
|
+
|
|
55
71
|
## Resolve, never hide
|
|
56
72
|
|
|
57
73
|
When a check fails, the solution is ALWAYS to fix the underlying code. NEVER:
|
|
@@ -11,7 +11,7 @@ Apply these standards to all written output: code comments, docs, specs, PRDs, w
|
|
|
11
11
|
|
|
12
12
|
Spec: https://www.rfc-editor.org/rfc/rfc2119
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
**Every directive MUST use an RFC 2119 keyword in ALL CAPS.** This applies to wikis, skills, rules, specs, PRDs, issue acceptance criteria, and any content that tells a reader or agent what to do. Agents weight capitalized keywords more reliably than prose — soft language is silently downgraded or ignored.
|
|
15
15
|
|
|
16
16
|
- **MUST / REQUIRED / SHALL** — absolute requirement, no exceptions
|
|
17
17
|
- **MUST NOT / SHALL NOT** — absolute prohibition
|
|
@@ -19,12 +19,45 @@ Use ALL CAPS when invoking requirement levels:
|
|
|
19
19
|
- **SHOULD NOT / NOT RECOMMENDED** — discouraged, acceptable with careful reasoning
|
|
20
20
|
- **MAY / OPTIONAL** — truly optional, implementer's choice
|
|
21
21
|
|
|
22
|
-
Use lowercase for casual suggestions: "you should consider..." vs "you SHOULD implement..."
|
|
23
|
-
|
|
24
22
|
Decision framework: Does the system break without it? → MUST. Degrades? → SHOULD. No impact? → MAY.
|
|
25
23
|
|
|
24
|
+
### Conversion table — soft language MUST be rewritten
|
|
25
|
+
|
|
26
|
+
| Soft phrase | Rewrite as |
|
|
27
|
+
|---|---|
|
|
28
|
+
| always / never | MUST / MUST NOT |
|
|
29
|
+
| be sure to / make sure | MUST |
|
|
30
|
+
| don't / do not | MUST NOT |
|
|
31
|
+
| don't forget to | MUST |
|
|
32
|
+
| needs to / has to | MUST |
|
|
33
|
+
| try to / aim to | SHOULD |
|
|
34
|
+
| should probably / ideally | SHOULD |
|
|
35
|
+
| can / feel free to | MAY |
|
|
36
|
+
| avoid | SHOULD NOT |
|
|
37
|
+
| remember to | MUST |
|
|
38
|
+
|
|
39
|
+
### Pre-save checklist
|
|
40
|
+
|
|
41
|
+
Before saving any directive sentence, confirm it contains one of: MUST, MUST NOT, SHOULD, SHOULD NOT, MAY. If it doesn't, rewrite it or demote it to descriptive prose (no directive verb).
|
|
42
|
+
|
|
43
|
+
### When lowercase is correct
|
|
44
|
+
|
|
45
|
+
Use lowercase "should/must/may" only for descriptive prose, not directives: "the build should finish in under a minute" (observation) vs "the build SHOULD finish in under a minute" (requirement). If the sentence tells someone what to do, it's a directive — capitalize.
|
|
46
|
+
|
|
26
47
|
In CLAUDE.md and skill instructions, use "YOU MUST" or "IMPORTANT" as emphasis markers to improve adherence to critical rules.
|
|
27
48
|
|
|
49
|
+
### Reading and complying with RFC 2119
|
|
50
|
+
|
|
51
|
+
Keywords are **binding on the reader**, not suggestions to weigh against convenience. When you encounter a keyword while executing work:
|
|
52
|
+
|
|
53
|
+
- **MUST / MUST NOT / SHALL / SHALL NOT** — absolute. You MUST NOT downgrade a MUST to a SHOULD because it would take longer, because an example in the session shows otherwise, because the codebase seems to do it differently, or because you judge it unnecessary. The writer chose MUST deliberately. If the requirement seems wrong or impossible, STOP and ask the user — do not silently relax it.
|
|
54
|
+
- **SHOULD / SHOULD NOT** — strong default. Deviation requires a stated justification based on facts of the current situation, not convenience or time pressure. "It would take too long" is never a valid justification.
|
|
55
|
+
- **MAY** — truly optional. Your choice.
|
|
56
|
+
|
|
57
|
+
The failure mode this prevents: an agent reads "tests MUST cover the edge case", finds writing the test tedious, and silently demotes it to "tests should cover the edge case where practical". That is the agent overriding the writer. MUST means MUST. If you can't comply, stop and report — do not proceed with a weakened version.
|
|
58
|
+
|
|
59
|
+
Prior examples in the current session do NOT override a MUST. If session context shows code that violates a MUST from the wiki/skill/spec, the session code is wrong — flag it, do not use it as permission to violate the MUST.
|
|
60
|
+
|
|
28
61
|
## Token Efficiency
|
|
29
62
|
|
|
30
63
|
Every token costs time, money, and cognitive load. Be concise without losing clarity.
|