vigiles 14.2.0 → 14.3.0
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/README.md +1 -1
- package/dist/audit-score.d.ts +4 -2
- package/dist/audit-score.js +8 -5
- package/dist/core/skill-resources.js +61 -8
- package/dist/dialect-drift.d.ts +18 -0
- package/dist/dialect-drift.js +44 -2
- package/dist/leaderboard.d.ts +1 -1
- package/dist/leaderboard.js +13 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -278,7 +278,7 @@ Targets Claude Code and Codex out of the box, or [your own harness](docs/authori
|
|
|
278
278
|
The **[docs index](docs/README.md)** is the full map, grouped by what you're doing:
|
|
279
279
|
|
|
280
280
|
- **Guides** — [verify instruction files](docs/verifying-instruction-files.md) · [test your harness](docs/harness-testing.md) · [measure a skill](docs/measuring-skills.md) · [ship a plugin](docs/for-plugin-authors.md) · [Codex & other harnesses](docs/harnesses.md)
|
|
281
|
-
- **Reference** — [CLI](docs/cli.md) · [rules matrix](docs/verifying-instruction-files.md#the-validation-rules--the-full-matrix) · [testing API](docs/testing-api.md) · [full API](https://zernie.github.io/vigiles/)
|
|
281
|
+
- **Reference** — [CLI](docs/cli.md) · [rules matrix](docs/verifying-instruction-files.md#the-validation-rules--the-full-matrix) · [testing API](docs/testing-api.md) · [full API](https://zernie.github.io/vigiles/api/)
|
|
282
282
|
- **Explanation** — [what it catches](docs/what-vigiles-catches.md) · [how it compares](docs/comparison.md) · [FAQ](docs/faq.md)
|
|
283
283
|
|
|
284
284
|
**Project** — [Stability](STABILITY.md) · [Related tools](docs/comparison.md#what-vigiles-composes-with)
|
package/dist/audit-score.d.ts
CHANGED
|
@@ -14,8 +14,10 @@
|
|
|
14
14
|
* (`lethalTrifectaIssues` → `report.trifectaFindings`): a unit holding all three
|
|
15
15
|
* capability legs is a prompt-injection exfil path detectable from the tool-SET
|
|
16
16
|
* alone — nothing executes, so it sidesteps the confinement blocker. A `"hard"`
|
|
17
|
-
* (explicit all-three) finding is GRADED into the overall
|
|
18
|
-
* (
|
|
17
|
+
* (explicit all-three) finding is GRADED into the overall at a REDUCED weight
|
|
18
|
+
* (`W_TRIFECTA=10`, HALF the old 20 — a DING, not a fail: it dents the grade
|
|
19
|
+
* without a catastrophic F for a pattern official plugins ship by design); a
|
|
20
|
+
* `"advisory"` (inherits-all) finding is SHOWN in the ring but not graded. NB the EXECUTING
|
|
19
21
|
* "do your hooks actually block?" disaster-battery is STILL not an `audit` ring:
|
|
20
22
|
* running arbitrary hooks safely needs cross-platform confinement that isn't
|
|
21
23
|
* shipped yet, so the battery lives in the `vigiles/testing` API via
|
package/dist/audit-score.js
CHANGED
|
@@ -18,8 +18,10 @@ exports.formatAuditScore = formatAuditScore;
|
|
|
18
18
|
* (`lethalTrifectaIssues` → `report.trifectaFindings`): a unit holding all three
|
|
19
19
|
* capability legs is a prompt-injection exfil path detectable from the tool-SET
|
|
20
20
|
* alone — nothing executes, so it sidesteps the confinement blocker. A `"hard"`
|
|
21
|
-
* (explicit all-three) finding is GRADED into the overall
|
|
22
|
-
* (
|
|
21
|
+
* (explicit all-three) finding is GRADED into the overall at a REDUCED weight
|
|
22
|
+
* (`W_TRIFECTA=10`, HALF the old 20 — a DING, not a fail: it dents the grade
|
|
23
|
+
* without a catastrophic F for a pattern official plugins ship by design); a
|
|
24
|
+
* `"advisory"` (inherits-all) finding is SHOWN in the ring but not graded. NB the EXECUTING
|
|
23
25
|
* "do your hooks actually block?" disaster-battery is STILL not an `audit` ring:
|
|
24
26
|
* running arbitrary hooks safely needs cross-platform confinement that isn't
|
|
25
27
|
* shipped yet, so the battery lives in the `vigiles/testing` API via
|
|
@@ -154,9 +156,10 @@ function structure(r) {
|
|
|
154
156
|
};
|
|
155
157
|
}
|
|
156
158
|
/**
|
|
157
|
-
* SAFETY — fed by the STATIC lethal-trifecta check (`report.trifectaFindings`)
|
|
158
|
-
* A `"hard"` finding (an explicit contract naming all three
|
|
159
|
-
*
|
|
159
|
+
* SAFETY — fed by the STATIC lethal-trifecta check (`report.trifectaFindings`), a
|
|
160
|
+
* GRADED ring. A `"hard"` finding (an explicit contract naming all three
|
|
161
|
+
* capability legs) is a prompt-injection exfil path and is GRADED at a REDUCED
|
|
162
|
+
* weight (`W_TRIFECTA=10` each — HALF the old 20, a DING not a fail; the same
|
|
160
163
|
* weight `reportDeductions` sums into the overall, so the ring and the headline
|
|
161
164
|
* agree). A `"advisory"` finding (inherits-all) is SHOWN in the ring's findings
|
|
162
165
|
* but NOT graded — aligned with the inherits-all-is-advisory stance.
|
|
@@ -25,6 +25,15 @@ exports.skillResourceIssues = skillResourceIssues;
|
|
|
25
25
|
* MISSING a real ref over emitting a false positive — a noisy resource check
|
|
26
26
|
* would teach users to ignore it.
|
|
27
27
|
*
|
|
28
|
+
* The INLINE-CODE path form is weaker than a link, so it carries an extra prose
|
|
29
|
+
* gate: a skill that TEACHES how to build skills mentions bundle paths
|
|
30
|
+
* constantly as EXAMPLES of what a skill *could* ship ("a `scripts/rotate.py`
|
|
31
|
+
* would be helpful to store", "**Examples**: `references/finance.md`"). An
|
|
32
|
+
* inline path is treated as a real reference ONLY when the line DIRECTS the
|
|
33
|
+
* agent to use the file (read/run/see/…) and carries no illustrative cue
|
|
34
|
+
* (example / e.g. / such as / would be / template / →). Markdown links are
|
|
35
|
+
* unchanged — a link is already an act-on-it reference. See `inlinePathIsUsed`.
|
|
36
|
+
*
|
|
28
37
|
* Pure: the only IO is an injectable `existsSync` (default node:fs), mirroring
|
|
29
38
|
* core/refs.ts and the loader so the detector is testable with a fake.
|
|
30
39
|
*/
|
|
@@ -119,6 +128,46 @@ function isInlineBundlePath(token) {
|
|
|
119
128
|
const normalized = t.replace(/^\.\//, "");
|
|
120
129
|
return BUNDLE_PREFIX.test(normalized) && HAS_EXT.test(normalized);
|
|
121
130
|
}
|
|
131
|
+
// ---------------------------------------------------------------------------
|
|
132
|
+
// Inline-path prose gate (don't-cry-wolf on TEACHING / illustrative skills)
|
|
133
|
+
// ---------------------------------------------------------------------------
|
|
134
|
+
//
|
|
135
|
+
// An inline-code bundle path (`` `scripts/foo.py` ``) is a much WEAKER signal
|
|
136
|
+
// than a markdown link — skills that TEACH how to build skills (e.g. the
|
|
137
|
+
// official `skill-development` skill) are full of bundle paths used as
|
|
138
|
+
// EXAMPLES of what a skill *could* contain, not as references to a file the
|
|
139
|
+
// skill actually ships: "a `scripts/rotate_pdf.py` would be helpful to store",
|
|
140
|
+
// "**Examples**: `references/finance.md` …", "- **`references/patterns.md`** —
|
|
141
|
+
// Common patterns". Flagging those as "bundled resource not found" cries wolf
|
|
142
|
+
// and graded a clean, correct skill an F.
|
|
143
|
+
//
|
|
144
|
+
// So an inline path is only treated as a real reference when the surrounding
|
|
145
|
+
// prose DIRECTS the agent to ACT on the file (read/run/see/…) AND carries no
|
|
146
|
+
// illustrative/hypothetical cue. Markdown links (`[text](path)`) are unchanged
|
|
147
|
+
// — a link is already a high-confidence, follow-me reference. We bias HARD
|
|
148
|
+
// toward precision here: missing a real dead-ref is far better than a false
|
|
149
|
+
// positive on a teaching skill (the same don't-cry-wolf discipline as the
|
|
150
|
+
// loader's `danglingRefs`).
|
|
151
|
+
// Verbs that direct the agent to CONSUME an existing file. Deliberately EXCLUDES
|
|
152
|
+
// authoring verbs (store/create/add/move/write) — "a `scripts/x.py` would be
|
|
153
|
+
// helpful to STORE in the skill" is describing a resource to CREATE, exactly
|
|
154
|
+
// what a teaching skill illustrates, not a file the skill already ships.
|
|
155
|
+
const USE_DIRECTIVE = /\b(run|runs|execute|executes|read|reads|load|loads|open|opens|source|sources|import|imports|see|view|refer|follow|call|invoke|apply|consult|check)\b/i;
|
|
156
|
+
// Illustrative / hypothetical prose cues — a line carrying one is describing
|
|
157
|
+
// what a skill MIGHT contain (an example, a suggestion, a template), not
|
|
158
|
+
// pointing at a shipped file. Includes the `→`/`->` arrow used in "move detail
|
|
159
|
+
// → `references/x.md`" authoring lists.
|
|
160
|
+
const ILLUSTRATIVE_CUE = /\b(example|examples|e\.g\.?|i\.e\.?|such as|for instance|would be|helpful|useful|template|boilerplate)\b|→|->/i;
|
|
161
|
+
/**
|
|
162
|
+
* Whether an inline bundle-path on this line reads as a REAL reference (the
|
|
163
|
+
* agent is told to use the file) rather than an illustrative mention. Requires
|
|
164
|
+
* a positive use-directive and the absence of an illustrative cue — both
|
|
165
|
+
* evaluated over the whole line for simplicity (a tight, precise rule over a
|
|
166
|
+
* clever one). Only the inline-path branch consults this; markdown links do not.
|
|
167
|
+
*/
|
|
168
|
+
function inlinePathIsUsed(line) {
|
|
169
|
+
return USE_DIRECTIVE.test(line) && !ILLUSTRATIVE_CUE.test(line);
|
|
170
|
+
}
|
|
122
171
|
/** Collect candidate bundled-resource refs from one body line, skipping fences. */
|
|
123
172
|
function candidatesInLine(line, lineNo) {
|
|
124
173
|
const out = [];
|
|
@@ -129,14 +178,18 @@ function candidatesInLine(line, lineNo) {
|
|
|
129
178
|
out.push({ ref: m[1].trim(), resolved, kind: "link", line: lineNo });
|
|
130
179
|
}
|
|
131
180
|
}
|
|
132
|
-
// Inline-code path mentions: only the high-confidence bundle-dir-prefixed
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
181
|
+
// Inline-code path mentions: only the high-confidence bundle-dir-prefixed
|
|
182
|
+
// form, AND only when the surrounding prose USES the file (not an illustrative
|
|
183
|
+
// mention on a teaching skill — see `inlinePathIsUsed`).
|
|
184
|
+
if (inlinePathIsUsed(line)) {
|
|
185
|
+
for (const m of line.matchAll(INLINE_SPAN)) {
|
|
186
|
+
const token = m[1].trim();
|
|
187
|
+
if (!isInlineBundlePath(token))
|
|
188
|
+
continue;
|
|
189
|
+
const resolved = localResourceTarget(token);
|
|
190
|
+
if (resolved !== null) {
|
|
191
|
+
out.push({ ref: token, resolved, kind: "path", line: lineNo });
|
|
192
|
+
}
|
|
140
193
|
}
|
|
141
194
|
}
|
|
142
195
|
return out;
|
package/dist/dialect-drift.d.ts
CHANGED
|
@@ -43,9 +43,27 @@ export declare function eventsMissingFromBundle(bundle: string, events: readonly
|
|
|
43
43
|
* we only read files the user already installed under their own CC license.
|
|
44
44
|
*/
|
|
45
45
|
export declare function findClaudeCodePackage(): string | null;
|
|
46
|
+
/**
|
|
47
|
+
* Extract the semver core from a `claude --version` line
|
|
48
|
+
* (e.g. `"2.1.211 (Claude Code)"` → `"2.1.211"`). Pure; null when absent.
|
|
49
|
+
*/
|
|
50
|
+
export declare function parseClaudeVersion(raw: string): string | null;
|
|
51
|
+
/**
|
|
52
|
+
* The version of the `claude` binary actually on PATH — which can DIFFER from the
|
|
53
|
+
* package {@link findClaudeCodePackage} locates. In the native-binary era CC ships
|
|
54
|
+
* as a platform binary with no readable `sdk-tools.d.ts`, so a box can carry a
|
|
55
|
+
* stale leftover `@anthropic-ai/claude-code` in a global `node_modules` (readable,
|
|
56
|
+
* but months old and NOT what's running) beside the real, newer CC. Reconciling
|
|
57
|
+
* against this stops the drift alarm crying wolf on that leftover. Real IO; null
|
|
58
|
+
* when `claude` isn't runnable.
|
|
59
|
+
*/
|
|
60
|
+
export declare function onPathClaudeVersion(): string | null;
|
|
46
61
|
/** A runtime drift report: how the INSTALLED CC's tool surface compares to ours. */
|
|
47
62
|
export interface DialectDriftReport {
|
|
63
|
+
/** Version of the located `@anthropic-ai/claude-code` package (its types we read). */
|
|
48
64
|
readonly installedVersion: string;
|
|
65
|
+
/** Version of the `claude` binary on PATH, or null — the actually-running CC. */
|
|
66
|
+
readonly runningVersion: string | null;
|
|
49
67
|
readonly validatedVersion: string;
|
|
50
68
|
/** Tool-input types present in the install but not in ACKNOWLEDGED (CC added). */
|
|
51
69
|
readonly newToolTypes: string[];
|
package/dist/dialect-drift.js
CHANGED
|
@@ -5,6 +5,8 @@ exports.parseToolInputTypes = parseToolInputTypes;
|
|
|
5
5
|
exports.findClaudeCodeBundle = findClaudeCodeBundle;
|
|
6
6
|
exports.eventsMissingFromBundle = eventsMissingFromBundle;
|
|
7
7
|
exports.findClaudeCodePackage = findClaudeCodePackage;
|
|
8
|
+
exports.parseClaudeVersion = parseClaudeVersion;
|
|
9
|
+
exports.onPathClaudeVersion = onPathClaudeVersion;
|
|
8
10
|
exports.checkDialectDrift = checkDialectDrift;
|
|
9
11
|
exports.formatDialectDrift = formatDialectDrift;
|
|
10
12
|
/**
|
|
@@ -36,7 +38,13 @@ exports.formatDialectDrift = formatDialectDrift;
|
|
|
36
38
|
* NOT a readable `cli.js` JS bundle. So the old "grep hook-event string literals out
|
|
37
39
|
* of cli.js" check has no bundle to read and degrades to a LOUD SKIP (see
|
|
38
40
|
* `findClaudeCodeBundle`); `sdk-tools.d.ts` is still shipped, so the tool-type drift
|
|
39
|
-
* alarm keeps working.
|
|
41
|
+
* alarm keeps working. But the native binary means a box can carry a STALE leftover
|
|
42
|
+
* `@anthropic-ai/claude-code` JS package (readable `sdk-tools.d.ts`, months old) in a
|
|
43
|
+
* global `node_modules` while the real, newer CC runs from the native binary — so
|
|
44
|
+
* `findClaudeCodePackage` can locate a package that ISN'T what's running. The runtime
|
|
45
|
+
* alarm (`checkDialectDrift`/`formatDialectDrift`) reconciles the located package
|
|
46
|
+
* version against the on-PATH `claude --version` and SUPPRESSES the warning on a
|
|
47
|
+
* mismatch (the located types don't describe the running CC — crying wolf otherwise).
|
|
40
48
|
*
|
|
41
49
|
* Pure parsers (testable with fixtures) + a local-install locator. TWO consumers:
|
|
42
50
|
* the gated CI test in `dialect-drift.test.ts` (fails loud on tool/event drift), and
|
|
@@ -167,6 +175,31 @@ function findClaudeCodePackage() {
|
|
|
167
175
|
}
|
|
168
176
|
return null;
|
|
169
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* Extract the semver core from a `claude --version` line
|
|
180
|
+
* (e.g. `"2.1.211 (Claude Code)"` → `"2.1.211"`). Pure; null when absent.
|
|
181
|
+
*/
|
|
182
|
+
function parseClaudeVersion(raw) {
|
|
183
|
+
const m = raw.match(/\b(\d+\.\d+\.\d+)\b/);
|
|
184
|
+
return m ? m[1] : null;
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* The version of the `claude` binary actually on PATH — which can DIFFER from the
|
|
188
|
+
* package {@link findClaudeCodePackage} locates. In the native-binary era CC ships
|
|
189
|
+
* as a platform binary with no readable `sdk-tools.d.ts`, so a box can carry a
|
|
190
|
+
* stale leftover `@anthropic-ai/claude-code` in a global `node_modules` (readable,
|
|
191
|
+
* but months old and NOT what's running) beside the real, newer CC. Reconciling
|
|
192
|
+
* against this stops the drift alarm crying wolf on that leftover. Real IO; null
|
|
193
|
+
* when `claude` isn't runnable.
|
|
194
|
+
*/
|
|
195
|
+
function onPathClaudeVersion() {
|
|
196
|
+
try {
|
|
197
|
+
return parseClaudeVersion((0, node_child_process_1.execSync)("claude --version", { encoding: "utf-8" }));
|
|
198
|
+
}
|
|
199
|
+
catch {
|
|
200
|
+
return null;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
170
203
|
/**
|
|
171
204
|
* Best-effort, read-local drift check for `scan` (and other runtime callers). Reads
|
|
172
205
|
* only the small `sdk-tools.d.ts` (fast — no `cli.js` bundle scan; events are the
|
|
@@ -191,6 +224,7 @@ function checkDialectDrift() {
|
|
|
191
224
|
}
|
|
192
225
|
return {
|
|
193
226
|
installedVersion,
|
|
227
|
+
runningVersion: onPathClaudeVersion(),
|
|
194
228
|
validatedVersion: exports.VALIDATED_CC_VERSION,
|
|
195
229
|
newToolTypes: [...installed].filter((t) => !ack.has(t)).sort(),
|
|
196
230
|
removedToolTypes: [...ack].filter((t) => !installed.has(t)).sort(),
|
|
@@ -202,7 +236,15 @@ function checkDialectDrift() {
|
|
|
202
236
|
}
|
|
203
237
|
/** A one-line freshness warning if the dialect drifted from the install, else null. */
|
|
204
238
|
function formatDialectDrift(r) {
|
|
205
|
-
if (!r
|
|
239
|
+
if (!r)
|
|
240
|
+
return null;
|
|
241
|
+
// The located `sdk-tools.d.ts` belongs to a DIFFERENT install than the CC
|
|
242
|
+
// actually running (a stale leftover npm package beside a newer native binary),
|
|
243
|
+
// so its tool set says nothing about the CC you're on — don't cry wolf. The
|
|
244
|
+
// pinned CI drift TEST is where real drift is gated.
|
|
245
|
+
if (r.runningVersion && r.runningVersion !== r.installedVersion)
|
|
246
|
+
return null;
|
|
247
|
+
if (r.newToolTypes.length === 0 && r.removedToolTypes.length === 0)
|
|
206
248
|
return null;
|
|
207
249
|
const parts = [];
|
|
208
250
|
if (r.newToolTypes.length > 0)
|
package/dist/leaderboard.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export declare const W_NO_DESCRIPTION = 10;
|
|
|
26
26
|
export declare const W_DANGLING_REF = 8;
|
|
27
27
|
export declare const W_OVERLAP = 8;
|
|
28
28
|
export declare const W_NO_CONTRACT = 5;
|
|
29
|
-
export declare const W_TRIFECTA =
|
|
29
|
+
export declare const W_TRIFECTA = 10;
|
|
30
30
|
/** Map a 0–100 structural-health score to its letter grade (A ≥90 … F <60). */
|
|
31
31
|
export declare function gradeFor(score: number): PluginScore["grade"];
|
|
32
32
|
/** One deduction: a count, its per-item weight, and the label if non-zero. */
|
package/dist/leaderboard.js
CHANGED
|
@@ -49,10 +49,12 @@ exports.W_NO_DESCRIPTION = 10; // a skill with no usable description → can't t
|
|
|
49
49
|
exports.W_DANGLING_REF = 8; // a referenced intra-plugin file that's missing → broken path
|
|
50
50
|
exports.W_OVERLAP = 8; // a description collision → the wrong skill fires
|
|
51
51
|
exports.W_NO_CONTRACT = 5; // generic small-footgun weight (disallowedTools typo, invalid model/color)
|
|
52
|
-
exports.W_TRIFECTA =
|
|
52
|
+
exports.W_TRIFECTA = 10; // a HARD lethal-trifecta contract (all three legs, explicit) → a prompt-injection exfil path. HALF the old 20: a DING, not a fail — a trifecta is a real risk worth surfacing in the grade, but official plugins ship the pattern by design, so it dents the score (e.g. feature-dev's 3 hard units → −30 → C) without a catastrophic F.
|
|
53
53
|
// Two things are advisory, NOT graded penalties (shown, never scored — see scoreReport):
|
|
54
54
|
// - untested surfaces — a hardening gap, not breakage.
|
|
55
55
|
// - an agent that inherits all tools (no `tools:` line) — see reportDeductions for why.
|
|
56
|
+
// - an inherits-all (severity "advisory") trifecta finding — shown by the Safety
|
|
57
|
+
// ring but never scored; only the HARD, explicit all-three-legs finding grades.
|
|
56
58
|
/** Map a 0–100 structural-health score to its letter grade (A ≥90 … F <60). */
|
|
57
59
|
function gradeFor(score) {
|
|
58
60
|
if (score >= 90)
|
|
@@ -79,9 +81,11 @@ function reportDeductions(r) {
|
|
|
79
81
|
const deadMcpTools = r.agents.reduce((n, a) => n + a.mcpToolIssues.length, 0);
|
|
80
82
|
const deadDisallowed = r.agents.reduce((n, a) => n + a.disallowedToolIssues.length, 0);
|
|
81
83
|
// HARD lethal-trifecta findings only — an EXPLICIT contract naming all three
|
|
82
|
-
// legs (a
|
|
83
|
-
//
|
|
84
|
-
//
|
|
84
|
+
// legs (a prompt-injection exfil path). Graded at W_TRIFECTA=10 (HALF the old
|
|
85
|
+
// 20): a DING that surfaces a real risk in the grade without a catastrophic F
|
|
86
|
+
// for an accepted design pattern official plugins ship. Advisory (inherits-all)
|
|
87
|
+
// trifecta findings are surfaced but NEVER graded (aligned with the inherits-all
|
|
88
|
+
// stance), so they're excluded here.
|
|
85
89
|
const hardTrifecta = r.trifectaFindings.filter((f) => f.finding.severity === "hard").length;
|
|
86
90
|
return [
|
|
87
91
|
{
|
|
@@ -283,13 +287,13 @@ function formatLeaderboard(scores) {
|
|
|
283
287
|
const issue = s.issues.length > 0 ? ` — ${s.issues.join("; ")}` : "";
|
|
284
288
|
out.push(` ${rank} ${score} ${s.grade} ${s.name}${issue}`);
|
|
285
289
|
});
|
|
286
|
-
out.push("", "Structural health only (no model). Weights:
|
|
290
|
+
out.push("", "Structural health only (no model). Weights: missing hook -15, hard lethal-", "trifecta unit -10, no-description skill -10, broken intra-plugin ref -8, dead", "tool/MCP ref -8. Inherit-all subagents, inherits-all trifecta and untested", "surfaces are advisory — shown, not scored.");
|
|
287
291
|
return out.join("\n");
|
|
288
292
|
}
|
|
289
|
-
const LEADERBOARD_METHOD = "_Structural health only (deterministic, no model):
|
|
290
|
-
"
|
|
291
|
-
"Inherit-all subagents and untested surfaces are advisory
|
|
292
|
-
"scored). Behavioural columns (trigger-rate, collisions, egress) stack on top._";
|
|
293
|
+
const LEADERBOARD_METHOD = "_Structural health only (deterministic, no model): missing hook −15, hard " +
|
|
294
|
+
"lethal-trifecta unit −10, no-description skill −10, broken intra-plugin / dead-tool ref −8. " +
|
|
295
|
+
"Inherit-all subagents, inherits-all trifecta and untested surfaces are advisory " +
|
|
296
|
+
"(shown, not scored). Behavioural columns (trigger-rate, collisions, egress) stack on top._";
|
|
293
297
|
/**
|
|
294
298
|
* Format a ranked leaderboard as a Markdown table — the PUBLISHABLE form (a README,
|
|
295
299
|
* a gist, the leaderboard site). Shows the top 2 deductions per plugin; the full
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vigiles",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.3.0",
|
|
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",
|