@iris-eval/mcp-server 0.6.0 → 0.8.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.
Files changed (38) hide show
  1. package/README.md +7 -3
  2. package/dist/config/defaults.js +17 -1
  3. package/dist/config/index.js +8 -0
  4. package/dist/dashboard/assets/{index-CshLgDRB.js → index-DTA8DzF_.js} +1 -1
  5. package/dist/dashboard/index.html +1 -1
  6. package/dist/dashboard/routes/rules.d.ts +8 -11
  7. package/dist/dashboard/routes/rules.js +9 -16
  8. package/dist/dashboard/routes/traces.js +14 -2
  9. package/dist/dashboard/validation.d.ts +4 -4
  10. package/dist/dashboard/validation.js +6 -2
  11. package/dist/eval/criticality.d.ts +67 -0
  12. package/dist/eval/criticality.js +154 -0
  13. package/dist/eval/engine.d.ts +33 -2
  14. package/dist/eval/engine.js +64 -8
  15. package/dist/eval/rules/cost.d.ts +9 -0
  16. package/dist/eval/rules/cost.js +97 -1
  17. package/dist/eval/rules/relevance.d.ts +13 -0
  18. package/dist/eval/rules/relevance.js +185 -21
  19. package/dist/eval/rules/safety.d.ts +13 -1
  20. package/dist/eval/rules/safety.js +273 -21
  21. package/dist/eval/rules/trajectory.d.ts +91 -0
  22. package/dist/eval/rules/trajectory.js +297 -0
  23. package/dist/index.js +1 -1
  24. package/dist/self-test.js +1 -1
  25. package/dist/server.js +1 -1
  26. package/dist/tools/evaluate-output.js +38 -23
  27. package/dist/tools/index.js +1 -1
  28. package/dist/tools/list-rules.d.ts +2 -1
  29. package/dist/tools/list-rules.js +22 -4
  30. package/dist/tools/log-trace.d.ts +8 -1
  31. package/dist/tools/log-trace.js +19 -4
  32. package/dist/tools/strict-input.js +2 -2
  33. package/dist/tools/trace-link.d.ts +10 -0
  34. package/dist/tools/trace-link.js +13 -1
  35. package/dist/types/config.d.ts +14 -0
  36. package/dist/types/eval.d.ts +39 -7
  37. package/package.json +8 -1
  38. package/server.json +2 -2
@@ -1,3 +1,4 @@
1
+ import { callKey, describeInput, skipWithoutTrajectory } from './trajectory.js';
1
2
  export const costUnderThreshold = {
2
3
  name: 'cost_under_threshold',
3
4
  description: 'Total cost must be under a configurable USD threshold',
@@ -44,4 +45,99 @@ export const tokenEfficiency = {
44
45
  };
45
46
  },
46
47
  };
