mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-09 14:38:59 +02:00
Three one-shot decision experiments kept re-running weekly as N=1
stochastic comparisons — flaky by construction with near-zero remaining
information: skill-e2e-auq-repetition-cut-ab (its own header: gate "passed
pre-landing, approved 2026-08-25"), skill-e2e-preamble-script-ab ("demoted
post-Phase-3"), and opus-47's fanout arm-vs-arm (parA >= parB across two
SINGLE stochastic runs — a coin flip). Deleted, with their selection keys;
the SDK overlay-harness stays as the maintained instrument for the next
experiment, and opus-47 keeps its routing-precision cases.
verboseSkill() now reads the VENDORED test/fixtures/auq-pre-cut-...-SKILL.md
instead of `git show ab66193e^:...` — a branch-local ref that dies on
branch prune and already failed on shallow clones. New free tripwire
(test/git-ref-fixture-tripwire.test.ts) bans the raw-SHA fixture class
outright: quoted SHA:path rev-specs and gitRef-style hex defaults in the
test trees fail the suite with the vendor-instead instruction.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
269 lines
12 KiB
TypeScript
269 lines
12 KiB
TypeScript
/**
|
|
* Opus 4.7 behavior evals.
|
|
*
|
|
* One case, pinned to claude-opus-4-7:
|
|
*
|
|
* Routing precision — the "when in doubt, invoke the skill" policy should
|
|
* route ambiguous dev prompts to the right skill WITHOUT routing
|
|
* casual/non-dev prompts. A handful of positive and negative controls.
|
|
* (The fanout A/B retired 2026-08 — single-run parallel-call comparison was
|
|
* a coin flip; the SDK overlay-harness is the maintained instrument.)
|
|
*
|
|
* Both cases require a running Anthropic API key. Gated behind EVALS=1.
|
|
* Classify as `periodic` in touchfiles — behavior measurement, not gate.
|
|
*/
|
|
|
|
import { describe, test, expect, afterAll } from 'bun:test';
|
|
import { JUDGE_MS, CAPTURE_MS, CAPTURE_LONG_MS } from './helpers/eval-budgets';
|
|
import { runSkillTest } from './helpers/session-runner';
|
|
import { EvalCollector } from './helpers/eval-store';
|
|
import { extractSkillHead } from './helpers/skill-fixture';
|
|
import { spawnSync } from 'child_process';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import * as os from 'os';
|
|
|
|
const ROOT = path.resolve(import.meta.dir, '..');
|
|
const OPUS_47 = 'claude-opus-4-7';
|
|
|
|
const evalsEnabled = !!process.env.EVALS;
|
|
const describeE2E = evalsEnabled ? describe : describe.skip;
|
|
const evalCollector = evalsEnabled ? new EvalCollector('e2e-opus-47') : null;
|
|
const runId = new Date().toISOString().replace(/[:.]/g, '').replace('T', '-').slice(0, 15);
|
|
|
|
// --- Helpers ---
|
|
|
|
/** Skills that must exist as individual .claude/skills/{name}/SKILL.md files
|
|
* for Claude Code's auto-discovery to treat them as invokable via Skill tool.
|
|
* Matches the pattern in skill-routing-e2e.test.ts. */
|
|
const INSTALLED_SKILLS = [
|
|
'qa', 'qa-only', 'ship', 'review', 'plan-ceo-review', 'plan-eng-review',
|
|
'plan-design-review', 'design-review', 'design-consultation', 'retro',
|
|
'document-release', 'investigate', 'office-hours', 'browse',
|
|
];
|
|
|
|
/** Write a scratch root with:
|
|
* - Per-skill SKILL.md files under .claude/skills/ (so Skill tool sees them)
|
|
* - Project CLAUDE.md with explicit routing rules AND (optionally) the
|
|
* 4.7 overlay content directly inlined so `claude -p` sees it
|
|
* - git init
|
|
*
|
|
* `includeOverlay` controls whether the opus-4-7 nudges (Fan out, Literal,
|
|
* etc.) get inlined into CLAUDE.md — this is the A/B axis for the fanout
|
|
* test. `claude -p` doesn't auto-load SKILL.md content, so CLAUDE.md is
|
|
* the only way to make the overlay visible to the model in this test
|
|
* harness.
|
|
*/
|
|
function mkEvalRoot(suffix: string, includeOverlay: boolean): string {
|
|
const tmp = fs.mkdtempSync(path.join(os.tmpdir(), `opus47-${suffix}-`));
|
|
|
|
// Render at opus-4-7 INTO A MKDTEMP via --out-dir — never the live tree.
|
|
// The previous cwd=ROOT regeneration rewrote every in-repo SKILL.md
|
|
// mid-run while concurrent paid shards copyFileSync those same files in
|
|
// their beforeAll (EVALS_JOBS>=4 locally, 2 per CI slice): a sibling could
|
|
// capture a half-regenerated or opus-rendered SKILL.md, and a timeout
|
|
// before afterAll left the whole tree rendered at the wrong model for
|
|
// every later shard. --out-dir mirrors the repo layout (<out>/<skill>/
|
|
// SKILL.md), which is all this fixture reads.
|
|
const renderDir = fs.mkdtempSync(path.join(os.tmpdir(), `opus47-render-${suffix}-`));
|
|
const result = spawnSync(
|
|
'bun',
|
|
['run', 'scripts/gen-skill-docs.ts', '--model', includeOverlay ? 'opus-4-7' : 'claude', '--out-dir', renderDir],
|
|
{ cwd: ROOT, stdio: 'pipe', encoding: 'utf-8', timeout: 60_000 },
|
|
);
|
|
if (result.status !== 0) {
|
|
throw new Error(`gen-skill-docs failed: ${result.stderr}`);
|
|
}
|
|
|
|
// Install per-skill SKILL.md files for Skill tool discovery. Routing only
|
|
// reads the frontmatter (name + description), so install frontmatter + the
|
|
// first ~30 body lines instead of the full 1000-1900-line files
|
|
// (CLAUDE.md: "E2E test fixtures: extract, don't copy").
|
|
const skillsDir = path.join(tmp, '.claude', 'skills');
|
|
for (const skill of INSTALLED_SKILLS) {
|
|
const src = path.join(renderDir, skill, 'SKILL.md');
|
|
if (!fs.existsSync(src)) continue;
|
|
const destDir = path.join(skillsDir, skill);
|
|
fs.mkdirSync(destDir, { recursive: true });
|
|
fs.writeFileSync(path.join(destDir, 'SKILL.md'), extractSkillHead(src));
|
|
}
|
|
fs.rmSync(renderDir, { recursive: true, force: true });
|
|
|
|
// Extract the opus-4-7 model-overlay content from the checked-in file
|
|
// so we can inline it into CLAUDE.md when includeOverlay is true.
|
|
const overlayText = includeOverlay
|
|
? fs.readFileSync(path.join(ROOT, 'model-overlays', 'opus-4-7.md'), 'utf-8')
|
|
.replace(/\{\{INHERIT:claude\}\}\s*/, '')
|
|
.trim()
|
|
: '';
|
|
|
|
// Project CLAUDE.md. Explicit routing rules so the agent reaches for
|
|
// Skill tool on matching prompts, plus the optional overlay.
|
|
const routingBlock = `## Skill routing
|
|
|
|
When the user's request matches an available skill, invoke it via the Skill tool
|
|
as your FIRST action. The skill has multi-step workflows, checklists, and quality
|
|
gates that produce better results than an ad-hoc answer. When in doubt, invoke.
|
|
|
|
- Bugs, errors, "why is this broken", "wtf" → invoke investigate
|
|
- Ship, deploy, "send it", create a PR → invoke ship
|
|
- QA, test the site, "does this work" → invoke qa
|
|
- Code review, check my diff → invoke review
|
|
- Product ideas, brainstorming, "is this worth building" → invoke office-hours
|
|
- Architecture, "does this design make sense" → invoke plan-eng-review
|
|
- Design system, visual polish → invoke design-review
|
|
- Weekly retro, what did we ship → invoke retro`;
|
|
|
|
const claudeMd = includeOverlay
|
|
? `# Project\n\n${overlayText}\n\n${routingBlock}\n`
|
|
: `# Project\n\n${routingBlock}\n`;
|
|
|
|
fs.writeFileSync(path.join(tmp, 'CLAUDE.md'), claudeMd);
|
|
fs.writeFileSync(path.join(tmp, 'package.json'), '{"name":"opus47-eval"}');
|
|
|
|
const git = (args: string[]) =>
|
|
spawnSync('git', args, { cwd: tmp, stdio: 'pipe', timeout: 5_000 });
|
|
git(['init']);
|
|
git(['config', 'user.email', 't@t.com']);
|
|
git(['config', 'user.name', 'T']);
|
|
git(['add', '.']);
|
|
git(['commit', '-m', 'init']);
|
|
|
|
return tmp;
|
|
}
|
|
|
|
/** Count parallel tool calls in the first assistant turn. */
|
|
function firstTurnParallelism(transcript: any[]): number {
|
|
const firstAssistant = transcript.find((e) => e.type === 'assistant');
|
|
if (!firstAssistant) return 0;
|
|
const content = firstAssistant.message?.content ?? [];
|
|
return content.filter((c: any) => c.type === 'tool_use').length;
|
|
}
|
|
|
|
interface RoutingCase {
|
|
name: string;
|
|
prompt: string;
|
|
shouldRoute: boolean;
|
|
expectedSkill?: string;
|
|
}
|
|
|
|
/** Small, intentionally chosen routing cases. Positive cases are ambiguous
|
|
* phrasings the user actually says, not template text. Negative cases are
|
|
* casual or off-topic prompts that match routing keywords but shouldn't
|
|
* trigger a skill. */
|
|
const ROUTING_CASES: RoutingCase[] = [
|
|
// Positive — should route
|
|
{ name: 'pos-wtf-bug', prompt: "wtf is this error coming from auth.ts:47 when the cookie expires?", shouldRoute: true, expectedSkill: 'investigate' },
|
|
{ name: 'pos-send-it', prompt: "ok this is good enough, let's send it.", shouldRoute: true, expectedSkill: 'ship' },
|
|
{ name: 'pos-does-it-work', prompt: "I just pushed the login flow changes. Test the deployed site and find any bugs.", shouldRoute: true, expectedSkill: 'qa' },
|
|
// Negative — should NOT route
|
|
{ name: 'neg-syntax-q', prompt: "wtf does this Python list comprehension syntax even mean, [x for x in y if z]?", shouldRoute: false },
|
|
{ name: 'neg-algo-q', prompt: "does this bubble sort algorithm actually work in O(n log n)?", shouldRoute: false },
|
|
{ name: 'neg-slack-send', prompt: "can you help me write the slack message? I want to send it to the team.", shouldRoute: false },
|
|
];
|
|
|
|
// --- Tests ---
|
|
|
|
describeE2E('Opus 4.7 overlay behavior evals', () => {
|
|
afterAll(() => {
|
|
evalCollector?.finalize();
|
|
// No tree restore needed: mkEvalRoot renders into a mkdtemp via
|
|
// --out-dir, so the live repo's SKILL.md files are never touched — a
|
|
// timeout mid-run can no longer strand the tree at the wrong model for
|
|
// concurrent shards.
|
|
});
|
|
|
|
// (fanout A/B retired, 2026-08 audit: it compared parallel-call counts of
|
|
// two SINGLE stochastic runs — parA >= parB is a coin flip with near-zero
|
|
// remaining information; the overlay-fanout question is answered and the
|
|
// SDK overlay-harness (test/skill-e2e-overlay-harness.test.ts) is the
|
|
// maintained instrument for the next experiment.)
|
|
|
|
|
|
test(
|
|
'routing precision: positives route, negatives do not',
|
|
async () => {
|
|
// Single SKILL.md tree shared by all cases. We run claude-opus-4-7 with
|
|
// tool access to Skill; measure whether the first tool call is Skill(..)
|
|
// and if so, which skill.
|
|
const root = mkEvalRoot('routing', true);
|
|
|
|
try {
|
|
const results = await Promise.all(
|
|
ROUTING_CASES.map((c) =>
|
|
runSkillTest({
|
|
prompt: c.prompt,
|
|
workingDirectory: root,
|
|
maxTurns: 3,
|
|
allowedTools: ['Skill', 'Read', 'Bash', 'Glob', 'Grep'],
|
|
timeout: JUDGE_MS,
|
|
testName: `routing-${c.name}`,
|
|
runId,
|
|
model: OPUS_47,
|
|
}).then((r) => ({ c, r })),
|
|
),
|
|
);
|
|
|
|
let tp = 0, fn = 0, fp = 0, tn = 0;
|
|
const rows: string[] = [];
|
|
let totalCost = 0;
|
|
|
|
for (const { c, r } of results) {
|
|
const skillCalls = r.toolCalls.filter((tc) => tc.tool === 'Skill');
|
|
const routed = skillCalls.length > 0;
|
|
const actualSkill = routed ? skillCalls[0]?.input?.skill : undefined;
|
|
|
|
const correct = c.shouldRoute
|
|
? routed && (!c.expectedSkill || actualSkill === c.expectedSkill)
|
|
: !routed;
|
|
|
|
if (c.shouldRoute && routed) tp++;
|
|
else if (c.shouldRoute && !routed) fn++;
|
|
else if (!c.shouldRoute && routed) fp++;
|
|
else tn++;
|
|
|
|
totalCost += r.costEstimate.estimatedCost;
|
|
rows.push(
|
|
` ${c.name.padEnd(18)} routed=${String(routed).padEnd(5)} skill=${String(actualSkill).padEnd(16)} ` +
|
|
`expected=${c.shouldRoute ? (c.expectedSkill ?? 'any') : '(none)'} ${correct ? 'OK' : 'MISS'}`,
|
|
);
|
|
|
|
evalCollector?.addTest({
|
|
name: `routing-${c.name}`,
|
|
suite: 'Opus 4.7 routing',
|
|
tier: 'e2e',
|
|
passed: correct,
|
|
duration_ms: r.duration,
|
|
cost_usd: r.costEstimate.estimatedCost,
|
|
transcript: r.transcript,
|
|
output: `routed=${routed} actual=${actualSkill ?? '(none)'} expected=${c.shouldRoute ? c.expectedSkill ?? 'any' : '(none)'}`,
|
|
turns_used: r.costEstimate.turnsUsed,
|
|
exit_reason: r.exitReason,
|
|
});
|
|
}
|
|
|
|
const posCount = ROUTING_CASES.filter((c) => c.shouldRoute).length;
|
|
const negCount = ROUTING_CASES.length - posCount;
|
|
const tpRate = posCount > 0 ? tp / posCount : 0;
|
|
const fpRate = negCount > 0 ? fp / negCount : 0;
|
|
|
|
console.log(`[opus-4-7 routing] total cost $${totalCost.toFixed(2)}`);
|
|
console.log(rows.join('\n'));
|
|
console.log(
|
|
` TP=${tp}/${posCount} (${(tpRate * 100).toFixed(0)}%) FN=${fn} ` +
|
|
`FP=${fp}/${negCount} (${(fpRate * 100).toFixed(0)}%) TN=${tn}`,
|
|
);
|
|
|
|
// Thresholds from the test plan artifact: TP >= 80%, FP <= 30%.
|
|
// With a small N we loosen slightly: TP >= 66% (2 of 3 positive),
|
|
// FP <= 33% (no more than 1 of 3 negatives).
|
|
expect(tpRate, `true-positive rate ${(tpRate * 100).toFixed(0)}% (need >= 66%)`).toBeGreaterThanOrEqual(2 / 3);
|
|
expect(fpRate, `false-positive rate ${(fpRate * 100).toFixed(0)}% (need <= 33%)`).toBeLessThanOrEqual(1 / 3);
|
|
} finally {
|
|
fs.rmSync(root, { recursive: true, force: true });
|
|
}
|
|
},
|
|
CAPTURE_LONG_MS,
|
|
);
|
|
});
|