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

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

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
feat(cli): add --message-file to openclaw agent · opencla...
ooiuuii · 2026-06-22 · via Recent Commits to openclaw:main

@@ -308,6 +308,78 @@ describe("agentCliCommand", () => {

308308

});

309309

});

310310311+

it("reads a UTF-8 message file for gateway dispatch", async () => {

312+

await withTempStore(async ({ dir }) => {

313+

const messageFile = path.join(dir, "task.md");

314+

const messageBody = 'first line\n```json\n{"ok":true}\n```\nsecond line\n';

315+

fs.writeFileSync(messageFile, `\uFEFF${messageBody}`, "utf8");

316+

mockGatewaySuccessReply();

317+318+

await agentCliCommand({ messageFile, sessionKey: "agent:main:incident-42" }, runtime);

319+320+

expect(callGateway).toHaveBeenCalledTimes(1);

321+

const request = requireRecord(requireFirstCallArg(callGateway, "gateway"), "gateway request");

322+

const params = requireRecord(request.params, "gateway request params");

323+

expect(params.message).toBe(messageBody);

324+

});

325+

});

326+327+

it("reads a UTF-8 message file for local embedded dispatch", async () => {

328+

await withTempStore(async ({ dir }) => {

329+

const messageFile = path.join(dir, "task.md");

330+

const messageBody = 'first line\n```json\n{"ok":true}\n```\nsecond line\n';

331+

fs.writeFileSync(messageFile, `\uFEFF${messageBody}`, "utf8");

332+

mockLocalAgentReply();

333+334+

await agentCliCommand(

335+

{ messageFile, sessionKey: "agent:main:incident-42", local: true },

336+

runtime,

337+

);

338+339+

expect(callGateway).not.toHaveBeenCalled();

340+

expect(agentCommand).toHaveBeenCalledTimes(1);

341+

const opts = requireRecord(

342+

requireFirstCallArg(agentCommand, "embedded agent"),

343+

"embedded agent options",

344+

);

345+

expect(opts.message).toBe(messageBody);

346+

expect(opts).not.toHaveProperty("messageFile");

347+

});

348+

});

349+350+

it("rejects inline and file messages together", async () => {

351+

await expect(

352+

agentCliCommand(

353+

{ message: "inline", messageFile: "task.md", sessionKey: "agent:main:incident-42" },

354+

runtime,

355+

),

356+

).rejects.toThrow("Use either --message or --message-file, not both");

357+

expect(callGateway).not.toHaveBeenCalled();

358+

});

359+360+

it("reports missing message files before dispatch", async () => {

361+

await withTempStore(async ({ dir }) => {

362+

const messageFile = path.join(dir, "missing.md");

363+364+

await expect(

365+

agentCliCommand({ messageFile, sessionKey: "agent:main:incident-42" }, runtime),

366+

).rejects.toThrow("Message file not found");

367+

expect(callGateway).not.toHaveBeenCalled();

368+

});

369+

});

370+371+

it("rejects message files that are not valid UTF-8", async () => {

372+

await withTempStore(async ({ dir }) => {

373+

const messageFile = path.join(dir, "task.bin");

374+

fs.writeFileSync(messageFile, Buffer.from([0xff]));

375+376+

await expect(

377+

agentCliCommand({ messageFile, sessionKey: "agent:main:incident-42" }, runtime),

378+

).rejects.toThrow("Message file must be valid UTF-8");

379+

expect(callGateway).not.toHaveBeenCalled();

380+

});

381+

});

382+311383

it.each(["/new", "/RESET", "/reset check status"] as const)(

312384

"uses backend admin authority for %s gateway commands",

313385

async (message) => {

@@ -1694,6 +1766,27 @@ describe("agentCliCommand", () => {

16941766

});

16951767

});

169617681769+

it("preserves inline message whitespace for local embedded runs", async () => {

1770+

await withTempStore(async () => {

1771+

mockLocalAgentReply();

1772+1773+

await agentCliCommand(

1774+

{

1775+

message: " keep spaces ",

1776+

to: "+1555",

1777+

local: true,

1778+

},

1779+

runtime,

1780+

);

1781+1782+

const localOpts = requireRecord(

1783+

requireFirstCallArg(agentCommand, "embedded agent"),

1784+

"embedded agent options",

1785+

);

1786+

expect(localOpts.message).toBe(" keep spaces ");

1787+

});

1788+

});

1789+16971790

it("passes explicit session keys to local embedded runs", async () => {

16981791

await withTempStore(async () => {

16991792

mockLocalAgentReply();

@@ -1817,6 +1910,26 @@ describe("agentCliCommand", () => {

18171910

});

18181911

}

181919121913+

it("rejects /compact from --message-file before any gateway or embedded turn", async () => {

1914+

await withTempStore(async ({ dir }) => {

1915+

const messageFile = path.join(dir, "compact.md");

1916+

fs.writeFileSync(messageFile, "/compact:Keep recent decisions.", "utf8");

1917+

callGateway.mockRejectedValue(createGatewayTimeoutError());

1918+1919+

await agentCliCommand(

1920+

{ messageFile, sessionId: "locked-session", runId: "locked-run", timeout: "0" },

1921+

runtime,

1922+

);

1923+

});

1924+1925+

expect(callGateway).not.toHaveBeenCalled();

1926+

expect(agentCommand).not.toHaveBeenCalled();

1927+

expect(runtime.exit).toHaveBeenCalledWith(1);

1928+

const errorMessages = mockMessages(runtime.error);

1929+

expect(errorMessages.some((m) => m.includes("openclaw sessions compact"))).toBe(true);

1930+

expect(errorMessages.some((m) => m.includes("EMBEDDED FALLBACK"))).toBe(false);

1931+

});

1932+18201933

it("does not mistake a /compacting-prefixed message for the /compact control command", async () => {

18211934

await withTempStore(async () => {

18221935

mockGatewaySuccessReply();