feat: implement OpenClaw integration
Ports the OMX OpenClaw module into oh-my-openagent as a first-class integration. This integration allows forwarding internal events (session lifecycle, tool execution) to external gateways (HTTP or command-based). - Added `src/openclaw` directory with implementation: - `dispatcher.ts`: Handles HTTP/Command dispatching with interpolation - `types.ts`: TypeScript definitions - `client.ts`: Main entry point `wakeOpenClaw` - `index.ts`: Public API - Added `src/config/schema/openclaw.ts` for Zod schema validation - Updated `src/config/schema/oh-my-opencode-config.ts` to include `openclaw` config - Added `src/hooks/openclaw-sender/index.ts` to listen for events - Registered the hook in `src/plugin/hooks/create-session-hooks.ts` - Added unit tests in `src/openclaw/__tests__` Events handled: - `session-start` (via `session.created`) - `session-end` (via `session.deleted`) - `session-idle` (via `session.idle`) - `ask-user-question` (via `tool.execute.before` for `ask_user_question`) - `stop` (via `tool.execute.before` for `stop-continuation` command)
This commit is contained in:
@@ -0,0 +1,317 @@
|
||||
/**
|
||||
* OpenClaw Gateway Dispatcher
|
||||
*
|
||||
* Sends instruction payloads to OpenClaw gateways via HTTP or CLI command.
|
||||
* All calls are non-blocking with timeouts. Failures are swallowed
|
||||
* to avoid blocking hooks.
|
||||
*
|
||||
* SECURITY: Command gateway requires OMX_OPENCLAW_COMMAND=1 opt-in.
|
||||
* Command timeout is configurable with safe bounds.
|
||||
* Prefers execFile for simple commands; falls back to sh -c only for shell metacharacters.
|
||||
*/
|
||||
|
||||
import {
|
||||
type OpenClawCommandGatewayConfig,
|
||||
type OpenClawGatewayConfig,
|
||||
type OpenClawHttpGatewayConfig,
|
||||
type OpenClawPayload,
|
||||
type OpenClawResult,
|
||||
} from "./types";
|
||||
import { exec, execFile } from "child_process";
|
||||
|
||||
/** Default per-request timeout for HTTP gateways */
|
||||
const DEFAULT_HTTP_TIMEOUT_MS = 10_000;
|
||||
/** Default command gateway timeout (backward-compatible default) */
|
||||
const DEFAULT_COMMAND_TIMEOUT_MS = 5_000;
|
||||
/**
|
||||
* Command timeout safety bounds.
|
||||
* - Minimum 100ms: avoids immediate/near-zero timeout misconfiguration.
|
||||
* - Maximum 300000ms (5 minutes): prevents runaway long-lived command processes.
|
||||
*/
|
||||
const MIN_COMMAND_TIMEOUT_MS = 100;
|
||||
const MAX_COMMAND_TIMEOUT_MS = 300_000;
|
||||
|
||||
/** Shell metacharacters that require sh -c instead of execFile */
|
||||
const SHELL_METACHAR_RE = /[|&;><`$()]/;
|
||||
|
||||
/**
|
||||
* Validate gateway URL. Must be HTTPS, except localhost/127.0.0.1/::1
|
||||
* which allows HTTP for local development.
|
||||
*/
|
||||
export function validateGatewayUrl(url: string): boolean {
|
||||
try {
|
||||
const parsed = new URL(url);
|
||||
if (parsed.protocol === "https:") return true;
|
||||
if (
|
||||
parsed.protocol === "http:" &&
|
||||
(parsed.hostname === "localhost" ||
|
||||
parsed.hostname === "127.0.0.1" ||
|
||||
parsed.hostname === "::1" ||
|
||||
parsed.hostname === "[::1]")
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
} catch (err) {
|
||||
process.stderr.write(`[openclaw-dispatcher] operation failed: ${err}\n`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Interpolate template variables in an instruction string.
|
||||
*
|
||||
* Supported variables (from hook context):
|
||||
* - {{projectName}} - basename of project directory
|
||||
* - {{projectPath}} - full project directory path
|
||||
* - {{sessionId}} - session identifier
|
||||
* - {{prompt}} - prompt text
|
||||
* - {{contextSummary}} - context summary (session-end event)
|
||||
* - {{question}} - question text (ask-user-question event)
|
||||
* - {{timestamp}} - ISO timestamp
|
||||
* - {{event}} - hook event name
|
||||
* - {{instruction}} - interpolated instruction (for command gateway)
|
||||
* - {{replyChannel}} - originating channel (from OPENCLAW_REPLY_CHANNEL env var)
|
||||
* - {{replyTarget}} - reply target user/bot (from OPENCLAW_REPLY_TARGET env var)
|
||||
* - {{replyThread}} - reply thread ID (from OPENCLAW_REPLY_THREAD env var)
|
||||
*
|
||||
* Unresolved variables are replaced with empty string.
|
||||
*/
|
||||
export function interpolateInstruction(
|
||||
template: string,
|
||||
variables: Record<string, string | undefined>
|
||||
): string {
|
||||
return template.replace(/\{\{(\w+)\}\}/g, (_match, key) => {
|
||||
return variables[key] ?? "";
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Type guard: is this gateway config a command gateway?
|
||||
*/
|
||||
export function isCommandGateway(
|
||||
config: OpenClawGatewayConfig
|
||||
): config is OpenClawCommandGatewayConfig {
|
||||
return config.type === "command";
|
||||
}
|
||||
|
||||
/**
|
||||
* Shell-escape a string for safe embedding in a shell command.
|
||||
* Uses single-quote wrapping with internal quote escaping.
|
||||
*/
|
||||
export function shellEscapeArg(value: string): string {
|
||||
return "'" + value.replace(/'/g, "'\\''") + "'";
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolve command gateway timeout with precedence:
|
||||
* gateway timeout > OMX_OPENCLAW_COMMAND_TIMEOUT_MS > default.
|
||||
*/
|
||||
export function resolveCommandTimeoutMs(
|
||||
gatewayTimeout?: number,
|
||||
envTimeoutRaw = process.env.OMX_OPENCLAW_COMMAND_TIMEOUT_MS
|
||||
): number {
|
||||
const parseFinite = (value: unknown): number | undefined => {
|
||||
if (typeof value !== "number" || !Number.isFinite(value)) return undefined;
|
||||
return value;
|
||||
};
|
||||
const parseEnv = (value: string | undefined): number | undefined => {
|
||||
if (!value) return undefined;
|
||||
const parsed = Number(value);
|
||||
return Number.isFinite(parsed) ? parsed : undefined;
|
||||
};
|
||||
|
||||
const rawTimeout =
|
||||
parseFinite(gatewayTimeout) ??
|
||||
parseEnv(envTimeoutRaw) ??
|
||||
DEFAULT_COMMAND_TIMEOUT_MS;
|
||||
|
||||
return Math.min(
|
||||
MAX_COMMAND_TIMEOUT_MS,
|
||||
Math.max(MIN_COMMAND_TIMEOUT_MS, Math.trunc(rawTimeout))
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Wake an HTTP-type OpenClaw gateway with the given payload.
|
||||
*/
|
||||
export async function wakeGateway(
|
||||
gatewayName: string,
|
||||
gatewayConfig: OpenClawHttpGatewayConfig,
|
||||
payload: OpenClawPayload
|
||||
): Promise<OpenClawResult> {
|
||||
if (!validateGatewayUrl(gatewayConfig.url)) {
|
||||
return {
|
||||
gateway: gatewayName,
|
||||
success: false,
|
||||
error: "Invalid URL (HTTPS required)",
|
||||
};
|
||||
}
|
||||
|
||||
try {
|
||||
const headers = {
|
||||
"Content-Type": "application/json",
|
||||
...gatewayConfig.headers,
|
||||
};
|
||||
const timeout = gatewayConfig.timeout ?? DEFAULT_HTTP_TIMEOUT_MS;
|
||||
|
||||
const controller = new AbortController();
|
||||
const timeoutId = setTimeout(() => controller.abort(), timeout);
|
||||
|
||||
const response = await fetch(gatewayConfig.url, {
|
||||
method: gatewayConfig.method || "POST",
|
||||
headers,
|
||||
body: JSON.stringify(payload),
|
||||
signal: controller.signal,
|
||||
});
|
||||
clearTimeout(timeoutId);
|
||||
|
||||
if (!response.ok) {
|
||||
return {
|
||||
gateway: gatewayName,
|
||||
success: false,
|
||||
error: `HTTP ${response.status}`,
|
||||
statusCode: response.status,
|
||||
};
|
||||
}
|
||||
|
||||
return { gateway: gatewayName, success: true, statusCode: response.status };
|
||||
} catch (error) {
|
||||
return {
|
||||
gateway: gatewayName,
|
||||
success: false,
|
||||
error: error instanceof Error ? error.message : "Unknown error",
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Wake a command-type OpenClaw gateway by executing a shell command.
|
||||
*
|
||||
* SECURITY REQUIREMENTS:
|
||||
* - Requires OMX_OPENCLAW_COMMAND=1 opt-in (separate gate from OMX_OPENCLAW)
|
||||
* - Timeout is configurable via gateway.timeout or OMX_OPENCLAW_COMMAND_TIMEOUT_MS
|
||||
* with safe clamping bounds and backward-compatible default 5000ms
|
||||
* - Prefers execFile for simple commands (no metacharacters)
|
||||
* - Falls back to sh -c only when metacharacters detected
|
||||
* - detached: false to prevent orphan processes
|
||||
* - SIGTERM cleanup handler kills child on parent SIGTERM, 1s grace then SIGKILL
|
||||
*
|
||||
* The command template supports {{variable}} placeholders. All variable
|
||||
* values are shell-escaped before interpolation to prevent injection.
|
||||
*/
|
||||
export async function wakeCommandGateway(
|
||||
gatewayName: string,
|
||||
gatewayConfig: OpenClawCommandGatewayConfig,
|
||||
variables: Record<string, string | undefined>
|
||||
): Promise<OpenClawResult> {
|
||||
// Separate command gateway opt-in gate
|
||||
if (process.env.OMX_OPENCLAW_COMMAND !== "1") {
|
||||
return {
|
||||
gateway: gatewayName,
|
||||
success: false,
|
||||
error: "Command gateway disabled (set OMX_OPENCLAW_COMMAND=1 to enable)",
|
||||
};
|
||||
}
|
||||
|
||||
let child: any = null;
|
||||
let sigtermHandler: (() => void) | null = null;
|
||||
|
||||
try {
|
||||
const timeout = resolveCommandTimeoutMs(gatewayConfig.timeout);
|
||||
|
||||
// Interpolate variables with shell escaping
|
||||
const interpolated = gatewayConfig.command.replace(
|
||||
/\{\{(\w+)\}\}/g,
|
||||
(match, key) => {
|
||||
const value = variables[key];
|
||||
if (value === undefined) return match;
|
||||
return shellEscapeArg(value);
|
||||
}
|
||||
);
|
||||
|
||||
// Detect whether the interpolated command contains shell metacharacters
|
||||
const hasMetachars = SHELL_METACHAR_RE.test(interpolated);
|
||||
|
||||
await new Promise<void>((resolve, reject) => {
|
||||
const cleanup = (signal: NodeJS.Signals) => {
|
||||
if (child) {
|
||||
child.kill(signal);
|
||||
// 1s grace period then SIGKILL
|
||||
setTimeout(() => {
|
||||
try {
|
||||
child?.kill("SIGKILL");
|
||||
} catch (err) {
|
||||
process.stderr.write(
|
||||
`[openclaw-dispatcher] operation failed: ${err}\n`
|
||||
);
|
||||
}
|
||||
}, 1000);
|
||||
}
|
||||
};
|
||||
|
||||
sigtermHandler = () => cleanup("SIGTERM");
|
||||
process.once("SIGTERM", sigtermHandler);
|
||||
|
||||
const onExit = (code: number | null, signal: NodeJS.Signals | null) => {
|
||||
if (sigtermHandler) {
|
||||
process.removeListener("SIGTERM", sigtermHandler);
|
||||
sigtermHandler = null;
|
||||
}
|
||||
|
||||
if (signal) {
|
||||
reject(new Error(`Command killed by signal ${signal}`));
|
||||
} else if (code !== 0) {
|
||||
reject(new Error(`Command exited with code ${code}`));
|
||||
} else {
|
||||
resolve();
|
||||
}
|
||||
};
|
||||
|
||||
const onError = (err: Error) => {
|
||||
if (sigtermHandler) {
|
||||
process.removeListener("SIGTERM", sigtermHandler);
|
||||
sigtermHandler = null;
|
||||
}
|
||||
reject(err);
|
||||
};
|
||||
|
||||
if (hasMetachars) {
|
||||
// Fall back to sh -c for complex commands with metacharacters
|
||||
child = exec(interpolated, {
|
||||
timeout,
|
||||
env: { ...process.env },
|
||||
});
|
||||
} else {
|
||||
// Parse simple command: split on whitespace, use execFile
|
||||
const parts = interpolated.split(/\s+/).filter(Boolean);
|
||||
const cmd = parts[0];
|
||||
const args = parts.slice(1);
|
||||
child = execFile(cmd, args, {
|
||||
timeout,
|
||||
env: { ...process.env },
|
||||
});
|
||||
}
|
||||
|
||||
// Ensure detached is false (default, but explicit via options above)
|
||||
if (child) {
|
||||
child.on("exit", onExit);
|
||||
child.on("error", onError);
|
||||
} else {
|
||||
reject(new Error("Failed to spawn process"));
|
||||
}
|
||||
});
|
||||
|
||||
return { gateway: gatewayName, success: true };
|
||||
} catch (error) {
|
||||
// Ensure SIGTERM handler is cleaned up on error
|
||||
if (sigtermHandler) {
|
||||
process.removeListener("SIGTERM", sigtermHandler as () => void);
|
||||
}
|
||||
return {
|
||||
gateway: gatewayName,
|
||||
success: false,
|
||||
error: error instanceof Error ? error.message : "Unknown error",
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user