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

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
月光博客
月光博客
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 聂微东
V
V2EX

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
refactor: trim signal helper exports · openclaw/openclaw@...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

import { spawn } from "node:child_process";

22

import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime-env";

33
4-

export type SignalDaemonOpts = {

4+

type SignalDaemonOpts = {

55

cliPath: string;

66

account?: string;

77

httpHost: string;

Original file line numberDiff line numberDiff line change

@@ -11,7 +11,7 @@ import {

1111

} from "../identity.js";

1212

import type { SignalDataMessage } from "./event-handler.types.js";

1313
14-

export type SignalQuoteContext = {

14+

type SignalQuoteContext = {

1515

contextVisibilityMode: ReturnType<typeof resolveChannelContextVisibilityMode>;

1616

decision: ContextVisibilityDecision;

1717

quoteSenderAllowed: boolean;

Original file line numberDiff line numberDiff line change

@@ -1,12 +1,9 @@

11

import type { PluginRuntime } from "openclaw/plugin-sdk/core";

22

import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";

33
4-

const {

5-

setRuntime: setSignalRuntime,

6-

clearRuntime: clearSignalRuntime,

7-

getRuntime: getSignalRuntime,

8-

} = createPluginRuntimeStore<PluginRuntime>({

9-

pluginId: "signal",

10-

errorMessage: "Signal runtime not initialized",

11-

});

12-

export { clearSignalRuntime, getSignalRuntime, setSignalRuntime };

4+

const { setRuntime: setSignalRuntime, clearRuntime: clearSignalRuntime } =

5+

createPluginRuntimeStore<PluginRuntime>({

6+

pluginId: "signal",

7+

errorMessage: "Signal runtime not initialized",

8+

});

9+

export { clearSignalRuntime, setSignalRuntime };

Original file line numberDiff line numberDiff line change

@@ -88,7 +88,7 @@ function buildSignalSetupPatch(input: {

8888

};

8989

}

9090
91-

export async function promptSignalAllowFrom(params: {

91+

async function promptSignalAllowFrom(params: {

9292

cfg: OpenClawConfig;

9393

prompter: WizardPrompter;

9494

accountId?: string;

Original file line numberDiff line numberDiff line change

@@ -13,7 +13,6 @@ import {

1313

signalCompletionNote,

1414

signalDmPolicy,

1515

signalNumberTextInput,

16-

signalSetupAdapter,

1716

} from "./setup-core.js";

1817
1918

const channel = "signal" as const;

@@ -88,4 +87,4 @@ export const signalSetupWizard: ChannelSetupWizard = {

8887

disable: (cfg) => setSetupChannelEnabled(cfg, channel, false),

8988

};

9089
91-

export { normalizeSignalAccountInput, parseSignalAllowFromEntries, signalSetupAdapter };

90+

export { normalizeSignalAccountInput, parseSignalAllowFromEntries };

Original file line numberDiff line numberDiff line change

@@ -19,7 +19,7 @@ import {

1919

import { SignalChannelConfigSchema } from "./config-schema.js";

2020

import { createSignalSetupWizardProxy } from "./setup-core.js";

2121
22-

export const SIGNAL_CHANNEL = "signal" as const;

22+

const SIGNAL_CHANNEL = "signal" as const;

2323
2424

async function loadSignalChannelRuntime() {

2525

return await import("./channel.runtime.js");