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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
V
Visual Studio 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
chore(deadcode): inline runtime context builders · opencl...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

File tree

  • src/agents/embedded-agent-runner/run

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,6 @@ import {

55

buildCurrentInboundPrompt,

66

buildCurrentInboundPromptContextPrefix,

77

buildRuntimeContextCustomMessage,

8-

buildRuntimeContextSystemContext,

98

resolveRuntimeContextPromptParts,

109

} from "./runtime-context-prompt.js";

1110

@@ -352,20 +351,14 @@ describe("runtime context prompt submission", () => {

352351

});

353352

});

354353
355-

it("labels next-turn runtime context only when used as prompt-local system context", () => {

356-

const systemContext = buildRuntimeContextSystemContext("secret runtime context");

357-
358-

expect(systemContext).toContain(

359-

"OpenClaw runtime context for the immediately preceding user message.",

360-

);

361-

expect(systemContext).toContain("not user-authored");

362-

expect(systemContext).toContain("secret runtime context");

363-

});

364-
365-

it("labels runtime-only events as system context", async () => {

366-

const { buildRuntimeEventSystemContext } = await import("./runtime-context-prompt.js");

354+

it("labels runtime-only events as system context", () => {

355+

const parts = resolveRuntimeContextPromptParts({

356+

effectivePrompt: "internal event",

357+

transcriptPrompt: "",

358+

});

367359
368-

expect(buildRuntimeEventSystemContext("internal event")).toContain("OpenClaw runtime event.");

369-

expect(buildRuntimeEventSystemContext("internal event")).toContain("not user-authored");

360+

expect(parts.runtimeSystemContext).toContain("OpenClaw runtime event.");

361+

expect(parts.runtimeSystemContext).toContain("not user-authored");

362+

expect(parts.runtimeSystemContext).toContain("internal event");

370363

});

371364

});

Original file line numberDiff line numberDiff line change

@@ -133,7 +133,10 @@ export function resolveRuntimeContextPromptParts(params: {

133133

: {}),

134134

runtimeContext,

135135

runtimeOnly: true,

136-

runtimeSystemContext: buildRuntimeEventSystemContext(runtimeContext),

136+

runtimeSystemContext: buildRuntimeContextMessageContent({

137+

runtimeContext,

138+

kind: "runtime-event",

139+

}),

137140

}

138141

: {

139142

prompt: "",

@@ -169,16 +172,6 @@ function buildRuntimeContextMessageContent(params: {

169172

].join("\n");

170173

}

171174
172-

/** Builds the hidden next-turn system context payload for model conversion. */

173-

export function buildRuntimeContextSystemContext(runtimeContext: string): string {

174-

return buildRuntimeContextMessageContent({ runtimeContext, kind: "next-turn" });

175-

}

176-
177-

/** Builds the hidden runtime-event system context payload for empty runtime-only turns. */

178-

export function buildRuntimeEventSystemContext(runtimeContext: string): string {

179-

return buildRuntimeContextMessageContent({ runtimeContext, kind: "runtime-event" });

180-

}

181-
182175

/** Creates a non-displayed custom transcript message for runtime context, if any exists. */

183176

export function buildRuntimeContextCustomMessage(

184177

runtimeContext: string | undefined,

@@ -190,7 +183,10 @@ export function buildRuntimeContextCustomMessage(

190183

return {

191184

role: "custom",

192185

customType: OPENCLAW_RUNTIME_CONTEXT_CUSTOM_TYPE,

193-

content: buildRuntimeContextSystemContext(trimmedRuntimeContext),

186+

content: buildRuntimeContextMessageContent({

187+

runtimeContext: trimmedRuntimeContext,

188+

kind: "next-turn",

189+

}),

194190

display: false,

195191

details: { source: "openclaw-runtime-context" },

196192

timestamp: Date.now(),