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

推荐订阅源

罗磊的独立博客
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
有赞技术团队
有赞技术团队
Vercel News
Vercel News
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
The Cloudflare Blog
B
Blog
C
Check Point Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
U
Unit 42
D
Docker
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
A
About on SuperTechFans

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 gateway tail type exports · openclaw/openc...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -18,14 +18,14 @@ export type GatewaySessionsDefaults = {

1818

thinkingDefault?: string;

1919

};

2020
21-

export type GatewayThinkingLevelOption = {

21+

type GatewayThinkingLevelOption = {

2222

id: string;

2323

label: string;

2424

};

2525
2626

export type SessionRunStatus = "running" | "done" | "failed" | "killed" | "timeout";

2727
28-

export type SubagentRunState = "active" | "interrupted" | "historical";

28+

type SubagentRunState = "active" | "interrupted" | "historical";

2929
3030

export type GatewaySessionRow = {

3131

key: string;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import { formatErrorMessage } from "../infra/errors.js";

22
3-

export type StartupTaskResult =

3+

type StartupTaskResult =

44

| { status: "skipped"; reason: string }

55

| { status: "ran" }

66

| { status: "failed"; reason: string };

@@ -13,7 +13,7 @@ export type StartupTask = {

1313

run: () => Promise<StartupTaskResult>;

1414

};

1515
16-

export type StartupTaskLogger = {

16+

type StartupTaskLogger = {

1717

debug: (message: string, meta?: Record<string, unknown>) => void;

1818

warn: (message: string, meta?: Record<string, unknown>) => void;

1919

};

Original file line numberDiff line numberDiff line change

@@ -18,7 +18,7 @@ const MAX_RELAY_SESSIONS_PER_CONN = 2;

1818

const MAX_RELAY_SESSIONS_GLOBAL = 64;

1919

const RELAY_EVENT = "talk.realtime.relay";

2020
21-

export type TalkRealtimeRelayEvent =

21+

type TalkRealtimeRelayEvent =

2222

| { relaySessionId: string; type: "ready" }

2323

| { relaySessionId: string; type: "audio"; audioBase64: string }

2424

| { relaySessionId: string; type: "clear" }

@@ -50,7 +50,7 @@ type RelaySession = {

5050

cleanupTimer: ReturnType<typeof setTimeout>;

5151

};

5252
53-

export type CreateTalkRealtimeRelaySessionParams = {

53+

type CreateTalkRealtimeRelaySessionParams = {

5454

context: GatewayRequestContext;

5555

connId: string;

5656

provider: RealtimeVoiceProviderPlugin;

@@ -61,7 +61,7 @@ export type CreateTalkRealtimeRelaySessionParams = {

6161

voice?: string;

6262

};

6363
64-

export type TalkRealtimeRelaySessionResult = {

64+

type TalkRealtimeRelaySessionResult = {

6565

provider: string;

6666

transport: "gateway-relay";

6767

relaySessionId: string;

Original file line numberDiff line numberDiff line change

@@ -2,8 +2,8 @@ import { afterAll, beforeAll, beforeEach } from "vitest";

22

import { connectOk, startServerWithClient, testState } from "./test-helpers.js";

33
44

type StartServerWithClient = typeof startServerWithClient;

5-

export type GatewayWs = Awaited<ReturnType<StartServerWithClient>>["ws"];

6-

export type GatewayServer = Awaited<ReturnType<StartServerWithClient>>["server"];

5+

type GatewayWs = Awaited<ReturnType<StartServerWithClient>>["ws"];

6+

type GatewayServer = Awaited<ReturnType<StartServerWithClient>>["server"];

77
88

export async function withServer<T>(run: (ws: GatewayWs) => Promise<T>): Promise<T> {

99

const { server, ws, envSnapshot } = await startServerWithClient("secret");

Original file line numberDiff line numberDiff line change

@@ -24,7 +24,7 @@ import { logWarn } from "../logger.js";

2424

import { getPluginToolMeta } from "../plugins/tools.js";

2525

import { DEFAULT_GATEWAY_HTTP_TOOL_DENY } from "../security/dangerous-tools.js";

2626
27-

export type GatewayScopedToolSurface = "http" | "loopback";

27+

type GatewayScopedToolSurface = "http" | "loopback";

2828
2929

export function resolveGatewayScopedTools(params: {

3030

cfg: OpenClawConfig;

Original file line numberDiff line numberDiff line change

@@ -30,13 +30,9 @@ export type ToolsInvokeInput = {

3030

dryRun?: unknown;

3131

};

3232
33-

export type ToolsInvokeErrorType =

34-

| "invalid_request"

35-

| "not_found"

36-

| "tool_call_blocked"

37-

| "tool_error";

33+

type ToolsInvokeErrorType = "invalid_request" | "not_found" | "tool_call_blocked" | "tool_error";

3834
39-

export type ToolsInvokeOutcome =

35+

type ToolsInvokeOutcome =

4036

| {

4137

ok: true;

4238

status: 200;