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

推荐订阅源

WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
月光博客
月光博客
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
U
Unit 42
腾讯CDC
爱范儿
爱范儿
J
Java Code Geeks
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
B
Blog
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure 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
test(scripts): route scripts lib metadata changes · openc...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -423,6 +423,10 @@ const PLUGIN_SDK_ENTRY_METADATA_TEST_TARGETS = [

423423

"test/scripts/ts-topology.test.ts",

424424

TOOLING_VITEST_CONFIG,

425425

];

426+

const OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS = [

427+

"src/plugins/official-external-plugin-catalog.test.ts",

428+

"test/release-check.test.ts",

429+

];

426430

const TOOLING_SOURCE_TEST_TARGETS = new Map([

427431

[".crabbox.yaml", ["test/scripts/package-acceptance-workflow.test.ts"]],

428432

[".github/workflows/ci.yml", ["test/scripts/ci-workflow-guards.test.ts"]],

@@ -779,8 +783,21 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

779783

"scripts/lib/bundled-plugin-source-utils.mjs",

780784

["test/scripts/bundled-plugin-source-utils.test.ts"],

781785

],

786+

[

787+

"scripts/lib/bundled-runtime-sidecar-paths.json",

788+

[

789+

"src/plugins/bundled-plugin-metadata.test.ts",

790+

"src/infra/update-global.test.ts",

791+

"src/infra/update-runner.test.ts",

792+

"test/openclaw-npm-postpublish-verify.test.ts",

793+

],

794+

],

782795

["scripts/lib/changed-extensions.mjs", ["test/scripts/test-extension.test.ts"]],

783796

["scripts/lib/dev-tooling-safety.ts", ["test/scripts/dev-tooling-safety.test.ts"]],

797+

[

798+

"scripts/lib/dependency-ownership.json",

799+

["test/scripts/dependency-ownership-surface-report.test.ts"],

800+

],

784801

[

785802

"scripts/lib/deprecated-plugin-sdk-usage.mjs",

786803

["test/scripts/check-deprecated-api-usage.test.ts"],

@@ -804,6 +821,12 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

804821

"scripts/lib/plugin-sdk-private-local-only-subpaths.json",

805822

PLUGIN_SDK_ENTRY_METADATA_TEST_TARGETS,

806823

],

824+

[

825+

"scripts/lib/official-external-channel-catalog.json",

826+

[...OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS, "test/official-channel-catalog.test.ts"],

827+

],

828+

["scripts/lib/official-external-plugin-catalog.json", OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS],

829+

["scripts/lib/official-external-provider-catalog.json", OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS],

807830

["scripts/lib/direct-run.mjs", ["test/scripts/changed-lanes.test.ts"]],

808831

["scripts/docker/cleanup-smoke/run.sh", ["test/scripts/docker-build-helper.test.ts"]],

809832

[