mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 07:20:46 +00:00
* feat(codex): add tool hook parity * fix(codex): stabilize tool hook parity * fix(codex): tighten transcript hook typing * fix(codex): preserve mirrored transcript idempotency * fix(codex): normalize tool hook context
10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
import { getActivePluginRegistry } from "./runtime.js";
|
|
|
|
export const CODEX_APP_SERVER_EXTENSION_RUNTIME_ID = "codex-app-server";
|
|
|
|
export function listCodexAppServerExtensionFactories() {
|
|
return (
|
|
getActivePluginRegistry()?.codexAppServerExtensionFactories?.map((entry) => entry.factory) ?? []
|
|
);
|
|
}
|