@vfarcic/dot-ai
Version:
AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance
15 lines • 546 B
TypeScript
/**
* Discovery Handler - Project Setup Tool
* PRD #177 - Milestone 1: Core Tool Infrastructure
*
* Step 1 of workflow: Return list of files for client to scan
*/
import { Logger } from '../../core/error-handling';
import { DiscoveryResponse } from './types';
/**
* Handle discovery stage - Step 1 of project setup workflow
*
* Loads ALL files from ALL scopes and returns for client to scan
*/
export declare function handleDiscovery(logger: Logger, requestId: string): Promise<DiscoveryResponse>;
//# sourceMappingURL=discovery.d.ts.map