/** * 11 Anthropic prompt engineering techniques as structured data. * Each technique has auto-selection rules, a structural template, and an action phrase * for the notification summary line. * * Source: Anthropic's official prompt engineering documentation. */ import type { Complexity, Intent, Scores } from '../types.js'; export interface Technique { id: string; name: string; description: string; action_phrase: string; when_to_use: (ctx: TechniqueContext) => boolean; template: string; doc_url: string; } export interface TechniqueContext { intent: Intent; scores: Scores; prompt: string; complexity: Complexity; } export declare const TECHNIQUES: Technique[]; /** Lookup technique by ID. */ export declare function getTechnique(id: string): Technique | undefined;