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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
B
Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
美团技术团队
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
The Cloudflare Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
GbyAI
GbyAI
腾讯CDC
MongoDB | Blog
MongoDB | Blog

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: preserve recent Codex context projections · openclaw...
VACInc · 2026-05-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -31,6 +31,7 @@ Docs: https://docs.openclaw.ai

3131

- Mac app: align the Sessions settings pane with the standard Settings page gutter and row spacing.

3232

- Codex app-server: preserve streamed native command output in mirrored transcripts and trajectory exports when final snapshots omit aggregated output. (#83200) Thanks @rozmiarD.

3333

- Codex app-server: fail closed when chat or sender policy denies tools, disabling native code, app, environment, and user MCP surfaces for restricted turns. (#82374) Thanks @VACInc.

34+

- Codex app-server: keep recent context-engine messages when oversized projected history is truncated, so short follow-ups in long channel sessions do not fall back to stale earlier turns. (#83127) Thanks @VACInc.

3435

- Feishu: return bound subagent delivery origins from session thread setup so Feishu subagent completions route back to the same DM or topic. (#83190) Thanks @100menotu001.

3536

- CLI/update: tailor post-update Gateway recovery hints by platform, showing systemd, LaunchAgent, Scheduled Task, or generic service-manager guidance instead of macOS-only recovery text. (#83096) Thanks @rubencu.

3637

- Plugins: apply a default 15-second timeout to legacy `before_agent_start` hooks so hung plugin handlers no longer block agent startup. Fixes #48534. (#83136) Thanks @therahul-yo.

Original file line numberDiff line numberDiff line change

@@ -154,6 +154,32 @@ describe("projectContextEngineAssemblyForCodex", () => {

154154

expect(result.promptText.length).toBeLessThan(25_000);

155155

});

156156
157+

it("keeps recent context when the rendered conversation overflows", () => {

158+

const result = projectContextEngineAssemblyForCodex({

159+

assembledMessages: [

160+

textMessage("assistant", `old discrawl setup from previous day ${"x".repeat(5_850)}`),

161+

...Array.from({ length: 5 }, (_, index) =>

162+

textMessage("assistant", `stale filler ${index}:${"x".repeat(5_850)}`),

163+

),

164+

textMessage(

165+

"user",

166+

"have Codex CLI do it via /goal. tell it in a SEPARATE repo; create recrawl",

167+

),

168+

textMessage("assistant", "codex exec -C /tmp/recrawl started"),

169+

],

170+

originalHistoryMessages: [],

171+

prompt: "?",

172+

});

173+
174+

expect(result.promptText).toContain("[truncated ");

175+

expect(result.promptText).toContain("from older context");

176+

expect(result.promptText).not.toContain("old discrawl setup from previous day");

177+

expect(result.promptText).toContain("create recrawl");

178+

expect(result.promptText).toContain("codex exec -C /tmp/recrawl started");

179+

expect(result.promptText).toContain("Current user request:\n?");

180+

expect(result.promptText.length).toBeLessThan(25_000);

181+

});

182+
157183

it("can scale the rendered context cap for larger Codex context windows", () => {

158184

const result = projectContextEngineAssemblyForCodex({

159185

assembledMessages: Array.from({ length: 12 }, (_, index) =>

Original file line numberDiff line numberDiff line change

@@ -47,7 +47,7 @@ export function projectContextEngineAssemblyForCodex(params: {

4747

CONTEXT_SAFETY_NOTE,

4848

"",

4949

CONTEXT_OPEN,

50-

truncateText(renderedContext, maxRenderedContextChars),

50+

truncateOlderContext(renderedContext, maxRenderedContextChars),

5151

CONTEXT_CLOSE,

5252

"",

5353

REQUEST_HEADER,

@@ -381,3 +381,23 @@ function truncateText(text: string, maxChars: number): string {

381381

? `${text.slice(0, maxChars)}\n[truncated ${text.length - maxChars} chars]`

382382

: text;

383383

}

384+
385+

function truncateOlderContext(text: string, maxChars: number): string {

386+

if (text.length <= maxChars) {

387+

return text;

388+

}

389+

if (maxChars <= 0) {

390+

return "";

391+

}

392+
393+

const buildMarker = (omittedChars: number): string =>

394+

`[truncated ${omittedChars} chars from older context]\n`;

395+

let marker = buildMarker(text.length - maxChars);

396+

let tailChars = Math.max(0, maxChars - marker.length);

397+

marker = buildMarker(text.length - tailChars);

398+

if (marker.length >= maxChars) {

399+

return marker.slice(0, maxChars);

400+

}

401+

tailChars = maxChars - marker.length;

402+

return `${marker}${text.slice(text.length - tailChars).trimStart()}`;

403+

}