@fission-ai/openspec
Version:
AI-native system for spec-driven development
16 lines • 585 B
TypeScript
/**
* Available Tools Detection
*
* Detects which AI tools are available in a project by scanning
* for their configuration directories.
*/
import { type AIToolOption } from './config.js';
/**
* Scans the project path for AI tool configuration directories and returns
* the tools that are present.
*
* Checks for each tool's `skillsDir` (e.g., `.claude/`, `.cursor/`) at the
* project root. Only tools with a `skillsDir` property are considered.
*/
export declare function getAvailableTools(projectPath: string): AIToolOption[];
//# sourceMappingURL=available-tools.d.ts.map