import { z } from "zod"; export declare const WORKFLOW_CATALOG: readonly [{ readonly id: "rough-cut"; readonly title: "Assemble a rough cut"; readonly summary: "Inspect the project, import media, create or select a sequence, assemble clips, then verify and save."; readonly recommendedTools: readonly ["get_premiere_state", "import_media", "create_sequence", "add_to_timeline", "get_sequence_structure", "save_project"]; }, { readonly id: "project-intake"; readonly title: "Preview project intake"; readonly summary: "Inspect a bounded project against an explicit facility template and return a path-redacted intake report and non-mutating organization proposal."; readonly recommendedTools: readonly ["verify_premiere_connection", "preview_project_intake"]; }, { readonly id: "dialogue-cleanup"; readonly title: "Clean up dialogue"; readonly summary: "Inspect audio tracks, normalize dialogue, apply conservative cleanup, and verify levels before saving."; readonly recommendedTools: readonly ["get_sequence_structure", "adjust_audio_levels", "apply_audio_effect", "save_project"]; }, { readonly id: "caption-and-style"; readonly title: "Caption and style a sequence"; readonly summary: "Inspect the active sequence, create captions, apply styling, verify timing, and save."; readonly recommendedTools: readonly ["get_active_sequence", "create_caption_track", "get_sequence_structure", "save_project"]; }, { readonly id: "delivery"; readonly title: "Prepare a delivery export"; readonly summary: "Validate the sequence and destination, export with an explicit preset, then report the produced artifact."; readonly recommendedTools: readonly ["get_premiere_state", "get_active_sequence", "export_sequence"]; }, { readonly id: "contextual-rough-cut"; readonly title: "Build a context-aware rough cut"; readonly summary: "Capture reusable project context, retrieve only evidence relevant to the edit intent, create a revision-guarded plan, then preview before applying."; readonly recommendedTools: readonly ["manage_project_context", "search_project_context", "create_context_edit_plan", "preview_edit_plan", "apply_edit_plan"]; }, { readonly id: "transcript-rough-cut"; readonly title: "Plan a transcript-driven rough cut"; readonly summary: "Export Premiere's native transcript, select revision-locked source ranges, map them to verified 1x placements in a duplicate sequence, then execute the descending cut plan with re-query verification."; readonly recommendedTools: readonly ["get_clip_transcript_uxp", "search_clip_transcript_uxp", "preview_transcript_edit_uxp", "plan_transcript_rough_cut_uxp", "manage_sequences_uxp", "split_clip", "get_sequence_structure"]; }, { readonly id: "project-organization"; readonly title: "Plan project organization"; readonly summary: "Capture project context, supply explicit editorial categories, create and preview a review-only organization plan, then use its guarded apply route with stable-ID bin operations. Direct organize_project_items_uxp use is advanced/manual only."; readonly recommendedTools: readonly ["manage_project_context", "create_editorial_plan", "preview_editorial_plan", "apply_editorial_organization_plan"]; }, { readonly id: "ai-assisted-stringout"; readonly title: "Plan a reviewed stringout"; readonly summary: "Retrieve relevant local evidence, produce a review-only stringout plan, resolve selected project items, then create and verify a new sequence."; readonly recommendedTools: readonly ["manage_project_context", "create_editorial_plan", "preview_editorial_plan", "manage_sequences_uxp", "edit_timeline_uxp"]; }, { readonly id: "caption-artifact-review"; readonly title: "Review a caption artifact"; readonly summary: "Use existing transcript evidence to review a supplied caption artifact, import it deliberately, create a caption track, and verify playback before delivery."; readonly recommendedTools: readonly ["manage_project_context", "create_editorial_plan", "preview_editorial_plan", "import_media", "create_caption_track", "get_sequence_structure"]; }, { readonly id: "platform-cutdown"; readonly title: "Plan platform cutdowns"; readonly summary: "Capture source-sequence context, propose bounded platform dimensions, review derivative sequence routes, then create and verify each cutdown deliberately."; readonly recommendedTools: readonly ["manage_project_context", "create_editorial_plan", "preview_editorial_plan", "manage_sequences_uxp", "auto_reframe_sequence", "get_sequence_structure", "export_sequence"]; }]; export declare const WORKFLOW_RESOURCE: string; export declare const WORKFLOW_PROMPTS: { name: string; title: "Assemble a rough cut" | "Preview project intake" | "Clean up dialogue" | "Caption and style a sequence" | "Prepare a delivery export" | "Build a context-aware rough cut" | "Plan a transcript-driven rough cut" | "Plan project organization" | "Plan a reviewed stringout" | "Review a caption artifact" | "Plan platform cutdowns"; description: "Inspect the project, import media, create or select a sequence, assemble clips, then verify and save." | "Inspect a bounded project against an explicit facility template and return a path-redacted intake report and non-mutating organization proposal." | "Inspect audio tracks, normalize dialogue, apply conservative cleanup, and verify levels before saving." | "Inspect the active sequence, create captions, apply styling, verify timing, and save." | "Validate the sequence and destination, export with an explicit preset, then report the produced artifact." | "Capture reusable project context, retrieve only evidence relevant to the edit intent, create a revision-guarded plan, then preview before applying." | "Export Premiere's native transcript, select revision-locked source ranges, map them to verified 1x placements in a duplicate sequence, then execute the descending cut plan with re-query verification." | "Capture project context, supply explicit editorial categories, create and preview a review-only organization plan, then use its guarded apply route with stable-ID bin operations. Direct organize_project_items_uxp use is advanced/manual only." | "Retrieve relevant local evidence, produce a review-only stringout plan, resolve selected project items, then create and verify a new sequence." | "Use existing transcript evidence to review a supplied caption artifact, import it deliberately, create a caption track, and verify playback before delivery." | "Capture source-sequence context, propose bounded platform dimensions, review derivative sequence routes, then create and verify each cutdown deliberately."; argsSchema: { goal: z.ZodString; constraints: z.ZodOptional; }; render: ({ goal, constraints }: { goal: string; constraints?: string; }) => { description: string; messages: { role: "user"; content: { type: "text"; text: string; }; }[]; }; }[]; //# sourceMappingURL=catalog.d.ts.map