Files
openclaw/src/gateway/server-methods/tools-effective.runtime.ts
T
Peter Steinberger f6fff4f7fd refactor: canonicalize aliases and classify test suites (#122407)
* refactor: use canonical re-export names

* fix(test): classify suite support as test source

* fix(agents): retarget gateway stub session-entry import

* test(gateway): retarget session-utils mock keys after alias removal
2026-08-11 21:18:34 -07:00

29 lines
1.1 KiB
TypeScript

/**
* Lazy import boundary for effective-tool inventory helpers used by gateway RPCs.
*/
export {
listAgentIds,
resolveAgentDir,
resolveAgentWorkspaceDir,
resolveSessionAgentId,
} from "../../agents/agent-scope.js";
export {
resolveEffectiveToolInventory,
resolveEffectiveToolInventoryRuntimeModelContextAsync,
} from "../../agents/tools-effective-inventory.js";
export { getRegisteredAgentHarness } from "../../agents/harness/registry.js";
export {
buildBundleMcpToolsFromCatalog,
peekSessionMcpRuntime,
resolveSessionMcpConfigSummary,
} from "../../agents/agent-bundle-mcp-tools.js";
export { applyFinalEffectiveToolPolicy } from "../../agents/embedded-agent-runner/effective-tool-policy.js";
export { resolveReplyToMode } from "../../auto-reply/reply/reply-threading.js";
export { resolveRuntimeConfigCacheKey } from "../../config/config.js";
export {
getActivePluginChannelRegistryVersion,
getActivePluginRegistryVersion,
} from "../../plugins/runtime.js";
export { deliveryContextFromSession } from "../../utils/delivery-context.shared.js";
export { loadGatewaySessionEntryReadOnly, resolveSessionModelRef } from "../session-utils.js";