47
- export const costRules = [costUnderThreshold, tokenEfficiency];
48
+ /** Default for config key `max_tool_repeats`: how many identical calls are tolerated. */
49
+ export const DEFAULT_MAX_TOOL_REPEATS = 3;
50
+ /**
51
+ * How many complete A,B,A,B cycles are tolerated before the alternation is
52
+ * a loop. Three cycles is six consecutive calls that between them made two
53
+ * distinct requests.
54
+ */
55
+ export const MAX_TWO_CALL_CYCLES = 2;
56
+ /** The longest run of alternating A,B calls, and how many complete cycles it holds. */
57
+ function longestTwoCallCycle(keys) {
58
+ let best = null;
59
+ for (let start = 0; start + 3 < keys.length; start++) {
60
+ const a = keys[start];
61
+ const b = keys[start + 1];
62
+ if (a === b)
63
+ continue;
64
+ let len = 2;
65
+ while (start + len < keys.length && keys[start + len] === (len % 2 === 0 ? a : b))
66
+ len++;
67
+ const cycles = Math.floor(len / 2);
68
+ if (cycles >= 2 && (best === null || cycles > best.cycles))
69
+ best = { a, b, cycles };
70
+ }
71
+ return best;
72
+ }
73
+ /*
74
+ * The other half of what the trajectory shows: not a wrong answer, a wasted
75
+ * one.
76
+ *
77
+ * Transcript t-16 answers the question correctly, and gets there by running
78
+ * the identical `ls src/tools` five times with five identical results. Four
79
+ * of those turns bought nothing, and each one resent the whole context —
80
+ * 18,918 prompt tokens for a directory listing. cost_under_threshold cannot
81
+ * see it: the bill still comes to $0.0621, well under the $0.10 default. The
82
+ * loop is only visible in the sequence of calls.
83
+ *
84
+ * Cost, not completeness or safety, because that is where the harm lands —
85
+ * spend and latency, on an answer that was already available. Non-critical
86
+ * for the same reason: a repetitive agent is wasteful, not unsafe, and
87
+ * `passed` should not be vetoed by a behavioural signal.
88
+ */
89
+ export const noToolLoop = {
90
+ name: 'no_tool_loop',
91
+ description: 'The agent must not repeat itself. Fails when one tool is called with an identical input (object keys sorted, whitespace collapsed) more than max_tool_repeats times — default 3, config key `max_tool_repeats` — or when two calls alternate for more than two complete A,B,A,B cycles. Skips when no tool calls are provided, so an evaluation with no trajectory reports "not judged" rather than clean. Catches the wasted spend a cost threshold cannot see: five identical calls can still bill under a per-evaluation cost limit',
92
+ evalType: 'cost',
93
+ weight: 1,
94
+ evaluate(context) {
95
+ const skip = skipWithoutTrajectory('no_tool_loop', context);
96
+ if (skip)
97
+ return skip;
98
+ const calls = context.toolCalls ?? [];
99
+ const configured = context.customConfig?.max_tool_repeats;
100
+ const maxRepeats = typeof configured === 'number' && Number.isFinite(configured) && configured >= 1
101
+ ? Math.floor(configured)
102
+ : DEFAULT_MAX_TOOL_REPEATS;
103
+ const keys = calls.map(callKey);
104
+ const counts = new Map();
105
+ for (const key of keys)
106
+ counts.set(key, (counts.get(key) ?? 0) + 1);
107
+ let worstKey = '';
108
+ let worstCount = 0;
109
+ for (const [key, count] of counts) {
110
+ if (count > worstCount) {
111
+ worstKey = key;
112
+ worstCount = count;
113
+ }
114
+ }
115
+ if (worstCount > maxRepeats) {
116
+ const call = calls[keys.indexOf(worstKey)];
117
+ return {
118
+ ruleName: 'no_tool_loop',
119
+ passed: false,
120
+ score: Math.max(0, 1 - (worstCount - maxRepeats) * 0.25),
121
+ message: `Tool loop: ${call.tool_name} called ${worstCount} times with the same input — ${describeInput(call.input)} — over ${calls.length} call${calls.length === 1 ? '' : 's'} (max ${maxRepeats})`,
122
+ };
123
+ }
124
+ const cycle = longestTwoCallCycle(keys);
125
+ if (cycle !== null && cycle.cycles > MAX_TWO_CALL_CYCLES) {
126
+ const a = calls[keys.indexOf(cycle.a)];
127
+ const b = calls[keys.indexOf(cycle.b)];
128
+ return {
129
+ ruleName: 'no_tool_loop',
130
+ passed: false,
131
+ score: Math.max(0, 1 - (cycle.cycles - MAX_TWO_CALL_CYCLES) * 0.25),
132
+ message: `Tool loop: ${a.tool_name} (${describeInput(a.input)}) and ${b.tool_name} (${describeInput(b.input)}) alternate for ${cycle.cycles} cycles (max ${MAX_TWO_CALL_CYCLES})`,
133
+ };
134
+ }
135
+ return {
136
+ ruleName: 'no_tool_loop',
137
+ passed: true,
138
+ score: 1,
139
+ message: `No repeated tool call (${calls.length} call${calls.length === 1 ? '' : 's'}; most repeated ran ${worstCount}×, max ${maxRepeats})`,
140
+ };
141
+ },
142
+ };
143
+ export const costRules = [costUnderThreshold, tokenEfficiency, noToolLoop];
@@ -1,4 +1,17 @@
1
1
  import type { EvalRule } from '../../types/eval.js';
2
+ /**
3
+ * Light stemmer: plurals, -ing/-ed/-ly, -ation/-ator/-ate/-ion, a trailing
4
+ * e, and a doubled final consonant. Crude on purpose (see the header):
5
+ * both sides are stemmed identically.
6
+ */
7
+ export declare function stemTerm(word: string): string;
8
+ /**
9
+ * Content terms of a text: fenced code removed, camelCase split, everything
10
+ * that is not a run of three or more letters treated as a separator (so
11
+ * paths, flags, snake_case and dotted identifiers fall apart into their
12
+ * words and numbers vanish), stopwords dropped, the rest stemmed.
13
+ */
14
+ export declare function contentTerms(text: string): string[];
2
15
  export declare const keywordOverlap: EvalRule;
