/** * create_decision Tool * * Log architectural/operational decision to the decisions table. * Generates embeddings client-side and writes directly to Supabase REST API, * eliminating the ww-mcp Edge Function dependency. * * Performance target: <3000ms */ import type { CreateDecisionParams, CreateDecisionResult } from "../types/index.js"; /** * Execute create_decision tool */ export declare function createDecision(params: CreateDecisionParams): Promise; //# sourceMappingURL=create-decision.d.ts.map