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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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(DX): Add Out-of-the-Box Support for Debugging in VSC...
SwissArmyBud · 2026-05-06 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -0,0 +1,32 @@

1+

{

2+

"version": "0.2.0",

3+

"configurations": [

4+

{

5+

"name": "Rebuild and Debug Gateway",

6+

"type": "node",

7+

"request": "launch",

8+

"preLaunchTask": "debug:rebuild",

9+

"program": "${workspaceFolder}/openclaw.mjs",

10+

"args": ["gateway", "run"],

11+

"console": "integratedTerminal",

12+

"skipFiles": ["<node_internals>/**", "node_modules/**"],

13+

"outFiles": ["${workspaceFolder}/dist/**/*.js"],

14+

"sourceMaps": true,

15+

"smartStep": true,

16+

"internalConsoleOptions": "openOnSessionStart"

17+

},

18+

{

19+

"name": "Debug Gateway",

20+

"type": "node",

21+

"request": "launch",

22+

"program": "${workspaceFolder}/openclaw.mjs",

23+

"args": ["gateway", "run"],

24+

"console": "integratedTerminal",

25+

"skipFiles": ["<node_internals>/**", "node_modules/**"],

26+

"outFiles": ["${workspaceFolder}/dist/**/*.js"],

27+

"sourceMaps": true,

28+

"smartStep": true,

29+

"internalConsoleOptions": "openOnSessionStart"

30+

}

31+

]

32+

}

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,23 @@

1+

{

2+

"version": "2.0.0",

3+

"options": {

4+

"env": {

5+

"OUTPUT_SOURCE_MAPS": "1"

6+

}

7+

},

8+

"tasks": [

9+

{

10+

"label": "debug:rebuild",

11+

"type": "shell",

12+

"command": "pnpm clean:dist && pnpm build",

13+

"group": "none",

14+

"problemMatcher": [],

15+

"presentation": {

16+

"echo": true,

17+

"reveal": "always",

18+

"focus": false,

19+

"panel": "shared"

20+

}

21+

}

22+

]

23+

}

Original file line numberDiff line numberDiff line change

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

8383

- Dependencies: refresh runtime and provider packages including Pi 0.73.0, ACPX adapters, OpenAI, Anthropic, Slack, and TypeScript native preview, while keeping the Bedrock runtime installer override pinned below the Windows ARM Node 24 npm resolver failure.

8484

- Contributor PRs: require external pull requests to include after-fix real behavior proof from a real OpenClaw setup, with terminal screenshots, console output, redacted runtime logs, linked artifacts, and copied live output treated as valid evidence while unit tests, mocks, lint, typechecks, snapshots, and CI remain supplemental only.

8585

- Plugins/catalog: add an `@tencent-weixin/openclaw-weixin` external entry pinned to `2.4.1` so onboarding and `openclaw channels add` can install the Tencent Weixin (personal WeChat) channel by default. (#77269) Thanks @pumpkinxing1.

86+

- Developer tooling: add checked-in VS Code Gateway debugging configs and an opt-in `OUTPUT_SOURCE_MAPS=1` source-map build path for breakpoints in TypeScript source. (#45710) Thanks @SwissArmyBud.

8687
8788

### Fixes

8889
Original file line numberDiff line numberDiff line change

@@ -306,6 +306,38 @@ Default file:

306306

- Keep logs local and delete them after debugging.

307307

- If you share logs, scrub secrets and PII first.

308308
309+

## Debugging in VSCode

310+
311+

Source maps are required to enable debugging in VSCode-based IDEs because many of the generated files end up with hashed names as part of the build process. The included `launch.json` configurations target the Gateway service, but can be adapted quickly for other purposes:

312+
313+

1. **Rebuild and Debug Gateway** - Debugs the Gateway service after creating a new build

314+

2. **Debug Gateway** - Debugs the Gateway service of a pre-existing build

315+
316+

### Setup

317+
318+

The default **Rebuild and Debug Gateway** configuration is batteries-included, it will automatically delete the `/dist` folder and rebuild the project with debugging enabled:

319+
320+

1. Open the **Run and Debug** panel from the Activity Bar or press `Ctrl`+`Shift`+`D`

321+

2. In the IDE, ensure **Rebuild and Debug Gateway** is selected in the configuration dropdown and then press the **Start Debugging** button

322+
323+

Alternatively - if you prefer to manage the build and debug processes manually:

324+
325+

1. Open a terminal and enable source maps:

326+

- **Linux/macOS**: `export OUTPUT_SOURCE_MAPS=1`

327+

- **Windows (PowerShell)**: `$env:OUTPUT_SOURCE_MAPS="1"`

328+

- **Windows (CMD)**: `set OUTPUT_SOURCE_MAPS=1`

329+

2. In the same terminal, rebuild the project: `pnpm clean:dist && pnpm build`

330+

3. In the IDE, select the **Debug Gateway** option in the **Run and Debug** configuration dropdown and then press the **Start Debugging** button

331+
332+

You can now set breakpoints in your TypeScript source files (`src/` directory) and the debugger will correctly map breakpoints to the compiled JavaScript via source maps. You'll be able to inspect variables, step through code, and examine call stacks as expected.

333+
334+

### Notes

335+
336+

- If using the **"Rebuild and Debug Gateway"** option - each time the debugger is launched it will completely delete the `/dist` folder and run a full `pnpm build` with source maps enabled before starting the Gateway

337+

- If using the **"Debug Gateway"** option - debug sessions can be started and stopped at any time without affecting the `/dist` folder, but you must use a separate terminal process to both enable debugging and manage the build cycle

338+

- Modify the `launch.json` settings for `args` to debug other sections of the project

339+

- If you need to use the built OpenClaw CLI for other tasks (i.e. `dashboard --no-open` if your debug session spawns a new auth token), you can execute it in another terminal as `node ./openclaw.mjs` or create a shell alias like `alias openclaw-build="node $(pwd)/openclaw.mjs"`

340+
309341

## Related

310342
311343

- [Troubleshooting](/help/troubleshooting)

Original file line numberDiff line numberDiff line change

@@ -1330,6 +1330,7 @@

13301330

"ci:full-release": "node scripts/full-release-validation-at-sha.mjs",

13311331

"ci:timings": "node scripts/ci-run-timings.mjs --latest-main",

13321332

"ci:timings:recent": "node scripts/ci-run-timings.mjs --recent 10",

1333+

"clean:dist": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\"",

13331334

"codex-app-server:protocol:check": "node --import tsx scripts/check-codex-app-server-protocol.ts",

13341335

"codex-app-server:protocol:sync": "node --import tsx scripts/sync-codex-app-server-protocol.ts",

13351336

"config:channels:check": "node --import tsx scripts/generate-bundled-channel-config-metadata.ts --check",

Original file line numberDiff line numberDiff line change

@@ -32,6 +32,7 @@ type ExternalOptionFunction = (

3232

const env = {

3333

NODE_ENV: "production",

3434

};

35+

const OUTPUT_SOURCE_MAPS = process.env.OUTPUT_SOURCE_MAPS === "1";

3536
3637

const SUPPRESSED_EVAL_WARNING_PATHS = [

3738

"@protobufjs/inquire/index.js",

@@ -122,6 +123,7 @@ function nodeBuildConfig(config: UserConfig): UserConfig {

122123

env,

123124

fixedExtension: false,

124125

platform: "node",

126+

sourcemap: OUTPUT_SOURCE_MAPS,

125127

inputOptions: buildInputOptions,

126128

};

127129

}