mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 16:51:36 +00:00
* feat(codex): add native session supervision * fix(codex): harden supervision integration * fix(codex): preserve locked harness ownership * fix(codex): fence native session archive * fix(codex): revalidate archive binding ownership * feat(codex): integrate supervision runtime * feat(sessions): preserve harness-owned execution * feat(sessions): persist harness ownership invariants * feat(gateway): enforce harness-owned sessions * feat(setup): enable detected Codex supervision * feat(mac): expose supervised Codex sessions * feat(ui): make Codex sessions actionable * docs(codex): document session supervision * test(codex): cover integration ownership * chore(i18n): refresh supervision inventories * fix(setup): finalize Codex activation atomically * test(codex): narrow binding store update * fix(sessions): preserve legacy model locks * test(macos): serialize Codex catalog fixtures * fix(sessions): preserve legacy lock admission * chore(i18n): reconcile supervision metadata * test(sessions): mark legacy lock fixture * fix(macos): drain final Codex catalog frame * docs: leave supervision note to release * style(macos): satisfy Codex catalog type length * chore: record session accessor seam owners * fix(macos): honor configured Codex supervision * fix(codex): preserve harness-owned model locks * fix(codex): satisfy supervision lint gates * chore(i18n): refresh native supervision inventory * fix(codex): align supervision validation contracts * fix(codex): close supervision boundary gaps * fix(codex): preserve supervision activation contracts * fix(codex): dispose standalone supervision runtime * fix(codex): pin supervised source connection * fix(plugins): bind delegated runs to exact session target * fix(codex): scope supervised sessions to configured agents * fix(codex): fingerprint effective supervision home * fix(codex): normalize supervision plugin policy * fix(codex): keep supervised bindings stable across upgrades * fix(codex): guard all supervised binding connections * fix(codex): preserve catalog filters and pending CAS identity * fix(codex): preserve supervision identity for diagnostics * fix(codex): bind uncertain commits to supervision connection * fix(codex): satisfy supervision type boundaries * fix(macos): reconcile current main validation * fix(codex): handle absent runtime config in supervision * fix(doctor): own local audio acceleration check * fix(codex): satisfy integration lint gates * fix(codex): satisfy lifecycle safety guards
80 lines
3.0 KiB
TypeScript
80 lines
3.0 KiB
TypeScript
import { ErrorCodes, errorShape } from "../../../packages/gateway-protocol/src/index.js";
|
|
import { resolveMainSessionKey } from "../../config/sessions.js";
|
|
import { resolveSessionEntryAccessTarget } from "../../config/sessions/session-accessor.js";
|
|
import {
|
|
AGENT_HARNESS_SESSION_KEY_RESERVED_MESSAGE,
|
|
isAgentHarnessSessionKey,
|
|
isAgentHarnessSessionStoreEntryProtected,
|
|
} from "../../sessions/agent-harness-session-key.js";
|
|
import { mintAttachGrant, revokeAttachGrant } from "../mcp-grant-store.js";
|
|
import { ensureMcpLoopbackServer } from "../mcp-http.js";
|
|
import {
|
|
createMcpAttachGrantServerConfig,
|
|
getActiveMcpLoopbackRuntime,
|
|
} from "../mcp-http.loopback-runtime.js";
|
|
import type { GatewayRequestHandlers } from "./types.js";
|
|
|
|
function paramRecord(params: unknown): Record<string, unknown> {
|
|
return params && typeof params === "object" ? (params as Record<string, unknown>) : {};
|
|
}
|
|
|
|
function readString(params: Record<string, unknown>, key: string): string | undefined {
|
|
const value = params[key];
|
|
return typeof value === "string" && value.trim() ? value.trim() : undefined;
|
|
}
|
|
|
|
function readPositiveNumber(params: Record<string, unknown>, key: string): number | undefined {
|
|
const value = params[key];
|
|
return typeof value === "number" && Number.isFinite(value) && value > 0 ? value : undefined;
|
|
}
|
|
|
|
export const attachHandlers: GatewayRequestHandlers = {
|
|
"attach.grant": async ({ params, respond, context }) => {
|
|
const grantParams = paramRecord(params);
|
|
const cfg = context.getRuntimeConfig();
|
|
const sessionKey = readString(grantParams, "sessionKey") ?? resolveMainSessionKey(cfg);
|
|
const harnessEntry = isAgentHarnessSessionKey(sessionKey)
|
|
? resolveSessionEntryAccessTarget({ cfg, sessionKey }).entry
|
|
: undefined;
|
|
if (
|
|
isAgentHarnessSessionKey(sessionKey) &&
|
|
(!harnessEntry || isAgentHarnessSessionStoreEntryProtected(sessionKey, harnessEntry))
|
|
) {
|
|
respond(
|
|
false,
|
|
undefined,
|
|
errorShape(ErrorCodes.INVALID_REQUEST, AGENT_HARNESS_SESSION_KEY_RESERVED_MESSAGE),
|
|
);
|
|
return;
|
|
}
|
|
await ensureMcpLoopbackServer();
|
|
const runtime = getActiveMcpLoopbackRuntime();
|
|
if (!runtime) {
|
|
respond(
|
|
false,
|
|
undefined,
|
|
errorShape(ErrorCodes.UNAVAILABLE, "mcp loopback server unavailable"),
|
|
);
|
|
return;
|
|
}
|
|
const grant = mintAttachGrant({ sessionKey, ttlMs: readPositiveNumber(grantParams, "ttlMs") });
|
|
respond(true, {
|
|
sessionKey: grant.sessionKey,
|
|
token: grant.token,
|
|
expiresAtMs: grant.expiresAtMs,
|
|
mcpConfig: createMcpAttachGrantServerConfig(runtime.port),
|
|
env: {
|
|
OPENCLAW_MCP_TOKEN: grant.token,
|
|
},
|
|
});
|
|
},
|
|
"attach.revoke": async ({ params, respond }) => {
|
|
const token = readString(paramRecord(params), "token");
|
|
if (!token) {
|
|
respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, "token is required"));
|
|
return;
|
|
}
|
|
respond(true, { revoked: revokeAttachGrant(token) });
|
|
},
|
|
};
|