/** * `SkillRecipe` — the declarative definition of an Agentic Studio skill * (reusable markdown guidance an agent attaches). */ import { z } from "zod"; export declare const SkillRecipeSchema: z.ZodObject<{ name: z.ZodString; description: z.ZodString; content: z.ZodString; tags: z.ZodDefault>; visibility: z.ZodDefault; }, z.core.$strip>; /** A validated skill recipe. */ export type SkillRecipe = z.infer;