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

推荐订阅源

Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
爱范儿
爱范儿
罗磊的独立博客
博客园_首页
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
V
Visual Studio Blog
T
Tailwind CSS 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
docs: complete source-backed docs sweep · openclaw/opencl...
steipete · 2026-05-03 · via Recent Commits to openclaw:main

@@ -69,144 +69,25 @@ If the command is running from a source checkout, prefer measuring the built

6969

runtime with `node dist/entry.js ...` after `pnpm build`; `pnpm openclaw ...`

7070

also measures source-runner overhead.

717172-

## Temporary CLI debug timing

72+

## CLI startup and command profiling

737374-

OpenClaw keeps `src/cli/debug-timing.ts` as a small helper for local

75-

investigation. It is intentionally not wired into CLI startup, command routing,

76-

or any command by default. Use it only while debugging a slow command, then

77-

remove the import and spans before landing the behavior change.

78-79-

Use this when a command is slow and you need a quick phase breakdown before

80-

deciding whether to use a CPU profiler or fix a specific subsystem.

81-82-

### Add temporary spans

83-84-

Add the helper near the code you are investigating. For example, while debugging

85-

`openclaw models list`, a temporary patch in

86-

`src/commands/models/list.list-command.ts` might look like this:

87-88-

```ts

89-

// Temporary debugging only. Remove before landing.

90-

import { createCliDebugTiming } from "../../cli/debug-timing.js";

91-92-

const timing = createCliDebugTiming({ command: "models list" });

93-94-

const authStore = timing.time("debug:models:list:auth_store", () => ensureAuthProfileStore());

95-96-

const loaded = await timing.timeAsync(

97-

"debug:models:list:registry",

98-

() => loadListModelRegistry(cfg, { sourceConfig }),

99-

(result) => ({

100-

models: result.models.length,

101-

discoveredKeys: result.discoveredKeys.size,

102-

}),

103-

);

104-

```

105-106-

Guidelines:

107-108-

- Prefix temporary phase names with `debug:`.

109-

- Add only a few spans around suspected slow sections.

110-

- Prefer broad phases such as `registry`, `auth_store`, or `rows` over helper

111-

names.

112-

- Use `time()` for synchronous work and `timeAsync()` for promises.

113-

- Keep stdout clean. The helper writes to stderr, so command JSON output stays

114-

parseable.

115-

- Remove temporary imports and spans before opening the final fix PR.

116-

- Include the timing output or a short summary in the issue or PR that explains

117-

the optimization.

118-119-

### Run with readable output

120-121-

Readable mode is best for live debugging:

122-123-

```bash

124-

OPENCLAW_DEBUG_TIMING=1 pnpm openclaw models list --all --provider moonshot

125-

```

126-127-

Example output from a temporary `models list` investigation:

128-129-

```text

130-

OpenClaw CLI debug timing: models list

131-

0ms +0ms start all=true json=false local=false plain=false provider="moonshot"

132-

2ms +2ms debug:models:list:import_runtime duration=2ms

133-

17ms +14ms debug:models:list:load_config duration=14ms sourceConfig=true

134-

20.3s +20.3s debug:models:list:auth_store duration=20.3s

135-

20.3s +0ms debug:models:list:resolve_agent_dir duration=0ms agentDir=true

136-

20.3s +0ms debug:models:list:resolve_provider_filter duration=0ms

137-

25.3s +5.0s debug:models:list:ensure_models_json duration=5.0s

138-

31.2s +5.9s debug:models:list:load_model_registry duration=5.9s models=869 availableKeys=38 discoveredKeys=868 availabilityError=false

139-

31.2s +0ms debug:models:list:resolve_configured_entries duration=0ms entries=1

140-

31.2s +0ms debug:models:list:build_configured_lookup duration=0ms entries=1

141-

33.6s +2.4s debug:models:list:read_registry_models duration=2.4s models=871

142-

35.2s +1.5s debug:models:list:append_discovered_rows duration=1.5s seenKeys=0 rows=0

143-

36.9s +1.7s debug:models:list:append_catalog_supplement_rows duration=1.7s seenKeys=5 rows=5

144-145-

Model Input Ctx Local Auth Tags

146-

moonshot/kimi-k2-thinking text 256k no no

147-

moonshot/kimi-k2-thinking-turbo text 256k no no

148-

moonshot/kimi-k2-turbo text 250k no no

149-

moonshot/kimi-k2.5 text+image 256k no no

150-

moonshot/kimi-k2.6 text+image 256k no no

151-152-

36.9s +0ms debug:models:list:print_model_table duration=0ms rows=5

153-

36.9s +0ms complete rows=5

154-

```

