/** * `vendo_make` — the one door a calling agent asks for a screen through, and * the three routes behind it: a NEW thing (assembly, escalating to the builder), * a change to one app the caller named, and a REMIX of one of the host's own * components (the ✦, which opens this conversation and mints nothing itself). * * It also arms the schedule half of a COMPOUND ask ("build me the board and * refresh it every Monday"), through the automation door — which is the same one * create operation `vendo_automate`, the manifest fold-in and `agent.on` call. * A schedule with nothing to build belongs in `vendo_automate` instead. */ import { type RunContext, type ToolCall, type ToolOutcome } from "@vendoai/core"; import type { AgentToolsDataDependencies } from "./agent-tools.js"; import type { AppsRuntime } from "../runtime/types.js"; export declare const runMakeTool: (runtime: AppsRuntime, dependencies: AgentToolsDataDependencies, call: ToolCall, ctx: RunContext) => Promise; //# sourceMappingURL=make-tool.d.ts.map