3
16
  export declare const topicConsistency: EvalRule;
4
17
  export declare const relevanceRules: EvalRule[];
@@ -1,30 +1,154 @@
1
+ /*
2
+ * Relevance rules — one tokenizer, two DISTINCT signals.
3
+ *
4
+ * Redesigned after the arc-one acceptance pass ran twenty-four transcripts
5
+ * produced by an agent genuinely working against this repository
6
+ * (tests/fixtures/real-transcripts/). Three grounded, correct technical
7
+ * answers — what `--purge` does, what `eval_type: "all"` returns, a
8
+ * one-paragraph product description — failed topic_consistency at
9
+ * 6.7% / 3.6% / 2.0%. The old measure was the fraction of OUTPUT words that
10
+ * also appear in the INPUT, which punishes precisely what a good technical
11
+ * answer does: bring the source's vocabulary (identifiers, file names,
12
+ * exact values, mechanism) to a short question that did not contain it.
13
+ * The failure was structural — no threshold rescues a measure that reads
14
+ * new, correct vocabulary as drift — so the measure changed, not the number.
15
+ *
16
+ * keyword_overlap RECALL. What share of the ask's content terms does the
17
+ * output engage at all? Fails a refusal, a different
18
+ * product, filler, an answer that never touches the
19
+ * subject.
20
+ * topic_consistency CONTINUITY. What share of the output's content-
21
+ * bearing sentences connect to the ask — directly, or
22
+ * through an earlier connected sentence? Fails an answer
23
+ * that opens on topic and wanders, and everything
24
+ * keyword_overlap fails. Grounded answers chain their
25
+ * vocabulary back to the ask; a ramble does not.
26
+ *
27
+ * Both rules share the tokenizer below, so they agree on what a "term" is
28
+ * and no longer double-count one measurement:
29
+ * - stopwords (articles, pronouns, auxiliaries, question words, the
30
+ * request verbs — "explain", "summarise", "tell me" — and the form of
31
+ * the deliverable — "paragraph", "bullets", "summary") are not terms;
32
+ * - code identifiers, paths and flags are SPLIT into their words
33
+ * (`EvalEngine.evaluateAll()` → eval, engine, evaluate; `src/index.ts`
34
+ * → src, index) rather than dropped: the words inside an identifier
35
+ * ARE topic vocabulary, and dropping them was half of the old failure;
36
+ * - numbers and fenced code blocks are neutral (neither for nor against);
37
+ * - a light stemmer folds inflections (purge/purged/purging, rule/rules,
38
+ * evaluate/evaluation/evaluator) so the same word in a different form
39
+ * still counts. It is deliberately crude — both sides get the same
40
+ * treatment, so an imperfect stem only lowers sensitivity, never
41
+ * invents a match.
42
+ *
43
+ * Honest limits (lexical, no model): an answer that paraphrases the ask
44
+ * with none of its words reads as off topic; a coherent essay on the wrong
45
+ * subject that happens to reuse one of the ask's words reads as on topic.
46
+ * Semantic relevance is the LLM judge's job (evaluate_with_llm_judge,
47
+ * `relevance` template).
48
+ */
49
+ const STOPWORDS = new Set(('a an the and or nor but if then else than that this these those there here it its is are was were be been being ' +
50
+ 'am do does did done doing have has had having will would shall should can could may might must not no yes of in on ' +
51
+ 'at to for from by with without into onto over under about above below between among through during before after ' +
52
+ 'again further once out off up down as so such very really just only also too either neither both each every all any ' +
53
+ 'some few more most less least other another same own new old first second third next last one two three four five ' +
54
+ 'ten i me my mine we us our ours you your yours he him his she her hers they them their theirs who whom whose which ' +
55
+ 'what when where why how because while until unless since although though even ever never always often sometimes ' +
56
+ 'usually still yet already now anywhere everywhere something anything nothing everything someone anyone everyone ' +
57
+ 'nobody thing things way ways kind kinds sort sorts lot lots much many get gets got getting give gives gave given ' +
58
+ 'giving take takes took taken taking make makes made making use uses used using see sees saw seen seeing know knows ' +
59
+ 'knew known knowing think thinks thought thinking want wants wanted wanting need needs needed needing let lets tell ' +
60
+ 'tells told telling say says said saying ask asks asked asking read reads reading look looks looked looking find ' +
61
+ 'finds found finding show shows showed shown showing explain explains explained explaining describe describes ' +
62
+ 'described describing summarise summarize summarises summarizes summarised summarized answer answers answered ' +
63
+ 'answering question questions please help helps helped helping like likes liked well good bad better best right ' +
64
+ 'wrong true false able keep keeps kept put puts go goes went gone going come comes came coming back also etc via per ' +
65
+ // The FORM of the deliverable, not its subject — "a one-paragraph
66
+ // description", "a few bullets", "a short summary", "in detail".
67
+ 'paragraph paragraphs sentence sentences bullet bullets summary overview description brief briefly detail details ' +
68
+ 'detailed word words line lines short long quick quickly ' +
69
+ // URL and domain furniture — "iris-eval.com" splits into iris, eval, com.
70
+ 'com org net www http https').split(' '));
71
+ /**
72
+ * Light stemmer: plurals, -ing/-ed/-ly, -ation/-ator/-ate/-ion, a trailing
73
+ * e, and a doubled final consonant. Crude on purpose (see the header):
74
+ * both sides are stemmed identically.
75
+ */
76
+ export function stemTerm(word) {
77
+ let w = word;
78
+ if (w.length <= 3)
79
+ return w;
80
+ if (w.endsWith('ies'))
81
+ w = w.slice(0, -3) + 'i';
82
+ else if (w.endsWith('sses'))
83
+ w = w.slice(0, -2);
84
+ else if (w.endsWith('s') && !/(?:ss|us|is)$/.test(w))
85
+ w = w.slice(0, -1);
86
+ if (w.length > 5 && w.endsWith('ing'))
87
+ w = w.slice(0, -3);
88
+ else if (w.length > 4 && w.endsWith('ed'))
89
+ w = w.slice(0, -2);
90
+ else if (w.length > 4 && w.endsWith('ly'))
91
+ w = w.slice(0, -2);
92
+ else if (w.length > 6 && w.endsWith('ation'))
93
+ w = w.slice(0, -5);
94
+ else if (w.length > 5 && w.endsWith('ator'))
95
+ w = w.slice(0, -4);
96
+ else if (w.length > 5 && w.endsWith('ate'))
97
+ w = w.slice(0, -3);
98
+ else if (w.length > 5 && w.endsWith('ion'))
99
+ w = w.slice(0, -3);
100
+ if (w.length > 3 && w.endsWith('e'))
101
+ w = w.slice(0, -1);
102
+ if (w.length > 3 && /([^aeiou])\1$/.test(w) && !/[lsz]$/.test(w))
103
+ w = w.slice(0, -1);
104
+ return w;
105
+ }
106
+ const FENCED_CODE = /```[\s\S]*?```/g;
107
+ const CAMEL_BOUNDARY = /([a-z])([A-Z])/g;
108
+ const WORD = /[a-z]{3,}/g;
109
+ /**
110
+ * Content terms of a text: fenced code removed, camelCase split, everything
111
+ * that is not a run of three or more letters treated as a separator (so
112
+ * paths, flags, snake_case and dotted identifiers fall apart into their
113
+ * words and numbers vanish), stopwords dropped, the rest stemmed.
114
+ */
115
+ export function contentTerms(text) {
116
+ const terms = [];
117
+ const lowered = text.replace(FENCED_CODE, '\n').replace(CAMEL_BOUNDARY, '$1 $2').toLowerCase();
118
+ for (const match of lowered.matchAll(WORD)) {
119
+ if (STOPWORDS.has(match[0]))
120
+ continue;
121
+ terms.push(stemTerm(match[0]));
122
+ }
123
+ return terms;
124
+ }
1
125
  export const keywordOverlap = {
2
126
  name: 'keyword_overlap',
3
- description: 'Measures word overlap between input and output',
127
+ description: 'Recall of the input\'s content terms in the output: stopwords and request verbs are not terms, code identifiers and paths are split into their words, inflections are folded (purge/purged/purging). Passes when at least 35% of the input\'s terms appear in the output (configurable: keyword_overlap)',
4
128
  evalType: 'relevance',
5
129
  weight: 1,
6
130
  evaluate(context) {
7
131
  if (!context.input) {
8
132
  return { ruleName: 'keyword_overlap', passed: false, score: 0, message: 'No input provided', skipped: true, skipReason: 'context.input not provided' };
9
133
  }
10
- const inputWords = new Set(context.input.toLowerCase().split(/\W+/).filter((w) => w.length > 2));
11
- const outputWords = new Set(context.output.toLowerCase().split(/\W+/).filter((w) => w.length > 2));
12
- if (inputWords.size === 0) {
134
+ const inputTerms = new Set(contentTerms(context.input));
135
+ if (inputTerms.size === 0) {
13
136
  return { ruleName: 'keyword_overlap', passed: true, score: 1, message: 'No meaningful words in input' };
14
137
  }
138
+ const outputTerms = new Set(contentTerms(context.output));
15
139
  let overlap = 0;
16
- for (const word of inputWords) {
17
- if (outputWords.has(word))
140
+ for (const term of inputTerms) {
141
+ if (outputTerms.has(term))
18
142
  overlap++;
19
143
  }
20
- const ratio = overlap / inputWords.size;
144
+ const ratio = overlap / inputTerms.size;
21
145
  const threshold = context.customConfig?.keyword_overlap ?? 0.35;
22
146
  const passed = ratio >= threshold;
23
147
  return {
24
148
  ruleName: 'keyword_overlap',
25
149
  passed,
26
150
  score: Math.min(ratio * 2, 1),
27
- message: `${overlap}/${inputWords.size} input keywords found in output (${(ratio * 100).toFixed(0)}%)`,
151
+ message: `${overlap}/${inputTerms.size} input keywords found in output (${(ratio * 100).toFixed(0)}%)`,
28
152
  };
29
153
  },
30
154
  };
@@ -35,9 +159,22 @@ export const keywordOverlap = {
35
159
  * the dashboard's safety-violations panel, and the storage adapter's
36
160
  * violation counts have always placed it.
37
161
  */
162
+ /**
163
+ * A third of the content-bearing sentences must connect. Why a third and
164
+ * not half: the measure is a floor against drift, not a target — grounded
165
+ * answers in the real-transcript set connect 67–100% of their sentences —
166
+ * and the false positive that matters is the SHORT honest answer whose
167
+ * second and third sentences elaborate in fresh words ("It is sunny today.
168
+ * Expect a high of 75°F. Bring sunglasses."). At a half that answer fails;
169
+ * at a third it passes while "one on-topic sentence, then three about
170
+ * something else" (25%) still fails.
171
+ */
172
+ const DEFAULT_TOPIC_THRESHOLD = 1 / 3;
173
+ const LIST_ITEM = /^\s*(?:[-*+•]|\d{1,3}[.)])\s+/;
174
+ const SENTENCE_BREAK = /(?<=[.!?])\s+/;
38
175
  export const topicConsistency = {
39
176
  name: 'topic_consistency',
40
- description: 'Output stays on topic relative to input (skipped when output too brief for meaningful comparison)',
177
+ description: 'Continuity with the input: the share of the output\'s content-bearing sentences that connect to the input\'s topic — a sentence connects when it shares a content term with the input or with an earlier connected sentence (list items are read under the sentence that introduces them). Passes when at least a third connect (configurable: topic_consistency); a third, not half, so a short honest answer that elaborates in fresh words is not read as drift. Replaces the output-word-ratio measure that failed every grounded technical answer. Skipped when the output is too brief for meaningful comparison',
41
178
  evalType: 'relevance',
42
179
  weight: 1,
43
180
  evaluate(context) {
@@ -49,9 +186,8 @@ export const topicConsistency = {
49
186
  if (inputWords.length === 0 || outputWords.length === 0) {
50
187
  return { ruleName: 'topic_consistency', passed: false, score: 0, message: 'Insufficient text for topic analysis', skipped: true, skipReason: 'input or output has no words > 3 chars' };
51
188
  }
52
- // v0.3.1 fix: skip when output is too brief — short outputs (1-5 words >3 chars)
53
- // produce noisy ratios where the threshold can't meaningfully discriminate.
54
- // The previous version over-triggered as a false-positive on brief but valid responses.
189
+ // v0.3.1: skip when the output is too brief — a handful of words cannot
190
+ // be judged on topic or off it, and the rule used to cry wolf there.
55
191
  const minOutputWords = context.customConfig?.topic_consistency_min_words ?? 6;
56
192
  if (outputWords.length < minOutputWords) {
57
193
  return {
@@ -63,20 +199,48 @@ export const topicConsistency = {
63
199
  skipReason: `output has < ${minOutputWords} words ≥ 4 chars`,
64
200
  };
65
201
  }
66
- const inputSet = new Set(inputWords);
67
- let relevant = 0;
68
- for (const word of outputWords) {
69
- if (inputSet.has(word))
70
- relevant++;
202
+ const topic = new Set(contentTerms(context.input));
203
+ if (topic.size === 0) {
204
+ return { ruleName: 'topic_consistency', passed: false, score: 0, message: 'Insufficient text for topic analysis', skipped: true, skipReason: 'input has no content terms' };
205
+ }
206
+ // Walk the output line by line so list items can be read under their
207
+ // lead-in, and sentence by sentence within a line. `seen` is the topic
208
+ // so far: the input's terms plus every connected sentence's terms.
209
+ const seen = new Set(topic);
210
+ let sentences = 0;
211
+ let connected = 0;
212
+ let leadInConnected = false;
213
+ for (const line of context.output.replace(FENCED_CODE, '\n').split('\n')) {
214
+ const isItem = LIST_ITEM.test(line);
215
+ let lineConnected = false;
216
+ for (const sentence of line.split(SENTENCE_BREAK)) {
217
+ const terms = contentTerms(sentence);
218
+ if (terms.length === 0)
219
+ continue;
220
+ sentences++;
221
+ const hit = terms.some((t) => seen.has(t)) || (isItem && leadInConnected);
222
+ if (hit) {
223
+ connected++;
224
+ lineConnected = true;
225
+ for (const t of terms)
226
+ seen.add(t);
227
+ }
228
+ }
229
+ if (!isItem && line.trim().length > 0)
230
+ leadInConnected = lineConnected;
231
+ }
232
+ if (sentences === 0) {
233
+ return { ruleName: 'topic_consistency', passed: false, score: 0, message: 'Insufficient text for topic analysis', skipped: true, skipReason: 'output has no content terms' };
71
234
  }
72
- const ratio = relevant / outputWords.length;
73
- const threshold = context.customConfig?.topic_consistency ?? 0.10;
235
+ const ratio = connected / sentences;
236
+ const threshold = context.customConfig?.topic_consistency ?? DEFAULT_TOPIC_THRESHOLD;
74
237
  const passed = ratio >= threshold;
75
238
  return {
76
239
  ruleName: 'topic_consistency',
77
240
  passed,
78
- score: Math.min(ratio * 5, 1),
79
- message: `Topic consistency: ${(ratio * 100).toFixed(1)}% of output words relate to input`,
241
+ // Full marks at two thirds connected; proportional below.
242
+ score: Math.min(ratio * 1.5, 1),
243
+ message: `Topic consistency: ${connected}/${sentences} content sentences connect to the input's topic (${(ratio * 100).toFixed(0)}%)`,
80
244
  };
81
245
  },
82
246
  };
@@ -9,12 +9,23 @@ export declare const PII_PATTERNS: Array<{
9
9
  * with the count and the pattern names (#370): a builder smoke-testing with
10
10
  * `bob@example.com` or a 555 number used to read a bare "No PII detected"
11
11
  * and conclude detection was broken, when the rule had recognised the
12
- * value as documentation on purpose.
12
+ * value as documentation on purpose. Reserved IP addresses get their own
13
+ * clause in the same style — they are not documentation values, they are
14
+ * addresses that cannot identify anyone.
13
15
  */
14
16
  export declare function describeSuppressedPlaceholders(suppressed: Map<string, number>): string;
15
17
  export declare const noPii: EvalRule;
16
18
  export declare const noBlocklistWords: EvalRule;
17
19
  export declare const INJECTION_PATTERNS: RegExp[];
20
+ /**
21
+ * The one true sentence about what the injection rule looks at. It is
22
+ * shared verbatim by the rule description, the evaluate_output tool
23
+ * description and the docs (a drift-lock test pins every copy), because
24
+ * the tool used to sell unscoped "prompt injection" while the rule reads
25
+ * `context.output` and nothing else — a builder could reasonably take it
26
+ * for an input firewall, which it is not.
27
+ */
28
+ export declare const INJECTION_SCOPE_SENTENCE = "no_injection_patterns inspects the agent's OUTPUT text for injection-shaped content \u2014 attack phrasing and structural directives the output echoes or complies with \u2014 and never reads the input, so it is not an input firewall.";
18
29
  export declare const noInjectionPatterns: EvalRule;
19
30
  export declare const noStubOutput: EvalRule;
20
31
  export interface HallucinationSignal {
@@ -26,4 +37,5 @@ export interface HallucinationSignal {
26
37
  }
27
38
  export declare const HALLUCINATION_MARKERS: ReadonlyArray<HallucinationSignal>;
28
39
  export declare const noHallucinationMarkers: EvalRule;
40
+ export declare const noSilentToolFailure: EvalRule;
29
41
  export declare const safetyRules: EvalRule[];