/** Extend this registry to add task-specific starting instructions without new UI branches. */ export declare const PRESET_TEMPLATES: readonly [{ readonly id: "general"; readonly label: "pmGeneral"; readonly description: "pmGeneralDesc"; readonly inheritPrompt: true; readonly prompt: string; }, { readonly id: "review"; readonly label: "pmReview"; readonly description: "pmReviewDesc"; readonly inheritPrompt: false; readonly prompt: `${string} # Code review workflow Review the requested changes for concrete correctness defects, regressions, and missing tests. Cite the affected code and a reproducible scenario. Prioritize findings by impact. Do not change files unless the user asks for a fix. If no actionable findings are found, say so and state any testing gaps.`; }, { readonly id: "debug"; readonly label: "pmDebug"; readonly description: "pmDebugDesc"; readonly inheritPrompt: false; readonly prompt: `${string} # Debugging workflow Start from a reproducible symptom and preserve evidence. Form a narrow hypothesis, test it, and fix the root cause with the smallest correct change. Verify the original failure and relevant regressions. Report what was confirmed, what changed, and any remaining uncertainty.`; }, { readonly id: "docs"; readonly label: "pmDocs"; readonly description: "pmDocsDesc"; readonly inheritPrompt: false; readonly prompt: `${string} # Documentation workflow Check the current source and supported interfaces before writing. Explain the reader's goal, prerequisites, and a working example. Keep commands and paths accurate. Do not invent features or guarantees. Keep documentation changes focused and verify examples where practical.`; }]; //# sourceMappingURL=preset-templates.d.ts.map