/** * get_paths tool implementation for spec-kit * * Resolves all feature-related file paths based on the current branch, * an explicit feature name, or the SPECIFY_FEATURE environment variable. */ import type { AgencyTool, AgencyCoreAPI } from '@generacy-ai/agency'; import type { SpecKitConfig } from '../config.js'; /** * Create the spec_kit.get_paths tool. * * This tool resolves all feature-related file paths based on: * 1. An explicit branch parameter * 2. The SPECIFY_FEATURE environment variable * 3. The current git branch name * 4. The most recent feature directory in specs/ * * @param config - Plugin configuration * @param _core - Agency core API (unused) * @returns AgencyTool instance */ export declare function createGetPathsTool(config: SpecKitConfig, _core: AgencyCoreAPI): AgencyTool; //# sourceMappingURL=get-paths.d.ts.map