/** * `AgentRecipe` — the declarative definition of an Agentic Studio agent. * * The single source of truth for the `agent` recipe kind: it validates * recipe files, drives the `sync` CLI, and becomes the MCP tool input * schema. The `.describe()` text is read by the model — keep it accurate. */ import { z } from "zod"; export declare const AgentRecipeSchema: z.ZodObject<{ name: z.ZodString; description: z.ZodOptional; prompt: z.ZodOptional; tags: z.ZodDefault>; executionMode: z.ZodDefault; tools: z.ZodDefault>; skills: z.ZodDefault>; output: z.ZodDefault>; dynamic: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; /** A validated agent recipe. */ export type AgentRecipe = z.infer;