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

推荐订阅源

云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
博客园_首页
The GitHub Blog
The GitHub Blog
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
D
Docker
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
小众软件
小众软件
I
InfoQ
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

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(acp): remove stale type re-export shim · opencla...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

88

PROTOCOL_VERSION,

99

ndJsonStream,

1010

} from "@agentclientprotocol/sdk";

11+

import type { AcpServerOptions } from "@openclaw/acp-core/types";

1112

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

1213

import {

1314

GATEWAY_CLIENT_CAPS,

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

2728

} from "./event-ledger.js";

2829

import { readSecretFromFile } from "./secret-file.js";

2930

import { AcpGatewayAgent } from "./translator.js";

30-

import { normalizeAcpProvenanceMode, type AcpServerOptions } from "./types.js";

31+

import { normalizeAcpProvenanceMode } from "./types.js";

3132
3233

type AcpStreamMessage =

3334

ReturnType<typeof ndJsonStream> extends {

Original file line numberDiff line numberDiff line change

@@ -33,6 +33,7 @@ import type {

3333

import { readBool, readNonNegativeInteger, readString } from "@openclaw/acp-core/meta";

3434

import { defaultAcpSessionStore, type AcpSessionStore } from "@openclaw/acp-core/session";

3535

import { toAcpSessionLineageMeta } from "@openclaw/acp-core/session-lineage-meta";

36+

import type { AcpServerOptions } from "@openclaw/acp-core/types";

3637

import { timestampMsToIsoString } from "@openclaw/normalization-core/number-coercion";

3738

import {

3839

normalizeFastMode,

@@ -101,7 +102,7 @@ import {

101102

resolveListSessionsPageSize,

102103

} from "./translator.session-list.js";

103104

import { AcpTranslatorSessionUpdates } from "./translator.session-updates.js";

104-

import { ACP_AGENT_INFO, type AcpServerOptions } from "./types.js";

105+

import { ACP_AGENT_INFO } from "./types.js";

105106
106107

// Maximum allowed prompt size (2MB) to prevent DoS via memory exhaustion (CWE-400, GHSA-cxpw-2g23-2vgw)

107108

const MAX_PROMPT_BYTES = 2 * 1024 * 1024;

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,4 @@

1-

/** ACP server option re-exports and OpenClaw agent identity metadata. */

2-

export type { AcpProvenanceMode, AcpServerOptions, AcpSession } from "@openclaw/acp-core/types";

1+

/** ACP protocol helpers and OpenClaw agent identity metadata. */

32

export { normalizeAcpProvenanceMode } from "@openclaw/acp-core/types";

43

import { VERSION } from "../version.js";

54