@sofianedjerbi/knowledge-tree-mcp
Version:
MCP server for hierarchical project knowledge management
17 lines • 551 B
TypeScript
/**
* Category and technology detection logic
*/
import { PathOptions } from './types.js';
/**
* Detects the category using scoring system
*/
export declare function detectCategory(title: string, options?: PathOptions): string;
/**
* Detects potential unknown technology names
*/
export declare function detectUnknownTechnology(title: string, tags?: string[]): string | null;
/**
* Detects the subcategory based on title content
*/
export declare function detectSubcategory(title: string): string | null;
//# sourceMappingURL=detector.d.ts.map