Files
openclaw/src/acp/types.ts
2026-06-22 21:23:14 +08:00

11 lines
360 B
TypeScript

/** ACP protocol helpers and OpenClaw agent identity metadata. */
export { normalizeAcpProvenanceMode } from "@openclaw/acp-core/types";
import { VERSION } from "../version.js";
/** ACP agent identity advertised during protocol initialization. */
export const ACP_AGENT_INFO = {
name: "openclaw-acp",
title: "OpenClaw ACP Gateway",
version: VERSION,
};