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

推荐订阅源

V
V2EX
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园 - 【当耐特】
月光博客
月光博客
C
Check Point Blog
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
Microsoft Security Blog
Microsoft Security Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
美团技术团队
N
Netflix TechBlog - Medium
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
L
LangChain Blog
The Cloudflare 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
fix: unblock landing checks (#73235) (thanks @zqchris) · ...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -2785,7 +2785,7 @@ module.exports = {

27852785

{

27862786

label: "loads plugins from config paths",

27872787

run: () => {

2788-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = "/nonexistent/bundled/plugins";

2788+

useNoBundledPlugins();

27892789

const plugin = writePlugin({

27902790

id: "allowed-config-path",

27912791

filename: "allowed-config-path.cjs",

@@ -4373,7 +4373,7 @@ module.exports = { id: "throws-after-import", register() {} };`,

43734373

});

4374437443754375

it("re-initializes global hook runner when serving registry from cache", () => {

4376-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = "/nonexistent/bundled/plugins";

4376+

useNoBundledPlugins();

43774377

const plugin = writePlugin({

43784378

id: "cache-hook-runner",

43794379

filename: "cache-hook-runner.cjs",

@@ -6604,7 +6604,6 @@ module.exports = {

66046604

{

66056605

label: "enforces memory slot selection",

66066606

loadRegistry: () => {

6607-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = "/nonexistent/bundled/plugins";

66086607

const memoryA = writePlugin({

66096608

id: "memory-a",

66106609

body: memoryPluginBody("memory-a"),

@@ -6614,15 +6613,22 @@ module.exports = {

66146613

body: memoryPluginBody("memory-b"),

66156614

});

661666156617-

return loadOpenClawPlugins({

6618-

cache: false,

6619-

config: {

6620-

plugins: {

6621-

load: { paths: [memoryA.file, memoryB.file] },

6622-

slots: { memory: "memory-b" },

6623-

},

6616+

return withEnv(

6617+

{

6618+

OPENCLAW_DISABLE_BUNDLED_PLUGINS: "1",

6619+

OPENCLAW_BUNDLED_PLUGINS_DIR: undefined,

66246620

},

6625-

});

6621+

() =>

6622+

loadOpenClawPlugins({

6623+

cache: false,

6624+

config: {

6625+

plugins: {

6626+

load: { paths: [memoryA.file, memoryB.file] },

6627+

slots: { memory: "memory-b" },

6628+

},

6629+

},

6630+

}),

6631+

);

66266632

},

66276633

assert: (registry: ReturnType<typeof loadOpenClawPlugins>) => {

66286634

const a = registry.plugins.find((entry) => entry.id === "memory-a");

@@ -6871,21 +6877,27 @@ module.exports = {

68716877

{

68726878

label: "disables memory plugins when slot is none",

68736879

loadRegistry: () => {

6874-

process.env.OPENCLAW_BUNDLED_PLUGINS_DIR = "/nonexistent/bundled/plugins";

68756880

const memory = writePlugin({

68766881

id: "memory-off",

68776882

body: memoryPluginBody("memory-off"),

68786883

});

687968846880-

return loadOpenClawPlugins({

6881-

cache: false,

6882-

config: {

6883-

plugins: {

6884-

load: { paths: [memory.file] },

6885-

slots: { memory: "none" },

6886-

},

6885+

return withEnv(

6886+

{

6887+

OPENCLAW_DISABLE_BUNDLED_PLUGINS: "1",

6888+

OPENCLAW_BUNDLED_PLUGINS_DIR: undefined,

68876889

},

6888-

});

6890+

() =>

6891+

loadOpenClawPlugins({

6892+

cache: false,

6893+

config: {

6894+

plugins: {

6895+

load: { paths: [memory.file] },

6896+

slots: { memory: "none" },

6897+

},

6898+

},

6899+

}),

6900+

);

68896901

},

68906902

assert: (registry: ReturnType<typeof loadOpenClawPlugins>) => {

68916903

const entry = registry.plugins.find((item) => item.id === "memory-off");