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

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
小众软件
小众软件
V
V2EX
月光博客
月光博客
腾讯CDC
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
D
Docker
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI

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

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

1111

const IRC_ERROR_CODES = new Set(["432", "464", "465"]);

1212

const IRC_NICK_COLLISION_CODES = new Set(["433", "436"]);

1313
14-

export type IrcPrivmsgEvent = {

14+

type IrcPrivmsgEvent = {

1515

senderNick: string;

1616

senderUser?: string;

1717

senderHost?: string;

@@ -39,7 +39,7 @@ export type IrcClientOptions = {

3939

onLine?: (line: string) => void;

4040

};

4141
42-

export type IrcNickServOptions = {

42+

type IrcNickServOptions = {

4343

enabled?: boolean;

4444

service?: string;

4545

password?: string;

Original file line numberDiff line numberDiff line change

@@ -42,7 +42,7 @@ const IrcNickServSchema = z

4242

}

4343

});

4444
45-

export const IrcAccountSchemaBase = z

45+

const IrcAccountSchemaBase = z

4646

.object({

4747

name: z.string().optional(),

4848

enabled: z.boolean().optional(),

@@ -68,7 +68,7 @@ export const IrcAccountSchemaBase = z

6868

})

6969

.strict();

7070
71-

export const IrcAccountSchema = IrcAccountSchemaBase.superRefine((value, ctx) => {

71+

const IrcAccountSchema = IrcAccountSchemaBase.superRefine((value, ctx) => {

7272

requireOpenAllowFrom({

7373

policy: value.dmPolicy,

7474

allowFrom: value.allowFrom,

Original file line numberDiff line numberDiff line change

@@ -10,7 +10,7 @@ import type { RuntimeEnv } from "./runtime-api.js";

1010

import { getIrcRuntime } from "./runtime.js";

1111

import type { CoreConfig, IrcInboundMessage } from "./types.js";

1212
13-

export type IrcMonitorOptions = {

13+

type IrcMonitorOptions = {

1414

accountId?: string;

1515

config?: CoreConfig;

1616

runtime?: RuntimeEnv;

Original file line numberDiff line numberDiff line change

@@ -3,14 +3,14 @@ import { normalizeIrcAllowlist, resolveIrcAllowlistMatch } from "./normalize.js"

33

import type { IrcAccountConfig, IrcChannelConfig } from "./types.js";

44

import type { IrcInboundMessage } from "./types.js";

55
6-

export type IrcGroupMatch = {

6+

type IrcGroupMatch = {

77

allowed: boolean;

88

groupConfig?: IrcChannelConfig;

99

wildcardConfig?: IrcChannelConfig;

1010

hasConfiguredGroups: boolean;

1111

};

1212
13-

export type IrcGroupAccessGate = {

13+

type IrcGroupAccessGate = {

1414

allowed: boolean;

1515

reason: string;

1616

};

Original file line numberDiff line numberDiff line change

@@ -3,15 +3,15 @@ import { hasIrcControlChars, stripIrcControlChars } from "./control-chars.js";

33
44

const IRC_TARGET_PATTERN = /^[^\s:]+$/u;

55
6-

export type ParsedIrcLine = {

6+

type ParsedIrcLine = {

77

raw: string;

88

prefix?: string;

99

command: string;

1010

params: string[];

1111

trailing?: string;

1212

};

1313
14-

export type ParsedIrcPrefix = {

14+

type ParsedIrcPrefix = {

1515

nick?: string;

1616

user?: string;

1717

host?: string;

Original file line numberDiff line numberDiff line change

@@ -18,7 +18,7 @@ type SendIrcOptions = {

1818

client?: IrcClient;

1919

};

2020
21-

export type SendIrcResult = {

21+

type SendIrcResult = {

2222

messageId: string;

2323

target: string;

2424

};

Original file line numberDiff line numberDiff line change

@@ -66,7 +66,7 @@ export type IrcAccountConfig = {

6666

mediaMaxMb?: number;

6767

};

6868
69-

export type IrcConfig = IrcAccountConfig & {

69+

type IrcConfig = IrcAccountConfig & {

7070

accounts?: Record<string, IrcAccountConfig>;

7171

defaultAccount?: string;

7272

};