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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
有赞技术团队
有赞技术团队
H
Help Net Security
V
Visual Studio Blog
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
N
Netflix TechBlog - Medium
罗磊的独立博客
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements

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: bind plugin command llm auth to host agent · opencla...
steipete · 2026-05-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -521,6 +521,64 @@ describe("Discord native plugin command dispatch", () => {

521521

});

522522

});

523523
524+

it("passes the configured binding agent to plugin-owned Discord command sessions", async () => {

525+

const cfg = createConfig();

526+

const interaction = createInteraction();

527+

const pluginSessionKey = "plugin-binding:openclaw-codex-app-server:dm";

528+

discordNativeCommandTesting.setResolveDiscordNativeInteractionRouteState(async () => ({

529+

...createConfiguredRouteState({

530+

sessionKey: pluginSessionKey,

531+

agentId: "main",

532+

}),

533+

configuredBinding: {

534+

statefulTarget: {

535+

kind: "stateful",

536+

driverId: "codex",

537+

sessionKey: pluginSessionKey,

538+

agentId: "codex",

539+

},

540+

} as never,

541+

}));

542+

runtimeModuleMocks.getSessionEntry.mockReturnValue({

543+

sessionId: "codex-session",

544+

authProfileOverride: "openai-codex:owner@example.com",

545+

updatedAt: Date.now(),

546+

});

547+
548+

registerPairPlugin();

549+

const command = await createPluginCommand({

550+

cfg,

551+

name: "pair",

552+

});

553+

const executeSpy = runtimeModuleMocks.executePluginCommand.mockResolvedValue({

554+

text: "paired:now",

555+

});

556+
557+

await (command as { run: (interaction: unknown) => Promise<void> }).run(

558+

Object.assign(interaction, {

559+

options: {

560+

getString: () => "now",

561+

getBoolean: () => null,

562+

getFocused: () => "",

563+

},

564+

}) as unknown,

565+

);

566+
567+

expectPluginCommandExecution({

568+

mock: executeSpy,

569+

commandName: "pair",

570+

expected: {

571+

agentId: "codex",

572+

sessionKey: pluginSessionKey,

573+

authProfileId: "openai-codex:owner@example.com",

574+

},

575+

});

576+

expect(runtimeModuleMocks.getSessionEntry).toHaveBeenCalledWith({

577+

agentId: "codex",

578+

sessionKey: pluginSessionKey,

579+

});

580+

});

581+
524582

