/** `@vendoai/vendo/actions/sync` — the build-/dev-time extraction surface (vendo * sync, server-action extraction, the static zod interpreter). Split from * the package root so the RUNTIME entry a server bundles never drags in * node:fs and the TypeScript compiler: the root export used to re-export * these, which put ~4MB of dev tooling (and hard Node deps) into every * Worker bundle. CLI and tests import from here. */ export { mergeOverrides, vendoSync, type SyncReportWithWarnings } from "./index.js"; export { openApiMountPath } from "./openapi.js"; export { firstOpenApiSpec } from "./extractors.js"; export { extractServerActions, serverActionRegistrations, type ServerActionRegistration, type ServerActionsExtractResult, } from "./server-actions.js"; export { parseModule, zodFromExpression, type FileModule, type StaticExtraction, type ZodSchemaResult, } from "./static-ts.js"; export { patchToolSchemas, type ToolSchemaPatch, type ToolSchemaPatchResult, type ToolSchemaSlot, } from "./schema-patch.js"; export { runsAgentLoop } from "./route-scan.js";