mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 00:03:54 +00:00
11 lines
360 B
TypeScript
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,
|
|
};
|