mcp-adr-analysis-server
Version:
MCP server for analyzing Architectural Decision Records and project architecture
26 lines • 748 B
TypeScript
export declare class TodoFileWatcher {
private kgManager;
private todoPath;
private watcherActive;
private lastKnownHash;
private pollInterval;
constructor(todoPath?: string);
startWatching(intervalMs?: number): Promise<void>;
stopWatching(): Promise<void>;
private checkForChanges;
private parseChanges;
private notifyActiveIntents;
manualSync(): Promise<{
changesDetected: boolean;
syncStatus: string;
activeIntentsNotified: number;
}>;
getWatcherStatus(): Promise<{
isActive: boolean;
todoPath: string;
lastKnownHash: string;
lastSyncTime: string;
syncStatus: string;
}>;
}
//# sourceMappingURL=todo-file-watcher.d.ts.map