/** * synap raycast generate — Emit Raycast Script Commands for enabled capabilities * * For each ENABLED runnable verb on the pod, writes a Raycast Script Command shell * script that calls back into `synap capability run `. Per-parameter * Raycast arguments are derived from the verb's argsSchema (or the backing skill's * `parameters`); if no schema is reachable, a single freeform `input` arg is used. * * Subcommand: generate */ export interface RaycastGenerateOpts { out?: string; workspace?: string; } export declare function raycastGenerate(opts: RaycastGenerateOpts): Promise;