mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-28 18:33:37 +00:00
* ACPX: keep plugin-local runtime installs out of dist * Gateway: harden ACP startup and service PATH * ACP: reinitialize error-state configured bindings * ACP: classify pre-turn runtime failures as session init failures * Plugins: move configured ACP routing behind channel seams * Telegram tests: align startup probe assertions after rebase * Discord: harden ACP configured binding recovery * ACP: recover Discord bindings after stale runtime exits * ACPX: replace dead sessions during ensure * Discord: harden ACP binding recovery * Discord: fix review follow-ups * ACP bindings: load channel snapshots across workspaces * ACP bindings: cache snapshot channel plugin resolution * Experiments: add ACP pluginification holy grail plan * Experiments: rename ACP pluginification plan doc * Experiments: drop old ACP pluginification doc path * ACP: move configured bindings behind plugin services * Experiments: update bindings capability architecture plan * Bindings: isolate configured binding routing and targets * Discord tests: fix runtime env helper path * Tests: fix channel binding CI regressions * Tests: normalize ACP workspace assertion on Windows * Bindings: isolate configured binding registry * Bindings: finish configured binding cleanup * Bindings: finish generic cleanup * Bindings: align runtime approval callbacks * ACP: delete residual bindings barrel * Bindings: restore legacy compatibility * Revert "Bindings: restore legacy compatibility" This reverts commit ac2ed68fa2426ecc874d68278c71c71ad363fcfe. * Tests: drop ACP route legacy helper names * Discord/ACP: fix binding regressions --------- Co-authored-by: Onur <2453968+osolmaz@users.noreply.github.com>
177 lines
5.3 KiB
TypeScript
177 lines
5.3 KiB
TypeScript
import { createHash } from "node:crypto";
|
|
import type { ChannelId } from "../channels/plugins/types.js";
|
|
import type { SessionBindingRecord } from "../infra/outbound/session-binding-service.js";
|
|
import { normalizeAccountId, resolveAgentIdFromSessionKey } from "../routing/session-key.js";
|
|
import { sanitizeAgentId } from "../routing/session-key.js";
|
|
import type { AcpRuntimeSessionMode } from "./runtime/types.js";
|
|
|
|
export type ConfiguredAcpBindingChannel = ChannelId;
|
|
|
|
export type ConfiguredAcpBindingSpec = {
|
|
channel: ConfiguredAcpBindingChannel;
|
|
accountId: string;
|
|
conversationId: string;
|
|
parentConversationId?: string;
|
|
/** Owning OpenClaw agent id (used for session identity/storage). */
|
|
agentId: string;
|
|
/** ACP harness agent id override (falls back to agentId when omitted). */
|
|
acpAgentId?: string;
|
|
mode: AcpRuntimeSessionMode;
|
|
cwd?: string;
|
|
backend?: string;
|
|
label?: string;
|
|
};
|
|
|
|
export type ResolvedConfiguredAcpBinding = {
|
|
spec: ConfiguredAcpBindingSpec;
|
|
record: SessionBindingRecord;
|
|
};
|
|
|
|
export type AcpBindingConfigShape = {
|
|
mode?: string;
|
|
cwd?: string;
|
|
backend?: string;
|
|
label?: string;
|
|
};
|
|
|
|
export function normalizeText(value: unknown): string | undefined {
|
|
if (typeof value !== "string") {
|
|
return undefined;
|
|
}
|
|
const trimmed = value.trim();
|
|
return trimmed || undefined;
|
|
}
|
|
|
|
export function normalizeMode(value: unknown): AcpRuntimeSessionMode {
|
|
const raw = normalizeText(value)?.toLowerCase();
|
|
return raw === "oneshot" ? "oneshot" : "persistent";
|
|
}
|
|
|
|
export function normalizeBindingConfig(raw: unknown): AcpBindingConfigShape {
|
|
if (!raw || typeof raw !== "object") {
|
|
return {};
|
|
}
|
|
const shape = raw as AcpBindingConfigShape;
|
|
const mode = normalizeText(shape.mode);
|
|
return {
|
|
mode: mode ? normalizeMode(mode) : undefined,
|
|
cwd: normalizeText(shape.cwd),
|
|
backend: normalizeText(shape.backend),
|
|
label: normalizeText(shape.label),
|
|
};
|
|
}
|
|
|
|
function buildBindingHash(params: {
|
|
channel: ConfiguredAcpBindingChannel;
|
|
accountId: string;
|
|
conversationId: string;
|
|
}): string {
|
|
return createHash("sha256")
|
|
.update(`${params.channel}:${params.accountId}:${params.conversationId}`)
|
|
.digest("hex")
|
|
.slice(0, 16);
|
|
}
|
|
|
|
export function buildConfiguredAcpSessionKey(spec: ConfiguredAcpBindingSpec): string {
|
|
const hash = buildBindingHash({
|
|
channel: spec.channel,
|
|
accountId: spec.accountId,
|
|
conversationId: spec.conversationId,
|
|
});
|
|
return `agent:${sanitizeAgentId(spec.agentId)}:acp:binding:${spec.channel}:${spec.accountId}:${hash}`;
|
|
}
|
|
|
|
export function toConfiguredAcpBindingRecord(spec: ConfiguredAcpBindingSpec): SessionBindingRecord {
|
|
return {
|
|
bindingId: `config:acp:${spec.channel}:${spec.accountId}:${spec.conversationId}`,
|
|
targetSessionKey: buildConfiguredAcpSessionKey(spec),
|
|
targetKind: "session",
|
|
conversation: {
|
|
channel: spec.channel,
|
|
accountId: spec.accountId,
|
|
conversationId: spec.conversationId,
|
|
parentConversationId: spec.parentConversationId,
|
|
},
|
|
status: "active",
|
|
boundAt: 0,
|
|
metadata: {
|
|
source: "config",
|
|
mode: spec.mode,
|
|
agentId: spec.agentId,
|
|
...(spec.acpAgentId ? { acpAgentId: spec.acpAgentId } : {}),
|
|
label: spec.label,
|
|
...(spec.backend ? { backend: spec.backend } : {}),
|
|
...(spec.cwd ? { cwd: spec.cwd } : {}),
|
|
},
|
|
};
|
|
}
|
|
|
|
export function parseConfiguredAcpSessionKey(
|
|
sessionKey: string,
|
|
): { channel: ConfiguredAcpBindingChannel; accountId: string } | null {
|
|
const trimmed = sessionKey.trim();
|
|
if (!trimmed.startsWith("agent:")) {
|
|
return null;
|
|
}
|
|
const rest = trimmed.slice(trimmed.indexOf(":") + 1);
|
|
const nextSeparator = rest.indexOf(":");
|
|
if (nextSeparator === -1) {
|
|
return null;
|
|
}
|
|
const tokens = rest.slice(nextSeparator + 1).split(":");
|
|
if (tokens.length !== 5 || tokens[0] !== "acp" || tokens[1] !== "binding") {
|
|
return null;
|
|
}
|
|
const channel = tokens[2]?.trim().toLowerCase();
|
|
if (!channel) {
|
|
return null;
|
|
}
|
|
return {
|
|
channel: channel as ConfiguredAcpBindingChannel,
|
|
accountId: normalizeAccountId(tokens[3] ?? "default"),
|
|
};
|
|
}
|
|
|
|
export function resolveConfiguredAcpBindingSpecFromRecord(
|
|
record: SessionBindingRecord,
|
|
): ConfiguredAcpBindingSpec | null {
|
|
if (record.targetKind !== "session") {
|
|
return null;
|
|
}
|
|
const conversationId = record.conversation.conversationId.trim();
|
|
if (!conversationId) {
|
|
return null;
|
|
}
|
|
const agentId =
|
|
normalizeText(record.metadata?.agentId) ??
|
|
resolveAgentIdFromSessionKey(record.targetSessionKey);
|
|
if (!agentId) {
|
|
return null;
|
|
}
|
|
return {
|
|
channel: record.conversation.channel as ConfiguredAcpBindingChannel,
|
|
accountId: normalizeAccountId(record.conversation.accountId),
|
|
conversationId,
|
|
parentConversationId: normalizeText(record.conversation.parentConversationId),
|
|
agentId,
|
|
acpAgentId: normalizeText(record.metadata?.acpAgentId),
|
|
mode: normalizeMode(record.metadata?.mode),
|
|
cwd: normalizeText(record.metadata?.cwd),
|
|
backend: normalizeText(record.metadata?.backend),
|
|
label: normalizeText(record.metadata?.label),
|
|
};
|
|
}
|
|
|
|
export function toResolvedConfiguredAcpBinding(
|
|
record: SessionBindingRecord,
|
|
): ResolvedConfiguredAcpBinding | null {
|
|
const spec = resolveConfiguredAcpBindingSpecFromRecord(record);
|
|
if (!spec) {
|
|
return null;
|
|
}
|
|
return {
|
|
spec,
|
|
record,
|
|
};
|
|
}
|