@bradheitmann/odin-sentinel 0.4.2 → 0.4.4

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.
@@ -33,11 +33,11 @@ function filesToAudit() {
33
33
 
34
34
  const publicFiles = filesToAudit();
35
35
 
36
- // Per-rule file exemptions. The bundled bootstrap protocol document is
37
- // user-authored content that legitimately references multiple agent harness
38
- // config dirs (the dot-prefixed home subdirs of codex, claude, and friends)
39
- // and uses tilde home paths in its install instructions.
36
+ // Install and protocol documentation legitimately references agent harness
37
+ // config directories and tilde home paths. The path-style rules below skip
38
+ // these files; the rest of the rules still apply.
40
39
  const BUNDLED_DOC = new Set([
40
+ "README.md",
41
41
  "protocol/bootstrap-" + "sk" + "ill.md",
42
42
  "plugins/sentinel-coordination-protocol/" + "sk" + "ills/sentinel-coordination-protocol/SK" + "ILL.md"
43
43
  ]);