UNPKG

@context-sync/server

Version:

MCP server for AI context sync with persistent memory, workspace file access, and intelligent code operations

24 lines 661 B
export interface DetectedContext { type: 'tech' | 'decision' | 'architecture' | 'library'; content: string; confidence: number; reasoning?: string; } export declare class ContextDetector { /** * Detect context from a message */ detect(message: string): DetectedContext[]; private detectTechnologies; private detectDecisions; private detectArchitecture; /** * Check if a string is a valid technology name */ private isValidTech; /** * Merge duplicate detections */ mergeDuplicates(detections: DetectedContext[]): DetectedContext[]; } //# sourceMappingURL=context-detector.d.ts.map