it("does not treat Discord DM allowlist users as scoped plugin command owners", async () => {

525583

const cfg = {

526584

channels: {

Original file line numberDiff line numberDiff line change

@@ -549,9 +549,14 @@ async function dispatchDiscordCommandInteraction(params: {

549549

}

550550

const messageThreadId = !isDirectMessage && isThreadChannel ? channelId : undefined;

551551

const pluginThreadParentId = !isDirectMessage && isThreadChannel ? threadParentId : undefined;

552-

const { effectiveRoute } = await getNativeRouteState();

552+

const routeState = await getNativeRouteState();

553+

const { effectiveRoute } = routeState;

554+

const pluginCommandAgentId =

555+

(isThreadChannel ? threadBindings.getByThreadId(rawChannelId)?.agentId : undefined) ||

556+

routeState.configuredBinding?.statefulTarget.agentId ||

557+

effectiveRoute.agentId;

553558

const targetSessionEntry = nativeCommandRuntime.getSessionEntry({

554-

agentId: effectiveRoute.agentId,

559+

agentId: pluginCommandAgentId,

555560

sessionKey: effectiveRoute.sessionKey,

556561

});

557562

const pluginReply = await nativeCommandRuntime.executePluginCommand({

@@ -562,6 +567,7 @@ async function dispatchDiscordCommandInteraction(params: {

562567

channelId,

563568

isAuthorizedSender: commandAuthorized,

564569

senderIsOwner: senderIsCommandOwner,

570+

agentId: pluginCommandAgentId,

565571

sessionKey: effectiveRoute.sessionKey,

566572

authProfileId: targetSessionEntry?.authProfileOverride,

567573

commandBody: prompt,

Original file line numberDiff line numberDiff line change

@@ -1455,6 +1455,7 @@ export const registerTelegramNativeCommands = ({

14551455

channel: "telegram",

14561456

isAuthorizedSender: commandAuthorized,

14571457

senderIsOwner,

1458+

agentId: route.agentId,

14581459

sessionKey: targetSessionKey,

14591460

sessionId: sessionFileContext.sessionId,

14601461

sessionFile: sessionFileContext.sessionFile,

Original file line numberDiff line numberDiff line change

@@ -450,6 +450,7 @@ async function executeCodexDiagnosticsAddon(

450450

isAuthorizedSender: params.command.isAuthorizedSender,

451451

senderIsOwner: params.command.senderIsOwner,

452452

gatewayClientScopes: params.ctx.GatewayClientScopes,

453+

agentId: params.agentId,

453454

sessionKey: params.sessionKey,

454455

sessionId: targetSessionEntry?.sessionId,

455456

sessionFile: targetSessionEntry?.sessionFile,

Original file line numberDiff line numberDiff line change

@@ -41,6 +41,7 @@ export const handlePluginCommand: CommandHandler = async (

4141

isAuthorizedSender: command.isAuthorizedSender,

4242

senderIsOwner: command.senderIsOwner,

4343

gatewayClientScopes: params.ctx.GatewayClientScopes,

44+

agentId: params.agentId,

4445

sessionKey: params.sessionKey,

4546

sessionId: targetSessionEntry?.sessionId,

4647

sessionFile: targetSessionEntry?.sessionFile,

Original file line numberDiff line numberDiff line change

@@ -1242,6 +1242,48 @@ describe("registerPluginCommand", () => {

12421242

);

12431243

});

12441244
1245+

it("binds plugin-owned command sessions to the host-resolved agent", async () => {

1246+

const handler = async (ctx: {

1247+

runtimeContext?: {

1248+

llm?: {

1249+

complete: (params: {

1250+

messages: Array<{ role: "user"; content: string }>;

1251+

}) => Promise<unknown>;

1252+

};

1253+

};

1254+

}) => {

1255+

await ctx.runtimeContext?.llm?.complete({

1256+

messages: [{ role: "user", content: "summarize" }],

1257+

});

1258+

return { text: "ok" };

1259+

};

1260+
1261+

await executePluginCommand({

1262+

command: {

1263+

name: "runtimecheck",

1264+

description: "Demo command",

1265+

acceptsArgs: false,

1266+

handler,

1267+

pluginId: "demo-plugin",

1268+

},

1269+

channel: "discord",

1270+

senderId: "U123",

1271+

isAuthorizedSender: true,

1272+

agentId: "codex",

1273+

sessionKey: "plugin-binding:openclaw-codex-app-server:dm",

1274+

authProfileId: "openai-codex:owner@example.com",

1275+

commandBody: "/runtimecheck",

1276+

config: {} as never,

1277+

});

1278+
1279+

expect(completionMocks.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

1280+

expect.objectContaining({

1281+

agentId: "codex",

1282+

preferredProfile: "openai-codex:owner@example.com",

1283+

}),

1284+

);

1285+

});

1286+
12451287

it("normalizes undefined plugin command handler results to an empty reply payload", async () => {

12461288

const handler = async () => undefined as never;

12471289
Original file line numberDiff line numberDiff line change

@@ -178,12 +178,14 @@ type PluginCommandLlmCompleteParams = Parameters<

178178

function buildPluginCommandRuntimeContext(params: {

179179

command: RegisteredPluginCommand;

180180

config: OpenClawConfig;

181+

agentId?: string;

181182

sessionKey?: string;

182183

authProfileId?: string;

183184

}): PluginCommandContext["runtimeContext"] {

184185

const sessionKey = params.sessionKey?.trim();

185186

const agentId = resolveBoundAgentIdForSession({

186187

config: params.config,

188+

agentId: params.agentId,

187189

sessionKey,

188190

});

189191

if (!sessionKey && !agentId) {

@@ -231,6 +233,8 @@ export async function executePluginCommand(params: {

231233

isAuthorizedSender: boolean;

232234

senderIsOwner?: boolean;

233235

gatewayClientScopes?: PluginCommandContext["gatewayClientScopes"];

236+

/** Host-resolved agent authority for plugin-owned or non-agent-shaped session keys. */

237+

agentId?: string;

234238

sessionKey?: PluginCommandContext["sessionKey"];

235239

sessionId?: PluginCommandContext["sessionId"];

236240

sessionFile?: PluginCommandContext["sessionFile"];

@@ -354,6 +358,7 @@ export async function executePluginCommand(params: {

354358

runtimeContext: buildPluginCommandRuntimeContext({

355359

command,

356360

config,

361+

agentId: params.agentId,

357362

sessionKey: params.sessionKey,

358363

authProfileId: params.authProfileId,

359364

}),