vigiles 14.13.3 → 14.13.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.
@@ -83,9 +83,21 @@ function discoverScripts(patterns, defaultGlob, cwd) {
83
83
  found.add(p);
84
84
  continue;
85
85
  }
86
+ // 🔴 `dot: true`, because the harness for a Claude Code harness lives in `.claude/`.
87
+ // Without it, `vigiles test` and `vigiles eval` print "no files found" in a repository
88
+ // that has them, and `Tested` then measures visibility rather than coverage — the author
89
+ // reads "you have no tests" when the honest reading is "I looked in the wrong place".
90
+ // Observed 2026-08-07 on a repo with two harnesses under `.claude/`, both invisible; it
91
+ // stayed hidden because that repo's CI happened to pass explicit paths.
92
+ //
93
+ // This codebase already fixed the same defect elsewhere and missed it here:
94
+ // `test-coverage.ts` and `cli.ts` both pass `dot: true` with comments saying why, and
95
+ // `test-coverage.test.ts` records "glob without `dot:true` never found it and the surface
96
+ // looked untested". Coverage learned it; the runner did not.
86
97
  for (const m of (0, glob_1.globSync)(p, {
87
98
  cwd,
88
99
  ignore: ["node_modules/**", "dist/**"],
100
+ dot: true,
89
101
  })) {
90
102
  found.add(m);
91
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vigiles",
3
- "version": "14.13.3",
3
+ "version": "14.13.4",
4
4
  "description": "Lint & test the harness your AI agent runs on — verify the references in your CLAUDE.md / AGENTS.md and test that your hooks and skills actually work.",
5
5
  "keywords": [
6
6
  "claude-code",