惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(context-engine): honor assembled prompt authority in ...
100yenadmin · 2026-05-01 · via Recent Commits to openclaw:main

@@ -322,6 +322,118 @@ describe("runEmbeddedAttempt context engine sessionKey forwarding", () => {

322322

);

323323

});

324324325+

it("uses assembled context as the default precheck authority", async () => {

326+

let sawPrompt = false;

327+

const hugeHistory = "large raw history ".repeat(25_000);

328+329+

const result = await createContextEngineAttemptRunner({

330+

contextEngine: createTestContextEngine({

331+

assemble: async () => ({

332+

messages: [

333+

{ role: "user", content: "small assembled context", timestamp: 1 },

334+

] as AgentMessage[],

335+

estimatedTokens: 8,

336+

}),

337+

}),

338+

sessionKey,

339+

tempPaths,

340+

sessionMessages: [{ role: "user", content: hugeHistory, timestamp: 1 }] as AgentMessage[],

341+

attemptOverrides: {

342+

contextTokenBudget: 500,

343+

},

344+

sessionPrompt: async (session) => {

345+

sawPrompt = true;

346+

session.messages = [

347+

...session.messages,

348+

{ role: "assistant", content: "done", timestamp: 2 },

349+

];

350+

},

351+

});

352+353+

expect(sawPrompt).toBe(true);

354+

expect(result.promptError).toBeNull();

355+

expect(result.promptErrorSource).toBeNull();

356+

expect(hoisted.preemptiveCompactionCalls.at(-1)).not.toHaveProperty("unwindowedMessages");

357+

});

358+359+

it("honors context engines that opt into preassembly overflow authority", async () => {

360+

let sawPrompt = false;

361+

const hugeHistory = "large raw history ".repeat(25_000);

362+363+

const result = await createContextEngineAttemptRunner({

364+

contextEngine: createTestContextEngine({

365+

assemble: async () => ({

366+

messages: [

367+

{ role: "user", content: "small assembled context", timestamp: 1 },

368+

] as AgentMessage[],

369+

estimatedTokens: 8,

370+

promptAuthority: "preassembly_may_overflow",

371+

}),

372+

}),

373+

sessionKey,

374+

tempPaths,

375+

sessionMessages: [{ role: "user", content: hugeHistory, timestamp: 1 }] as AgentMessage[],

376+

attemptOverrides: {

377+

contextTokenBudget: 500,

378+

},

379+

sessionPrompt: async (session) => {

380+

sawPrompt = true;

381+

session.messages = [

382+

...session.messages,

383+

{ role: "assistant", content: "done", timestamp: 2 },

384+

];

385+

},

386+

});

387+388+

expect(sawPrompt).toBe(false);

389+

expect(result.promptErrorSource).toBe("precheck");

390+

expect(result.preflightRecovery?.route).toBe("compact_only");

391+

expect(hoisted.preemptiveCompactionCalls.at(-1)).toHaveProperty("unwindowedMessages");

392+

});

393+394+

it("snapshots pre-assembly messages before assemble even when the engine windows in place", async () => {

395+

const hugeHistory = "large raw history ".repeat(25_000);

396+

const preassemblyMarker = { role: "user", content: hugeHistory, timestamp: 1 } as AgentMessage;

397+398+

await createContextEngineAttemptRunner({

399+

contextEngine: createTestContextEngine({

400+

assemble: async ({ messages }: { messages: AgentMessage[] }) => {

401+

// Simulate an engine that windows the input array IN PLACE.

402+

// The assemble contract does not require immutability, so the

403+

// runner must have already snapshotted before calling us.

404+

messages.length = 0;

405+

messages.push({ role: "user", content: "windowed", timestamp: 2 } as AgentMessage);

406+

return {

407+

messages: [

408+

{ role: "user", content: "small assembled context", timestamp: 1 },

409+

] as AgentMessage[],

410+

estimatedTokens: 8,

411+

promptAuthority: "preassembly_may_overflow",

412+

};

413+

},

414+

}),

415+

sessionKey,

416+

tempPaths,

417+

sessionMessages: [preassemblyMarker],

418+

attemptOverrides: {

419+

contextTokenBudget: 500,

420+

},

421+

sessionPrompt: async (session) => {

422+

session.messages = [

423+

...session.messages,

424+

{ role: "assistant", content: "done", timestamp: 3 },

425+

];

426+

},

427+

});

428+429+

const lastCall = hoisted.preemptiveCompactionCalls.at(-1);

430+

expect(lastCall).toHaveProperty("unwindowedMessages");

431+

const unwindowed = (lastCall as { unwindowedMessages?: AgentMessage[] }).unwindowedMessages;

432+

// The snapshot must reflect the true pre-assembly state, not the in-place

433+

// windowed array that assemble mutated.

434+

expect(unwindowed).toEqual([preassemblyMarker]);

435+

});

436+325437

it("keeps gateway model runs independent from agent context and session history", async () => {

326438

const bootstrap = vi.fn(async () => ({ bootstrapped: true }));

327439

const assemble = vi.fn(async ({ messages }: { messages: AgentMessage[] }) => ({