* Extensions: fix oxfmt drift on main * Plugins: restore runtime barrel exports on main * Config: restore web search compatibility types * Telegram: align test harness with reply runtime * Plugin SDK: fix channel config accessor generics * CLI: remove redundant search provider casts * Tests: restore main typecheck coverage * Lobster: fix test import formatting * Extensions: route bundled seams through plugin-sdk * Tests: use extension env helper for xai * Image generation: fix main oxfmt drift * Config: restore latest main compatibility checks * Plugin SDK: align guardrail tests with lint * Telegram: type native command skill mock
19 lines
700 B
TypeScript
19 lines
700 B
TypeScript
// Public ACP runtime helpers for plugins that integrate with ACP control/session state.
|
|
|
|
export { getAcpSessionManager } from "../acp/control-plane/manager.js";
|
|
export { AcpRuntimeError, isAcpRuntimeError } from "../acp/runtime/errors.js";
|
|
export type { AcpRuntimeErrorCode } from "../acp/runtime/errors.js";
|
|
export type {
|
|
AcpRuntime,
|
|
AcpRuntimeCapabilities,
|
|
AcpRuntimeDoctorReport,
|
|
AcpRuntimeEnsureInput,
|
|
AcpRuntimeEvent,
|
|
AcpRuntimeHandle,
|
|
AcpRuntimeStatus,
|
|
AcpRuntimeTurnInput,
|
|
AcpSessionUpdateTag,
|
|
} from "../acp/runtime/types.js";
|
|
export { readAcpSessionEntry } from "../acp/runtime/session-meta.js";
|
|
export type { AcpSessionStoreEntry } from "../acp/runtime/session-meta.js";
|