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

推荐订阅源

J
Java Code Geeks
S
SegmentFault 最新的问题
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
I
InfoQ
U
Unit 42
博客园_首页
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 聂微东
T
Tailwind CSS 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
refactor: trim qqbot internal types · openclaw/openclaw@0...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -27,7 +27,7 @@ const DEFAULT_QUEUE_SNAPSHOT = {

2727

senderPending: 0,

2828

} as const;

2929
30-

export interface BuildFrameworkSlashContextInput {

30+

interface BuildFrameworkSlashContextInput {

3131

ctx: PluginCommandContext;

3232

account: ResolvedQQBotAccount;

3333

from: QQBotFromParseResult;

Original file line numberDiff line numberDiff line change

@@ -19,11 +19,11 @@ import type { QQBotFromParseResult } from "./from-parser.js";

1919
2020

const UNEXPECTED_RESULT_TEXT = "⚠️ 命令返回了意外结果。";

2121
22-

export interface FrameworkSlashReply {

22+

interface FrameworkSlashReply {

2323

text: string;

2424

}

2525
26-

export interface DispatchFrameworkSlashResultInput {

26+

interface DispatchFrameworkSlashResultInput {

2727

result: SlashCommandResult;

2828

account: ResolvedQQBotAccount;

2929

from: QQBotFromParseResult;

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@

55

* engine's `debugLog` so that all logs flow through the OpenClaw log system.

66

*/

77
8-

export interface BridgeLogger {

8+

interface BridgeLogger {

99

info: (msg: string) => void;

1010

error: (msg: string) => void;

1111

warn?: (msg: string) => void;

Original file line numberDiff line numberDiff line change

@@ -23,7 +23,7 @@ import {

2323

type QQBotGroupPolicy,

2424

} from "./types.js";

2525
26-

export interface QQBotAccessInput extends EffectivePolicyInput {

26+

interface QQBotAccessInput extends EffectivePolicyInput {

2727

/** Whether the inbound originated in a group (or guild) chat. */

2828

isGroup: boolean;

2929

/** The raw inbound sender id as provided by the QQ event. */

Original file line numberDiff line numberDiff line change

@@ -16,7 +16,7 @@ const DEFAULT_BASE_URL = "https://api.sgroup.qq.com";

1616

const DEFAULT_TIMEOUT_MS = 30_000;

1717

const FILE_UPLOAD_TIMEOUT_MS = 120_000;

1818
19-

export interface RequestOptions {

19+

interface RequestOptions {

2020

/** Request timeout override in milliseconds. */

2121

timeoutMs?: number;

2222

/** Body keys to redact in debug logs (e.g. `['file_data']`). */

Original file line numberDiff line numberDiff line change

@@ -84,15 +84,15 @@ export class UploadDailyLimitExceededError extends Error {

8484

}

8585
8686

/** Chunked-upload progress callback payload. */

87-

export interface ChunkedUploadProgress {

87+

interface ChunkedUploadProgress {

8888

completedParts: number;

8989

totalParts: number;

9090

uploadedBytes: number;

9191

totalBytes: number;

9292

}

9393
9494

/** Per-call options for {@link ChunkedMediaApi.uploadChunked}. */

95-

export interface UploadChunkedOptions {

95+

interface UploadChunkedOptions {

9696

scope: ChatScope;

9797

targetId: string;

9898

fileType: MediaFileType;

@@ -110,7 +110,7 @@ export interface UploadChunkedOptions {

110110

}

111111
112112

/** Configuration for the {@link ChunkedMediaApi} constructor. */

113-

export interface ChunkedMediaApiConfig {

113+

interface ChunkedMediaApiConfig {

114114

logger?: EngineLogger;

115115

/** Upload cache adapter (optional; omit to disable caching). */

116116

uploadCache?: UploadCacheAdapter;

Original file line numberDiff line numberDiff line change

@@ -42,7 +42,7 @@ export interface UploadCacheAdapter {

4242

/** File name sanitizer — injected to avoid importing platform-specific utils. */

4343

export type SanitizeFileNameFn = (name: string) => string;

4444
45-

export interface MediaApiConfig {

45+

interface MediaApiConfig {

4646

logger?: EngineLogger;

4747

/** Upload cache adapter (optional, omit to disable caching). */

4848

uploadCache?: UploadCacheAdapter;

Original file line numberDiff line numberDiff line change

@@ -28,7 +28,7 @@ import {

2828

} from "./routes.js";

2929

import { TokenManager } from "./token.js";

3030
31-

export interface MessageApiConfig {

31+

interface MessageApiConfig {

3232

/** Whether the QQ Bot has markdown permission. */

3333

markdownSupport: boolean;

3434

/** Logger for diagnostics. */

Original file line numberDiff line numberDiff line change

@@ -14,7 +14,7 @@ import type { EngineLogger } from "../types.js";

1414

import { formatErrorMessage } from "../utils/format.js";

1515
1616

/** Standard retry policy with exponential or fixed backoff. */

17-

export interface RetryPolicy {

17+

interface RetryPolicy {

1818

/** Maximum retry attempts (excluding the initial attempt). */

1919

maxRetries: number;

2020

/** Base delay in milliseconds. */

@@ -36,7 +36,7 @@ export interface RetryPolicy {

3636

* the standard retry loop into a tight fixed-interval loop bounded

3737

* only by the total timeout.

3838

*/

39-

export interface PersistentRetryPolicy {

39+

interface PersistentRetryPolicy {

4040

/** Total timeout in milliseconds for the persistent retry loop. */

4141

timeoutMs: number;

4242

/** Fixed interval between retries in milliseconds. */

Original file line numberDiff line numberDiff line change

@@ -17,7 +17,7 @@ interface CachedToken {

1717

appId: string;

1818

}

1919
20-

export interface BackgroundRefreshOptions {

20+

interface BackgroundRefreshOptions {

2121

refreshAheadMs?: number;

2222

randomOffsetMs?: number;

2323

minRefreshIntervalMs?: number;