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

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

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(cli): keep route-first json stdout clean · openclaw/o...
steipete · 2026-04-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1616

### Fixes

1717
1818

- Channels/Telegram: skip the optional webhook-info API call during polling-mode status checks and startup bot-label probes so long-polling setups avoid an unnecessary Telegram round trip. Carries forward #72990. Thanks @danielgruneberg.

19+

- CLI/models: keep route-first `models status --json` stdout reserved for the JSON payload by routing auth-profile and startup diagnostics to stderr. Fixes #72962. Thanks @vishutdhar.

1920

- Sessions: ignore future-dated session activity timestamps during reset freshness checks and cap future `updatedAt` values at the merge boundary so clock-skewed messages cannot keep stale sessions alive forever. Fixes #72989. Thanks @martingarramon.

2021

- Plugins/CLI: allow managed plugin installs when the active extensions root is a symlink to a real state directory, while keeping nested target symlinks blocked and suppressing misleading hook-pack fallback errors for install-boundary failures. Fixes #72946. Thanks @mayank6136.

2122

- Gateway/startup: keep hot Gateway boot paths on leaf config imports and add max-RSS reporting to the gateway startup bench so low-memory startup regressions are visible before release. Thanks @vincentkoc.

Original file line numberDiff line numberDiff line change

@@ -111,6 +111,10 @@ Options:

111111

- `--probe-max-tokens <n>`

112112

- `--agent <id>` (configured agent id; overrides `OPENCLAW_AGENT_DIR`/`PI_CODING_AGENT_DIR`)

113113
114+

`--json` keeps stdout reserved for the JSON payload. Auth-profile, provider,

115+

and startup diagnostics are routed to stderr so scripts can pipe stdout directly

116+

into tools such as `jq`.

117+
114118

Probe status buckets:

115119
116120

- `ok`

Original file line numberDiff line numberDiff line change

@@ -93,7 +93,7 @@ describe("tryRouteCli", () => {

9393

expect(ensurePluginRegistryLoadedMock).toHaveBeenCalledWith({ scope: "channels" });

9494

});

9595
96-

it("routes logs to stderr during plugin loading in --json mode and restores after", async () => {

96+

it("keeps logs routed to stderr for routed --json commands", async () => {

9797

findRoutedCommandMock.mockReturnValue({

9898

loadPlugins: true,

9999

run: runRouteMock,

@@ -110,7 +110,22 @@ describe("tryRouteCli", () => {

110110
111111

expect(ensurePluginRegistryLoadedMock).toHaveBeenCalled();

112112

expect(captured[0]).toBe(true);

113-

expect(loggingState.forceConsoleToStderr).toBe(false);

113+

expect(loggingState.forceConsoleToStderr).toBe(true);

114+

});

115+
116+

it("routes command-run logs to stderr for config-guard-skipping --json routes", async () => {

117+

const captured: boolean[] = [];

118+

runRouteMock.mockImplementationOnce(async () => {

119+

captured.push(loggingState.forceConsoleToStderr);

120+

return true;

121+

});

122+
123+

await expect(tryRouteCli(["node", "openclaw", "models", "status", "--json"])).resolves.toBe(

124+

true,

125+

);

126+
127+

expect(ensureConfigReadyMock).not.toHaveBeenCalled();

128+

expect(captured).toEqual([true]);

114129

});

115130
116131

it("does not route logs to stderr during plugin loading without --json", async () => {

Original file line numberDiff line numberDiff line change

@@ -23,7 +23,6 @@ async function prepareRoutedCommand(params: {

2323

const { VERSION } = await import("../version.js");

2424

await applyCliExecutionStartupPresentation({

2525

argv: params.argv,

26-

routeLogsToStderrOnSuppress: false,

2726

startupPolicy,

2827

showBanner: process.stdout.isTTY && !startupPolicy.suppressDoctorStdout,

2928

version: VERSION,