/** * MCP Tool: get_feature_spec * Retrieve a feature specification from the Rampify database. * * Use this when starting work on a feature — retrieve the spec to understand * what to build, which files to touch, and what the acceptance criteria are. * * Supports two lookup modes: * - spec_id: direct lookup (fastest, most precise) * - search: keyword search across title + description (returns list of matches) */ import { z } from 'zod'; export declare const GetFeatureSpecInput: z.ZodObject<{ domain: z.ZodOptional; project_id: z.ZodOptional; spec_id: z.ZodOptional; search: z.ZodOptional; include_criteria: z.ZodDefault>; include_tasks: z.ZodDefault>; }, "strip", z.ZodTypeAny, { include_criteria: boolean; include_tasks: boolean; domain?: string | undefined; project_id?: string | undefined; spec_id?: string | undefined; search?: string | undefined; }, { domain?: string | undefined; project_id?: string | undefined; spec_id?: string | undefined; search?: string | undefined; include_criteria?: boolean | undefined; include_tasks?: boolean | undefined; }>; export type GetFeatureSpecParams = z.infer; export declare function getFeatureSpec(params: GetFeatureSpecParams): Promise; //# sourceMappingURL=get-feature-spec.d.ts.map