/** * create_feature tool implementation for spec-kit * * Creates a new feature branch and initializes the spec directory * with template files. */ import type { AgencyTool, AgencyCoreAPI } from '@generacy-ai/agency'; import type { SpecKitConfig } from '../config.js'; /** * Create the spec_kit.create_feature tool. * * This tool creates a new feature branch and initializes the spec directory: * - Generates branch name from description (slug generation) * - Auto-numbers features (finds next available number) * - Creates feature directory structure * - Initializes spec.md from template * - Supports parent epic branches for hierarchical features * * @param config - SpecKit configuration * @param core - Agency core API * @returns AgencyTool instance */ export declare function createCreateFeatureTool(config: SpecKitConfig, _core: AgencyCoreAPI): AgencyTool; //# sourceMappingURL=create-feature.d.ts.map