/** * Anthropic adapter — uses claude-haiku-4-5, claude-sonnet-4-6, claude-opus-4-8. * * Source: https://docs.anthropic.com/en/docs/about-claude/models (2025-05) * * In production, execute() would call the Anthropic API with the mapped model * and the subagent's system prompt. Currently returns a structured stub result * for testing and skill-layer dispatch. */ import { type RouterAdapter } from "../core/types"; export declare const ANTHROPIC_MODELS: { readonly HAIKU: "claude-haiku-4-5-20251001"; readonly SONNET: "claude-sonnet-4-6"; readonly OPUS: "claude-opus-4-8"; }; export declare const ANTHROPIC_MODEL_FAMILY: { lookup: "claude-haiku-4-5-20251001"; work: "claude-sonnet-4-6"; planner: "claude-opus-4-8"; debugger: "claude-sonnet-4-6"; refactorer: "claude-opus-4-8"; }; export declare const anthropicAdapter: RouterAdapter;