/** * check_prereqs tool implementation for spec-kit * * Validates required files exist before operations and returns * a list of available optional documents. */ import type { AgencyTool, AgencyCoreAPI } from '@generacy-ai/agency'; import type { SpecKitConfig } from '../config.js'; /** * Create the spec_kit.check_prereqs tool. * * This tool validates required files exist before operations and * returns a list of available optional documents. * * @param config - Plugin configuration * @param _core - Agency core API (unused) * @returns AgencyTool instance */ export declare function createCheckPrereqsTool(config: SpecKitConfig, _core: AgencyCoreAPI): AgencyTool; //# sourceMappingURL=check-prereqs.d.ts.map