155-156-

Findings from this output:

157-158-

| Phase | Time | What it means |

159-

| ---------------------------------------- | ---------: | ------------------------------------------------------------------------------------------------------- |

160-

| `debug:models:list:auth_store` | 20.3s | The auth-profile store load is the largest cost and should be investigated first. |

161-

| `debug:models:list:ensure_models_json` | 5.0s | Syncing `models.json` is expensive enough to inspect for caching or skip conditions. |

162-

| `debug:models:list:load_model_registry` | 5.9s | Registry construction and provider availability work are also meaningful costs. |

163-

| `debug:models:list:read_registry_models` | 2.4s | Reading all registry models is not free and may matter for `--all`. |

164-

| row append phases | 3.2s total | Building five displayed rows still takes several seconds, so the filtering path deserves a closer look. |

165-

| `debug:models:list:print_model_table` | 0ms | Rendering is not the bottleneck. |

166-167-

Those findings are enough to guide the next patch without keeping timing code in

168-

production paths.

169-170-

### Run with JSON output

171-172-

Use JSON mode when you want to save or compare timing data:

74+

Use the checked-in startup benchmark when a command feels slow:

1737517476

```bash

175-

OPENCLAW_DEBUG_TIMING=json pnpm openclaw models list --all --provider moonshot \

176-

2> .artifacts/models-list-timing.jsonl

77+

pnpm test:startup:bench:smoke

78+

pnpm tsx scripts/bench-cli-startup.ts --preset real --case status --runs 3

79+

pnpm tsx scripts/bench-cli-startup.ts --preset real --cpu-prof-dir .artifacts/cli-cpu

17780

```

17881179-

Each stderr line is one JSON object:

180-181-

```json

182-

{

183-

"command": "models list",

184-

"phase": "debug:models:list:registry",

185-

"elapsedMs": 31200,

186-

"deltaMs": 5900,

187-

"durationMs": 5900,

188-

"models": 869,

189-

"discoveredKeys": 868

190-

}

191-

```

192-193-

### Clean up before landing

194-195-

Before opening the final PR:

82+

For one-off profiling through the normal source runner, set

83+

`OPENCLAW_RUN_NODE_CPU_PROF_DIR`:

1968419785

```bash

198-

rg 'createCliDebugTiming|debug:[a-z0-9_-]+:' src/commands src/cli \

199-

--glob '!src/cli/debug-timing.*' \

200-

--glob '!*.test.ts'

86+

OPENCLAW_RUN_NODE_CPU_PROF_DIR=.artifacts/cli-cpu pnpm openclaw status

20187

```

20288203-

The command should return no temporary instrumentation call sites unless the PR

204-

is explicitly adding a permanent diagnostics surface. For normal performance

205-

fixes, keep only the behavior change, tests, and a short note with the timing

206-

evidence.

207-208-

For deeper CPU hotspots, use Node profiling (`--cpu-prof`) or an external

209-

profiler instead of adding more timing wrappers.

89+

The source runner adds Node CPU profile flags and writes a `.cpuprofile` for the

90+

command. Use this before adding temporary instrumentation to command code.

2109121192

## Gateway watch mode

21293