This commit is contained in:
Colby McHenry
2026-01-18 16:25:00 -06:00
parent 08ccabb5a9
commit cc6e7a5c89
57 changed files with 23315 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
/**
* Sync Module
*
* Provides synchronization functionality for keeping the code graph
* up-to-date with file system changes.
*
* Components:
* - Git hooks for automatic post-commit syncing
* - Content hashing for change detection (in extraction module)
* - Incremental reindexing (in extraction module)
*/
export {
GitHooksManager,
createGitHooksManager,
HookInstallResult,
HookRemoveResult,
} from './git-hooks';