mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-11 13:46:32 +03:00
Clarify launcher fallback and completed documentation handoffs; separate bounded protocol checkpoints from opt-in browser-backed completion diagnostics. Correct fixture containment, target syntax, and artifact assertions. AI assistance: Codex, under maintainer direction.
758 lines
34 KiB
JavaScript
758 lines
34 KiB
JavaScript
/**
|
|
* Skill-behavior scenarios — verify how the agent loads PRODUCT.md / DESIGN.md
|
|
* across a controlled matrix of starting states.
|
|
*
|
|
* Refactors that touch the Setup section of SKILL.md should keep these
|
|
* assertions green. If you change Setup intentionally and the assertions
|
|
* flip, that's the test catching the regression you wanted to catch.
|
|
*
|
|
* Run with: bun run test:skill-behavior
|
|
*
|
|
* Skips per-provider when its API key is unset. The default model lineup is
|
|
* the cheapest tier of each major provider so a full sweep costs a few cents.
|
|
*/
|
|
import { describe, it } from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import path from 'node:path';
|
|
|
|
import {
|
|
prepareWorkspace,
|
|
cleanupWorkspace,
|
|
runTurn as runHarnessTurn,
|
|
bashCommandsMatching,
|
|
readsMatching,
|
|
fileLoaded,
|
|
callLoadedFile,
|
|
summarizeTrace,
|
|
ENGINE_BIN,
|
|
ENGINE_MISSING_MESSAGE,
|
|
} from './harness.mjs';
|
|
import { detectProvider, getModel, hasKey, resolveModelList, PROVIDERS } from './providers.mjs';
|
|
import { assertPlanningFallbackWarning, LAUNCHER_FAILURE_WARNING, assertAdviceOnly, assertWorkflowAdvice, assertCommandComparison, missingReferences } from './assertions.mjs';
|
|
import { assertCompleted } from '../skill-workflow/assertions.mjs';
|
|
import {
|
|
PRODUCT_MD_SAMPLE,
|
|
PRODUCT_MD_SAMPLE_NO_REGISTER,
|
|
PRODUCT_MD_SAMPLE_IOS,
|
|
MINIMAL_IOS_SOURCE,
|
|
DESIGN_MD_SAMPLE,
|
|
MINIMAL_LANDING_HTML,
|
|
WORKFLOW_ADVICE_FILES,
|
|
SVELTE_PROJECT_FILES,
|
|
} from './fixtures.mjs';
|
|
|
|
// Protocol-only shell access; successful checkpoints end observation, not the task.
|
|
async function runTurn({ checkpoint, ...options }) {
|
|
return runHarnessTurn({ contextOnlyBash: true, timeoutMs: 180000, ...options,
|
|
stopAfter: typeof checkpoint === 'function' ? checkpoint
|
|
: checkpoint ? (trace) => fileLoaded(trace, checkpoint) : undefined });
|
|
}
|
|
|
|
const CRAFT_PROMPT = '/impeccable craft a landing page for the project in this workspace';
|
|
function projectCodeReads(trace) {
|
|
return trace.toolCalls.filter((call) => call.name === 'read' && call.succeeded
|
|
&& /\.(css|svelte|tsx?|jsx?|astro)$/i.test(call.input.path)
|
|
&& !call.input.path.includes('.claude/skills/')).map((call) => call.input.path);
|
|
}
|
|
const SHAPE_PROMPT = '/impeccable shape a landing page for the project in this workspace';
|
|
const NATURAL_BUILD_PROMPT = 'Build a landing page for the project in this workspace.';
|
|
const UPDATE_NOTICE = /(?:skill|impeccable).{0,100}(?:update|version)|(?:update|version).{0,100}(?:skill|impeccable)|99\.0\.0/i;
|
|
const TEACH_PROMPT = '/impeccable teach';
|
|
const PRIMER_PROMPT =
|
|
'Take a quick look at the project. What context should guide later design work? Run the impeccable context loader once if you need to.';
|
|
|
|
const VERBOSE = process.env.IMPECCABLE_SKILL_BEHAVIOR_VERBOSE === '1';
|
|
|
|
function logTrace(label, scenario, model, trace, extras = {}) {
|
|
if (!VERBOSE) return;
|
|
const summary = summarizeTrace(trace);
|
|
console.error(
|
|
`\n[${label}] ${scenario} (${model})\n${JSON.stringify({ ...summary, ...extras }, null, 2)}\n`,
|
|
);
|
|
}
|
|
|
|
function loadedBeforeImplementationWrite(trace, filename) {
|
|
const loadIndex = trace.toolCalls.findIndex((call) => callLoadedFile(call, filename));
|
|
const writeIndex = trace.toolCalls.findIndex(
|
|
({ mutatedPaths = [] }) => mutatedPaths.some((file) => /\.(html?|css|svelte|jsx?|tsx?)$/i.test(file)),
|
|
);
|
|
return loadIndex >= 0 && (writeIndex < 0 || loadIndex < writeIndex);
|
|
}
|
|
|
|
function executedUpdateCommands(trace) {
|
|
const executableSegments = trace.bashCommands.flatMap((command) =>
|
|
command
|
|
.split(/\r?\n|&&|\|\||;|\|/)
|
|
.map((segment) => segment.trim())
|
|
.filter((segment) => segment && !/^(?:#|echo\b|printf\b)/.test(segment)),
|
|
);
|
|
return executableSegments.filter((segment) =>
|
|
/^(?:(?:npx|bunx|pnpx)\s+)?(?:impeccable|skills)\s+update\b/.test(segment),
|
|
);
|
|
}
|
|
|
|
for (const modelId of resolveModelList()) {
|
|
const provider = detectProvider(modelId);
|
|
const keyPresent = hasKey(provider);
|
|
|
|
describe(`skill behavior :: ${modelId}`, () => {
|
|
if (!keyPresent) {
|
|
it(`skipped — ${PROVIDERS[provider].envKey} is unset`, { skip: true }, () => {});
|
|
return;
|
|
}
|
|
if (!ENGINE_BIN) {
|
|
it(`skipped — ${ENGINE_MISSING_MESSAGE}`, { skip: true }, () => {});
|
|
return;
|
|
}
|
|
const model = getModel(modelId);
|
|
// Observe a routing decision, with room for setup reads but no full build.
|
|
const setupMaxSteps = 10;
|
|
|
|
it('scenario 1: no PRODUCT.md / DESIGN.md', async () => {
|
|
const workspace = prepareWorkspace({ files: {} });
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'init.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: CRAFT_PROMPT,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S1', 'no-context', modelId, trace, { textSample: text.slice(0, 400) });
|
|
const loadCalls = bashCommandsMatching(trace, 'impeccable context');
|
|
assert.ok(
|
|
loadCalls.length >= 1,
|
|
`expected agent to run impeccable context at least once; got ${loadCalls.length}.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
assert.ok(
|
|
fileLoaded(trace, 'init.md'),
|
|
`craft should load init.md when no product or visual world exists; an automated harness is not a bypass.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
assert.ok(
|
|
loadedBeforeImplementationWrite(trace, 'init.md'),
|
|
`agent should resolve init before writing implementation files.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 2: PRODUCT.md only', async () => {
|
|
const workspace = prepareWorkspace({
|
|
files: { 'PRODUCT.md': PRODUCT_MD_SAMPLE },
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'new-work.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: CRAFT_PROMPT,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S2', 'product-only', modelId, trace, { textSample: text.slice(0, 400) });
|
|
const loadCalls = bashCommandsMatching(trace, 'impeccable context');
|
|
assert.ok(
|
|
loadCalls.length >= 1 && loadCalls.length <= 3,
|
|
`expected 1-3 impeccable context invocations; got ${loadCalls.length}.\n` +
|
|
`bashCommands: ${JSON.stringify(trace.bashCommands, null, 2)}`,
|
|
);
|
|
assert.ok(
|
|
fileLoaded(trace, 'new-work.md'),
|
|
`a greenfield request with PRODUCT.md should load new-work.md to establish the missing visual world.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 3: PRODUCT.md + DESIGN.md', async () => {
|
|
const workspace = prepareWorkspace({
|
|
files: { 'PRODUCT.md': PRODUCT_MD_SAMPLE, 'DESIGN.md': DESIGN_MD_SAMPLE },
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'new-work.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: CRAFT_PROMPT,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S3', 'product-and-design', modelId, trace, { textSample: text.slice(0, 400) });
|
|
const loadCalls = bashCommandsMatching(trace, 'impeccable context');
|
|
assert.ok(
|
|
loadCalls.length >= 1 && loadCalls.length <= 3,
|
|
`expected 1-3 impeccable context invocations; got ${loadCalls.length}.\n` +
|
|
`bashCommands: ${JSON.stringify(trace.bashCommands, null, 2)}`,
|
|
);
|
|
assert.ok(
|
|
fileLoaded(trace, 'new-work.md'),
|
|
`craft inside a committed PRODUCT.md + DESIGN.md world should load new-work.md for the task-specific concept.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
// The skill tells the agent to also familiarize with the existing
|
|
// design system. DESIGN.md is bundled in impeccable context output, but
|
|
// exploring CSS / tokens / theme files or a directory listing
|
|
// also counts.
|
|
const designSignal =
|
|
readsMatching(trace, 'design.md').length > 0 ||
|
|
trace.bashOutputs.some((output) => output.includes('# DESIGN.md')) ||
|
|
trace.readPaths.some((p) => /\.(css|scss|sass|less|ts|tsx|js|jsx|json|svelte|astro)$/i.test(p)) ||
|
|
trace.listPaths.length > 0;
|
|
assert.ok(
|
|
designSignal,
|
|
`agent should consult the design system (DESIGN.md, CSS/tokens, or list project files).\n` +
|
|
`readPaths: ${JSON.stringify(trace.readPaths)}, listPaths: ${JSON.stringify(trace.listPaths)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 4: context already loaded in prior turn', async () => {
|
|
const workspace = prepareWorkspace({
|
|
files: { 'PRODUCT.md': PRODUCT_MD_SAMPLE, 'DESIGN.md': DESIGN_MD_SAMPLE },
|
|
});
|
|
try {
|
|
// Turn 1: prime the conversation so impeccable context gets run and its
|
|
// output enters the message history.
|
|
const turn1 = await runTurn({
|
|
checkpoint: (trace) => trace.bashOutputs.some((output) => output.startsWith('exit=0\n')),
|
|
workspace,
|
|
model,
|
|
userPrompt: PRIMER_PROMPT,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S4-T1', 'primer', modelId, turn1.trace, { textSample: turn1.text.slice(0, 200) });
|
|
const turn1Loads = bashCommandsMatching(turn1.trace, 'impeccable context');
|
|
assert.ok(
|
|
turn1Loads.length >= 1,
|
|
`primer turn should have run impeccable context. bash: ${JSON.stringify(turn1.trace.bashCommands, null, 2)}`,
|
|
);
|
|
|
|
// Turn 2: the real ask. The skill says "skip if you've already
|
|
// loaded it". Verify the agent honors that.
|
|
const turn2 = await runTurn({
|
|
checkpoint: 'new-work.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: 'Now, /impeccable craft a landing page based on what you saw.',
|
|
priorMessages: turn1.responseMessages,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S4-T2', 'follow-up', modelId, turn2.trace, { textSample: turn2.text.slice(0, 400) });
|
|
const turn2Loads = bashCommandsMatching(turn2.trace, 'impeccable context');
|
|
assert.equal(
|
|
turn2Loads.length,
|
|
0,
|
|
`agent re-ran impeccable context on turn 2 despite it being in prior conversation. ` +
|
|
`bashCommands: ${JSON.stringify(turn2.trace.bashCommands, null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 5: legacy PRODUCT.md enters new-work when DESIGN.md is missing', async () => {
|
|
const workspace = prepareWorkspace({
|
|
files: { 'PRODUCT.md': PRODUCT_MD_SAMPLE_NO_REGISTER },
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'new-work.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: CRAFT_PROMPT,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S5', 'legacy-product', modelId, trace, { textSample: text.slice(0, 400) });
|
|
const loadCalls = bashCommandsMatching(trace, 'impeccable context');
|
|
assert.ok(
|
|
loadCalls.length >= 1,
|
|
`expected impeccable context invocation; got ${loadCalls.length}.\n` +
|
|
`bashCommands: ${JSON.stringify(trace.bashCommands, null, 2)}`,
|
|
);
|
|
assert.ok(fileLoaded(trace, 'new-work.md'),
|
|
`greenfield craft should load new-work.md for visual authority and world discovery.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`);
|
|
assert.equal(fileLoaded(trace, 'init.md'), false, 'existing PRODUCT.md must not re-enter init for missing DESIGN.md');
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 6: sub-command routing (`/impeccable polish` loads polish.md)', async () => {
|
|
const workspace = prepareWorkspace({
|
|
files: {
|
|
'PRODUCT.md': PRODUCT_MD_SAMPLE,
|
|
'DESIGN.md': DESIGN_MD_SAMPLE,
|
|
'index.html': MINIMAL_LANDING_HTML,
|
|
},
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'polish.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable polish index.html',
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S6', 'polish-routing', modelId, trace, { textSample: text.slice(0, 300) });
|
|
assert.ok(
|
|
fileLoaded(trace, 'polish.md'),
|
|
`agent should load polish.md when /impeccable polish is invoked.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 7: sub-command routing (`/impeccable audit` loads audit.md)', async () => {
|
|
const workspace = prepareWorkspace({
|
|
files: {
|
|
'PRODUCT.md': PRODUCT_MD_SAMPLE,
|
|
'DESIGN.md': DESIGN_MD_SAMPLE,
|
|
'index.html': MINIMAL_LANDING_HTML,
|
|
},
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'audit.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable audit index.html',
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S7', 'audit-routing', modelId, trace, { textSample: text.slice(0, 300) });
|
|
assert.ok(
|
|
fileLoaded(trace, 'audit.md'),
|
|
`agent should load audit.md when /impeccable audit is invoked.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 8: existing SvelteKit project (agent explores design system)', async () => {
|
|
const workspace = prepareWorkspace({
|
|
files: {
|
|
'PRODUCT.md': PRODUCT_MD_SAMPLE,
|
|
'DESIGN.md': DESIGN_MD_SAMPLE,
|
|
...SVELTE_PROJECT_FILES,
|
|
},
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: (trace) => projectCodeReads(trace).length > 0,
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable polish src/routes/+page.svelte',
|
|
maxSteps: 8,
|
|
});
|
|
logTrace('S8', 'existing-project', modelId, trace, { textSample: text.slice(0, 400) });
|
|
// Setup step 2: familiarize with existing design system. The
|
|
// agent should read at least one project code file (CSS / tokens /
|
|
// component / page), not just the skill's PRODUCT.md / DESIGN.md
|
|
// / reference files.
|
|
const projectReads = projectCodeReads(trace);
|
|
assert.ok(
|
|
projectReads.length >= 1,
|
|
`agent should read at least one project code file to understand the existing design system.\n` +
|
|
`readPaths: ${JSON.stringify(trace.readPaths, null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 9: update-available directive is surfaced, never auto-run', async () => {
|
|
// impeccable context reads a newer version from its (seeded) cache and appends
|
|
// an UPDATE_AVAILABLE directive to the boot output. The agent must
|
|
// surface it and keep working, but must NOT run `npx impeccable update`
|
|
// on its own — modifying installed files mid-session without
|
|
// consent is the exact failure this guards against.
|
|
//
|
|
// `skillVersion` forces copy-mode so impeccable context has a SKILL.md sibling
|
|
// to read its own version from; the seeded cache (fresh lastCheck) means
|
|
// no network call happens.
|
|
const workspace = prepareWorkspace({
|
|
files: {
|
|
'PRODUCT.md': PRODUCT_MD_SAMPLE,
|
|
'index.html': MINIMAL_LANDING_HTML,
|
|
'.impeccable-update.json': JSON.stringify({ lastCheck: Date.now(), latestVersion: '99.0.0' }),
|
|
},
|
|
skillVersion: '3.5.0',
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable polish index.html',
|
|
maxSteps: setupMaxSteps,
|
|
env: { IMPECCABLE_UPDATE_CACHE: path.join(workspace, '.impeccable-update.json') },
|
|
checkpoint: (trace) => trace.assistantTexts?.some((text) => UPDATE_NOTICE.test(text)),
|
|
});
|
|
logTrace('S9', 'update-available', modelId, trace, { textSample: text.slice(0, 400) });
|
|
|
|
// Boot ran, so the directive entered the agent's view.
|
|
assert.ok(
|
|
bashCommandsMatching(trace, 'impeccable context').length >= 1,
|
|
`expected agent to run impeccable context. bash: ${JSON.stringify(trace.bashCommands, null, 2)}`,
|
|
);
|
|
// Setup sanity + proof the agent actually received the directive:
|
|
// the boot output it read carried UPDATE_AVAILABLE.
|
|
assert.ok(
|
|
trace.bashOutputs.some((o) => o.includes('UPDATE_AVAILABLE')),
|
|
`impeccable context should have emitted UPDATE_AVAILABLE (a newer version is cached).\n` +
|
|
`bashOutputs: ${JSON.stringify(trace.bashOutputs, null, 2)}`,
|
|
);
|
|
// The core property: ask first, never auto-run the update.
|
|
assert.ok(trace.assistantTexts?.some((text) => UPDATE_NOTICE.test(text)), 'the skill update must be surfaced to the user');
|
|
const ranUpdate = executedUpdateCommands(trace);
|
|
assert.equal(
|
|
ranUpdate.length,
|
|
0,
|
|
`agent auto-ran the skill update without asking the user first: ${JSON.stringify(ranUpdate, null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 10: scoped command with no PRODUCT.md proceeds without forcing init', async () => {
|
|
// The counterpart to scenario 1. There, a from-scratch `craft` with no
|
|
// context correctly diverts into init. Here a *scoped* command against
|
|
// existing code must NOT: the code is the context. Missing PRODUCT.md is
|
|
// a suggestion to run init, never a blocker on the requested work.
|
|
const workspace = prepareWorkspace({
|
|
files: {
|
|
'index.html': MINIMAL_LANDING_HTML,
|
|
},
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'polish.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable polish index.html',
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S10', 'scoped-no-product', modelId, trace, { textSample: text.slice(0, 400) });
|
|
// Boot still runs.
|
|
assert.ok(
|
|
bashCommandsMatching(trace, 'impeccable context').length >= 1,
|
|
`expected agent to run impeccable context at least once.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
// It must load the scoped command's own reference and get on with it.
|
|
assert.ok(
|
|
fileLoaded(trace, 'polish.md'),
|
|
`agent should load polish.md and proceed with the scoped command.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
// The core property: a scoped command on existing code must not divert
|
|
// into init just because PRODUCT.md is absent.
|
|
const initLoaded =
|
|
readsMatching(trace, 'init.md').length > 0 ||
|
|
bashCommandsMatching(trace, 'init.md').length > 0;
|
|
assert.equal(
|
|
initLoaded,
|
|
false,
|
|
`scoped /impeccable polish on existing code should not divert into init.md when PRODUCT.md is missing.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 11: shape with no PRODUCT.md resolves the build gate', async () => {
|
|
const workspace = prepareWorkspace({ files: {} });
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'init.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: SHAPE_PROMPT,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S11', 'shape-no-context', modelId, trace, { textSample: text.slice(0, 400) });
|
|
assert.ok(
|
|
bashCommandsMatching(trace, 'impeccable context').length >= 1,
|
|
`expected agent to run impeccable context at least once.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
assert.ok(
|
|
loadedBeforeImplementationWrite(trace, 'init.md'),
|
|
`shape should resolve init.md before implementation when no world exists.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 12: intent-routed build with no PRODUCT.md resolves the build gate', async () => {
|
|
const workspace = prepareWorkspace({ files: {} });
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'init.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: NATURAL_BUILD_PROMPT,
|
|
maxSteps: setupMaxSteps,
|
|
});
|
|
logTrace('S12', 'natural-build-no-context', modelId, trace, { textSample: text.slice(0, 400) });
|
|
assert.ok(
|
|
bashCommandsMatching(trace, 'impeccable context').length >= 1,
|
|
`expected agent to run impeccable context at least once.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
assert.ok(
|
|
loadedBeforeImplementationWrite(trace, 'init.md'),
|
|
`build intent should resolve init.md before implementation when no world exists.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 13: teach alias with no PRODUCT.md diverts into init', async () => {
|
|
// `teach` is a deprecated alias for `init`, so it belongs to the same
|
|
// missing-PRODUCT.md blocker path instead of the scoped-command path.
|
|
const workspace = prepareWorkspace({ files: {} });
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'init.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: TEACH_PROMPT,
|
|
maxSteps: 6,
|
|
});
|
|
logTrace('S13', 'teach-no-context', modelId, trace, { textSample: text.slice(0, 400) });
|
|
assert.ok(
|
|
bashCommandsMatching(trace, 'impeccable context').length >= 1,
|
|
`expected agent to run impeccable context at least once.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
const initLoaded =
|
|
readsMatching(trace, 'init.md').length > 0 ||
|
|
bashCommandsMatching(trace, 'init.md').length > 0;
|
|
assert.ok(
|
|
initLoaded,
|
|
`/impeccable teach should behave like init and load init.md when PRODUCT.md is missing.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 14: native iOS project (context loads ios.md)', async () => {
|
|
// PRODUCT.md sets `## Platform` to `ios`. impeccable context now reads and emits
|
|
// reference/ios.md itself, so native guidance enters the conversation
|
|
// without relying on a second model-directed file read.
|
|
const workspace = prepareWorkspace({
|
|
files: { 'PRODUCT.md': PRODUCT_MD_SAMPLE_IOS, 'TideDetailView.swift': MINIMAL_IOS_SOURCE },
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'ios.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable craft a tide detail screen for the project in this workspace',
|
|
maxSteps: provider === 'google' ? 8 : 6,
|
|
});
|
|
logTrace('S14', 'native-ios', modelId, trace, { textSample: text.slice(0, 400) });
|
|
const loadCalls = bashCommandsMatching(trace, 'impeccable context');
|
|
assert.ok(
|
|
loadCalls.length >= 1,
|
|
`expected agent to run impeccable context at least once; got ${loadCalls.length}.\n` +
|
|
`bashCommands: ${JSON.stringify(trace.bashCommands, null, 2)}`,
|
|
);
|
|
// Proof the native reference itself entered the agent's view.
|
|
assert.ok(
|
|
trace.bashOutputs.some((o) => /# NATIVE PLATFORM REFERENCE: IOS \(reference\/ios\.md\)/.test(o)),
|
|
`impeccable context should have emitted reference/ios.md content (platform is ios).\n` +
|
|
`bashOutputs: ${JSON.stringify(trace.bashOutputs, null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 15: native audit routes to the native command variant', async () => {
|
|
// The Commands table lists audit.native.md as the native variant and
|
|
// Setup step 2 says to read the variant INSTEAD of audit.md when the
|
|
// platform is native. This pins the route-instead behavior: a native
|
|
// audit must reach audit.native.md (reading audit.md first and then
|
|
// switching via its web-only guard is acceptable; never reaching the
|
|
// variant is the failure).
|
|
const workspace = prepareWorkspace({
|
|
files: { 'PRODUCT.md': PRODUCT_MD_SAMPLE_IOS, 'TideDetailView.swift': MINIMAL_IOS_SOURCE },
|
|
});
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
checkpoint: 'audit.native.md',
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable audit the app in this workspace',
|
|
maxSteps: 6,
|
|
});
|
|
logTrace('S15', 'native-audit-variant', modelId, trace, { textSample: text.slice(0, 400) });
|
|
assert.ok(
|
|
bashCommandsMatching(trace, 'impeccable context').length >= 1,
|
|
`expected agent to run impeccable context at least once.\n` +
|
|
`bashCommands: ${JSON.stringify(trace.bashCommands, null, 2)}`,
|
|
);
|
|
assert.ok(
|
|
fileLoaded(trace, 'audit.native.md'),
|
|
`agent should load audit.native.md (not just audit.md) when the platform is ios.\n` +
|
|
`Trace: ${JSON.stringify(summarizeTrace(trace), null, 2)}`,
|
|
);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
for (const [label, files] of [
|
|
['existing project', WORKFLOW_ADVICE_FILES],
|
|
['missing product context', { 'index.html': MINIMAL_LANDING_HTML }],
|
|
]) {
|
|
it(`scenario 16: workflow advice stays read-only (${label})`, async (t) => {
|
|
const workspace = prepareWorkspace({ files });
|
|
try {
|
|
const result = await runTurn({
|
|
workspace,
|
|
model,
|
|
userPrompt: "I'm joining this project. Where should I start with Impeccable?",
|
|
maxSteps: 8,
|
|
contextOnlyBash: true,
|
|
});
|
|
const { trace, text } = result;
|
|
logTrace('S16', label, modelId, trace, { textSample: text.slice(0, 300) });
|
|
t.diagnostic(`Reference coverage gaps (non-blocking): ${missingReferences(trace, ['reference/routing.md']).join(', ') || 'none'}`);
|
|
assertCompleted(result);
|
|
assertWorkflowAdvice(trace, text, { missingContext: label === 'missing product context' });
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
}
|
|
|
|
it('scenario 17: command comparison explains independent commands without running them', async (t) => {
|
|
const workspace = prepareWorkspace({ files: WORKFLOW_ADVICE_FILES });
|
|
try {
|
|
const result = await runTurn({
|
|
workspace,
|
|
model,
|
|
userPrompt: 'Should I use critique or polish on index.html? Is a critique required before polishing?',
|
|
maxSteps: 8,
|
|
contextOnlyBash: true,
|
|
});
|
|
const { trace, text } = result;
|
|
logTrace('S17', 'command-comparison', modelId, trace, { textSample: text.slice(0, 300) });
|
|
t.diagnostic(`Reference coverage gaps (non-blocking): ${missingReferences(trace, ['reference/routing.md', 'reference/critique.md', 'reference/polish.md']).join(', ') || 'none'}`);
|
|
assertCompleted(result);
|
|
assertCommandComparison(trace, text);
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
for (const denyBash of [true, false]) {
|
|
it(`scenario 19: ${denyBash ? 'denied launcher' : 'successful launcher control'} loads context and references before editing`, async () => {
|
|
const workspace = prepareWorkspace({ files: {
|
|
'PRODUCT.md': PRODUCT_MD_SAMPLE,
|
|
'DESIGN.md': DESIGN_MD_SAMPLE,
|
|
'index.html': '<!doctype html><html lang="en"><head><title>Fieldnotes</title><style>body{font:16px system-ui;margin:32px}button{padding:2px 4px}</style></head><body><main><h1>Fieldnotes</h1><p>A calmer place for your notes.</p><button>New note</button></main></body></html>',
|
|
} });
|
|
try {
|
|
const { trace, stepTexts, finishReason, responseMessages } = await runTurn({
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable polish index.html. Keep this pass small: improve the button spacing only, preserving the page content and structure.',
|
|
maxSteps: 12,
|
|
denyBash,
|
|
contextOnlyBash: !denyBash,
|
|
});
|
|
const allText = stepTexts.join('\n');
|
|
logTrace('S19', denyBash ? 'denied-launcher' : 'successful-launcher', modelId, trace, { finishReason, text: allText });
|
|
assert.notEqual(finishReason, 'length', 'a truncated response is not a completed fallback');
|
|
if (denyBash) {
|
|
assert.ok(trace.toolCalls.some((call) => call.name === 'bash' && call.denied && /impeccable\s+context\b/.test(call.input.command)), 'must encounter an actual denied context attempt');
|
|
} else {
|
|
assert.ok(trace.bashOutputs.some((out) => out.startsWith('exit=0\n')), 'the control must execute the real context loader successfully');
|
|
}
|
|
const writeIndex = trace.toolCalls.findIndex((call) => call.mutatedPaths.includes('index.html'));
|
|
assert.ok(writeIndex >= 0, 'must continue to the requested edit, not just load references');
|
|
for (const filename of [...(denyBash ? ['PRODUCT.md', 'DESIGN.md'] : []), 'reference/polish.md', 'reference/craft-floor.md']) {
|
|
const readIndex = trace.toolCalls.findIndex((call) => call.name === 'read' && call.succeeded && (call.input.path === filename || call.input.path.endsWith(`/${filename}`)));
|
|
assert.ok(readIndex >= 0 && readIndex < writeIndex, `${filename} must actually be read before editing`);
|
|
}
|
|
const assistantBlocks = responseMessages.filter((message) => message.role === 'assistant')
|
|
.flatMap((message) => typeof message.content === 'string' ? [{ type: 'text', text: message.content }] : message.content);
|
|
const warningIndex = assistantBlocks.findIndex((block) => block.type === 'text' && LAUNCHER_FAILURE_WARNING.test(block.text));
|
|
const writeBlockIndex = assistantBlocks.findIndex((block) => block.type === 'tool-call' && block.toolName === 'write');
|
|
if (denyBash) assert.ok(warningIndex >= 0 && writeBlockIndex > warningIndex, 'must disclose the failed context launcher before editing, not only in the final summary');
|
|
assert.ok(!trace.toolCalls.some((call) => call.mutatedPaths.some((p) => /(?:^|\/)(?:PRODUCT|DESIGN)\.md$/.test(p))), 'must not fabricate or replace project context');
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
}
|
|
|
|
it('scenario 19: denied launcher keeps planning-only work read-only without craft-floor', async () => {
|
|
const workspace = prepareWorkspace({ files: {
|
|
'PRODUCT.md': PRODUCT_MD_SAMPLE,
|
|
'DESIGN.md': DESIGN_MD_SAMPLE,
|
|
'index.html': '<!doctype html><html><body><button style="padding:2px 4px">New note</button></body></html>',
|
|
} });
|
|
try {
|
|
const { trace, text, stepTexts, finishReason, responseMessages } = await runTurn({
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable polish index.html. Inspect the button spacing and propose a short plan only. Do not edit any files or implement the plan yet.',
|
|
maxSteps: 12,
|
|
denyBash: true,
|
|
});
|
|
logTrace('S19', 'denied-launcher-planning', modelId, trace, { finishReason, text: stepTexts.join('\n') });
|
|
assert.notEqual(finishReason, 'length', 'a truncated response is not a completed plan');
|
|
assert.ok(trace.toolCalls.some((call) => call.name === 'bash' && call.denied && /impeccable\s+context\b/.test(call.input.command)), 'must encounter an actual denied context attempt');
|
|
assert.deepEqual(readsMatching(trace, 'craft-floor.md'), [], 'planning-only work must not load the editing floor');
|
|
assertAdviceOnly(trace, text);
|
|
assertPlanningFallbackWarning(responseMessages);
|
|
for (const filename of ['PRODUCT.md', 'DESIGN.md', 'index.html', 'reference/polish.md']) {
|
|
assert.ok(trace.toolCalls.some((call) => call.name === 'read' && call.succeeded && (call.input.path === filename || call.input.path.endsWith(`/${filename}`))), `${filename} must actually be read`);
|
|
}
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
|
|
it('scenario 18: explicit command request takes precedence over workflow advice', async () => {
|
|
const workspace = prepareWorkspace({ files: WORKFLOW_ADVICE_FILES });
|
|
try {
|
|
const { trace, text } = await runTurn({
|
|
workspace,
|
|
model,
|
|
userPrompt: '/impeccable polish index.html. Please do the polish pass now; afterward tell me which command would be useful next.',
|
|
checkpoint: 'polish.md',
|
|
maxSteps: 8,
|
|
contextOnlyBash: true,
|
|
});
|
|
logTrace('S18', 'explicit-command', modelId, trace, { textSample: text.slice(0, 300) });
|
|
assert.ok(readsMatching(trace, 'reference/polish.md').length, 'the requested command must not be replaced with advice');
|
|
} finally {
|
|
cleanupWorkspace(workspace);
|
|
}
|
|
});
|
|
});
|
|
}
|