claude-code-workflow 6.2.2 → 6.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ccw/dist/cli.d.ts +2 -0
- package/ccw/dist/cli.d.ts.map +1 -0
- package/ccw/dist/cli.js +219 -0
- package/ccw/dist/cli.js.map +1 -0
- package/ccw/dist/commands/cli.d.ts +32 -0
- package/ccw/dist/commands/cli.d.ts.map +1 -0
- package/ccw/dist/commands/cli.js +619 -0
- package/ccw/dist/commands/cli.js.map +1 -0
- package/ccw/dist/commands/core-memory.d.ts +32 -0
- package/ccw/dist/commands/core-memory.d.ts.map +1 -0
- package/ccw/dist/commands/core-memory.js +640 -0
- package/ccw/dist/commands/core-memory.js.map +1 -0
- package/ccw/dist/commands/hook.d.ts +16 -0
- package/ccw/dist/commands/hook.d.ts.map +1 -0
- package/ccw/dist/commands/hook.js +276 -0
- package/ccw/dist/commands/hook.js.map +1 -0
- package/ccw/dist/commands/install.d.ts +12 -0
- package/ccw/dist/commands/install.d.ts.map +1 -0
- package/ccw/dist/commands/install.js +443 -0
- package/ccw/dist/commands/install.js.map +1 -0
- package/ccw/dist/commands/list.d.ts +5 -0
- package/ccw/dist/commands/list.d.ts.map +1 -0
- package/ccw/dist/commands/list.js +32 -0
- package/ccw/dist/commands/list.js.map +1 -0
- package/ccw/dist/commands/memory.d.ts +57 -0
- package/ccw/dist/commands/memory.d.ts.map +1 -0
- package/ccw/dist/commands/memory.js +890 -0
- package/ccw/dist/commands/memory.js.map +1 -0
- package/ccw/dist/commands/serve.d.ts +12 -0
- package/ccw/dist/commands/serve.d.ts.map +1 -0
- package/ccw/dist/commands/serve.js +63 -0
- package/ccw/dist/commands/serve.js.map +1 -0
- package/ccw/dist/commands/session-path-resolver.d.ts +45 -0
- package/ccw/dist/commands/session-path-resolver.d.ts.map +1 -0
- package/ccw/dist/commands/session-path-resolver.js +302 -0
- package/ccw/dist/commands/session-path-resolver.js.map +1 -0
- package/ccw/dist/commands/session.d.ts +12 -0
- package/ccw/dist/commands/session.d.ts.map +1 -0
- package/ccw/dist/commands/session.js +954 -0
- package/ccw/dist/commands/session.js.map +1 -0
- package/ccw/dist/commands/stop.d.ts +11 -0
- package/ccw/dist/commands/stop.d.ts.map +1 -0
- package/ccw/dist/commands/stop.js +96 -0
- package/ccw/dist/commands/stop.js.map +1 -0
- package/ccw/dist/commands/tool.d.ts +29 -0
- package/ccw/dist/commands/tool.d.ts.map +1 -0
- package/ccw/dist/commands/tool.js +173 -0
- package/ccw/dist/commands/tool.js.map +1 -0
- package/ccw/dist/commands/uninstall.d.ts +9 -0
- package/ccw/dist/commands/uninstall.d.ts.map +1 -0
- package/ccw/dist/commands/uninstall.js +239 -0
- package/ccw/dist/commands/uninstall.js.map +1 -0
- package/ccw/dist/commands/upgrade.d.ts +10 -0
- package/ccw/dist/commands/upgrade.d.ts.map +1 -0
- package/ccw/dist/commands/upgrade.js +288 -0
- package/ccw/dist/commands/upgrade.js.map +1 -0
- package/ccw/dist/commands/view.d.ts +14 -0
- package/ccw/dist/commands/view.d.ts.map +1 -0
- package/ccw/dist/commands/view.js +100 -0
- package/ccw/dist/commands/view.js.map +1 -0
- package/ccw/dist/config/storage-paths.d.ts +184 -0
- package/ccw/dist/config/storage-paths.d.ts.map +1 -0
- package/ccw/dist/config/storage-paths.js +536 -0
- package/ccw/dist/config/storage-paths.js.map +1 -0
- package/ccw/dist/core/cache-manager.d.ts +80 -0
- package/ccw/dist/core/cache-manager.d.ts.map +1 -0
- package/ccw/dist/core/cache-manager.js +260 -0
- package/ccw/dist/core/cache-manager.js.map +1 -0
- package/ccw/dist/core/claude-freshness.d.ts +53 -0
- package/ccw/dist/core/claude-freshness.d.ts.map +1 -0
- package/ccw/dist/core/claude-freshness.js +232 -0
- package/ccw/dist/core/claude-freshness.js.map +1 -0
- package/ccw/dist/core/core-memory-store.d.ts +320 -0
- package/ccw/dist/core/core-memory-store.d.ts.map +1 -0
- package/ccw/dist/core/core-memory-store.js +1177 -0
- package/ccw/dist/core/core-memory-store.js.map +1 -0
- package/ccw/dist/core/dashboard-generator-patch.d.ts +2 -0
- package/ccw/dist/core/dashboard-generator-patch.d.ts.map +1 -0
- package/ccw/dist/core/dashboard-generator-patch.js +48 -0
- package/ccw/dist/core/dashboard-generator-patch.js.map +1 -0
- package/ccw/dist/core/dashboard-generator.d.ts +8 -0
- package/ccw/dist/core/dashboard-generator.d.ts.map +1 -0
- package/ccw/dist/core/dashboard-generator.js +695 -0
- package/ccw/dist/core/dashboard-generator.js.map +1 -0
- package/ccw/dist/core/data-aggregator.d.ts +145 -0
- package/ccw/dist/core/data-aggregator.d.ts.map +1 -0
- package/ccw/dist/core/data-aggregator.js +416 -0
- package/ccw/dist/core/data-aggregator.js.map +1 -0
- package/ccw/dist/core/history-importer.d.ts +102 -0
- package/ccw/dist/core/history-importer.d.ts.map +1 -0
- package/ccw/dist/core/history-importer.js +493 -0
- package/ccw/dist/core/history-importer.js.map +1 -0
- package/ccw/dist/core/lite-scanner-complete.d.ts +81 -0
- package/ccw/dist/core/lite-scanner-complete.d.ts.map +1 -0
- package/ccw/dist/core/lite-scanner-complete.js +368 -0
- package/ccw/dist/core/lite-scanner-complete.js.map +1 -0
- package/ccw/dist/core/lite-scanner.d.ts +81 -0
- package/ccw/dist/core/lite-scanner.d.ts.map +1 -0
- package/ccw/dist/core/lite-scanner.js +368 -0
- package/ccw/dist/core/lite-scanner.js.map +1 -0
- package/ccw/dist/core/manifest.d.ts +88 -0
- package/ccw/dist/core/manifest.d.ts.map +1 -0
- package/ccw/dist/core/manifest.js +214 -0
- package/ccw/dist/core/manifest.js.map +1 -0
- package/ccw/dist/core/memory-embedder-bridge.d.ts +83 -0
- package/ccw/dist/core/memory-embedder-bridge.d.ts.map +1 -0
- package/ccw/dist/core/memory-embedder-bridge.js +181 -0
- package/ccw/dist/core/memory-embedder-bridge.js.map +1 -0
- package/ccw/dist/core/memory-store.d.ts +249 -0
- package/ccw/dist/core/memory-store.d.ts.map +1 -0
- package/ccw/dist/core/memory-store.js +781 -0
- package/ccw/dist/core/memory-store.js.map +1 -0
- package/ccw/dist/core/routes/ccw-routes.d.ts +20 -0
- package/ccw/dist/core/routes/ccw-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/ccw-routes.js +70 -0
- package/ccw/dist/core/routes/ccw-routes.js.map +1 -0
- package/ccw/dist/core/routes/claude-routes.d.ts +19 -0
- package/ccw/dist/core/routes/claude-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/claude-routes.js +1017 -0
- package/ccw/dist/core/routes/claude-routes.js.map +1 -0
- package/ccw/dist/core/routes/cli-routes.d.ts +20 -0
- package/ccw/dist/core/routes/cli-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/cli-routes.js +468 -0
- package/ccw/dist/core/routes/cli-routes.js.map +1 -0
- package/ccw/dist/core/routes/codexlens-routes.d.ts +20 -0
- package/ccw/dist/core/routes/codexlens-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/codexlens-routes.js +754 -0
- package/ccw/dist/core/routes/codexlens-routes.js.map +1 -0
- package/ccw/dist/core/routes/core-memory-routes.d.ts +21 -0
- package/ccw/dist/core/routes/core-memory-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/core-memory-routes.js +520 -0
- package/ccw/dist/core/routes/core-memory-routes.js.map +1 -0
- package/ccw/dist/core/routes/files-routes.d.ts +20 -0
- package/ccw/dist/core/routes/files-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/files-routes.js +374 -0
- package/ccw/dist/core/routes/files-routes.js.map +1 -0
- package/ccw/dist/core/routes/graph-routes.d.ts +20 -0
- package/ccw/dist/core/routes/graph-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/graph-routes.js +517 -0
- package/ccw/dist/core/routes/graph-routes.js.map +1 -0
- package/ccw/dist/core/routes/help-routes.d.ts +20 -0
- package/ccw/dist/core/routes/help-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/help-routes.js +250 -0
- package/ccw/dist/core/routes/help-routes.js.map +1 -0
- package/ccw/dist/core/routes/hooks-routes.d.ts +21 -0
- package/ccw/dist/core/routes/hooks-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/hooks-routes.js +346 -0
- package/ccw/dist/core/routes/hooks-routes.js.map +1 -0
- package/ccw/dist/core/routes/mcp-routes.d.ts +20 -0
- package/ccw/dist/core/routes/mcp-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/mcp-routes.js +1129 -0
- package/ccw/dist/core/routes/mcp-routes.js.map +1 -0
- package/ccw/dist/core/routes/mcp-templates-db.d.ts +54 -0
- package/ccw/dist/core/routes/mcp-templates-db.d.ts.map +1 -0
- package/ccw/dist/core/routes/mcp-templates-db.js +226 -0
- package/ccw/dist/core/routes/mcp-templates-db.js.map +1 -0
- package/ccw/dist/core/routes/memory-routes.d.ts +21 -0
- package/ccw/dist/core/routes/memory-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/memory-routes.js +1095 -0
- package/ccw/dist/core/routes/memory-routes.js.map +1 -0
- package/ccw/dist/core/routes/rules-routes.d.ts +20 -0
- package/ccw/dist/core/routes/rules-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/rules-routes.js +442 -0
- package/ccw/dist/core/routes/rules-routes.js.map +1 -0
- package/ccw/dist/core/routes/session-routes.d.ts +20 -0
- package/ccw/dist/core/routes/session-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/session-routes.js +423 -0
- package/ccw/dist/core/routes/session-routes.js.map +1 -0
- package/ccw/dist/core/routes/skills-routes.d.ts +20 -0
- package/ccw/dist/core/routes/skills-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/skills-routes.js +533 -0
- package/ccw/dist/core/routes/skills-routes.js.map +1 -0
- package/ccw/dist/core/routes/status-routes.d.ts +20 -0
- package/ccw/dist/core/routes/status-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/status-routes.js +38 -0
- package/ccw/dist/core/routes/status-routes.js.map +1 -0
- package/ccw/dist/core/routes/system-routes.d.ts +22 -0
- package/ccw/dist/core/routes/system-routes.d.ts.map +1 -0
- package/ccw/dist/core/routes/system-routes.js +354 -0
- package/ccw/dist/core/routes/system-routes.js.map +1 -0
- package/ccw/dist/core/server.d.ts +17 -0
- package/ccw/dist/core/server.d.ts.map +1 -0
- package/ccw/dist/core/server.js +386 -0
- package/ccw/dist/core/server.js.map +1 -0
- package/ccw/dist/core/session-clustering-service.d.ts +153 -0
- package/ccw/dist/core/session-clustering-service.d.ts.map +1 -0
- package/ccw/dist/core/session-clustering-service.js +1065 -0
- package/ccw/dist/core/session-clustering-service.js.map +1 -0
- package/ccw/dist/core/session-scanner.d.ts +32 -0
- package/ccw/dist/core/session-scanner.d.ts.map +1 -0
- package/ccw/dist/core/session-scanner.js +253 -0
- package/ccw/dist/core/session-scanner.js.map +1 -0
- package/ccw/dist/core/websocket.d.ts +23 -0
- package/ccw/dist/core/websocket.d.ts.map +1 -0
- package/ccw/dist/core/websocket.js +168 -0
- package/ccw/dist/core/websocket.js.map +1 -0
- package/ccw/dist/index.d.ts +10 -0
- package/ccw/dist/index.d.ts.map +1 -0
- package/ccw/dist/index.js +10 -0
- package/ccw/dist/index.js.map +1 -0
- package/ccw/dist/mcp-server/index.d.ts +7 -0
- package/ccw/dist/mcp-server/index.d.ts.map +1 -0
- package/ccw/dist/mcp-server/index.js +157 -0
- package/ccw/dist/mcp-server/index.js.map +1 -0
- package/ccw/dist/tools/classify-folders.d.ts +26 -0
- package/ccw/dist/tools/classify-folders.d.ts.map +1 -0
- package/ccw/dist/tools/classify-folders.js +201 -0
- package/ccw/dist/tools/classify-folders.js.map +1 -0
- package/ccw/dist/tools/cli-config-manager.d.ts +62 -0
- package/ccw/dist/tools/cli-config-manager.d.ts.map +1 -0
- package/ccw/dist/tools/cli-config-manager.js +221 -0
- package/ccw/dist/tools/cli-config-manager.js.map +1 -0
- package/ccw/dist/tools/cli-executor.d.ts +373 -0
- package/ccw/dist/tools/cli-executor.d.ts.map +1 -0
- package/ccw/dist/tools/cli-executor.js +1625 -0
- package/ccw/dist/tools/cli-executor.js.map +1 -0
- package/ccw/dist/tools/cli-history-store.d.ts +330 -0
- package/ccw/dist/tools/cli-history-store.d.ts.map +1 -0
- package/ccw/dist/tools/cli-history-store.js +916 -0
- package/ccw/dist/tools/cli-history-store.js.map +1 -0
- package/ccw/dist/tools/codex-lens.d.ts +118 -0
- package/ccw/dist/tools/codex-lens.d.ts.map +1 -0
- package/ccw/dist/tools/codex-lens.js +962 -0
- package/ccw/dist/tools/codex-lens.js.map +1 -0
- package/ccw/dist/tools/convert-tokens-to-css.d.ts +14 -0
- package/ccw/dist/tools/convert-tokens-to-css.d.ts.map +1 -0
- package/ccw/dist/tools/convert-tokens-to-css.js +244 -0
- package/ccw/dist/tools/convert-tokens-to-css.js.map +1 -0
- package/ccw/dist/tools/core-memory.d.ts +66 -0
- package/ccw/dist/tools/core-memory.d.ts.map +1 -0
- package/ccw/dist/tools/core-memory.js +324 -0
- package/ccw/dist/tools/core-memory.js.map +1 -0
- package/ccw/dist/tools/detect-changed-modules.d.ts +24 -0
- package/ccw/dist/tools/detect-changed-modules.d.ts.map +1 -0
- package/ccw/dist/tools/detect-changed-modules.js +277 -0
- package/ccw/dist/tools/detect-changed-modules.js.map +1 -0
- package/ccw/dist/tools/discover-design-files.d.ts +36 -0
- package/ccw/dist/tools/discover-design-files.d.ts.map +1 -0
- package/ccw/dist/tools/discover-design-files.js +147 -0
- package/ccw/dist/tools/discover-design-files.js.map +1 -0
- package/ccw/dist/tools/edit-file.d.ts +28 -0
- package/ccw/dist/tools/edit-file.d.ts.map +1 -0
- package/ccw/dist/tools/edit-file.js +479 -0
- package/ccw/dist/tools/edit-file.js.map +1 -0
- package/ccw/dist/tools/generate-module-docs.d.ts +22 -0
- package/ccw/dist/tools/generate-module-docs.d.ts.map +1 -0
- package/ccw/dist/tools/generate-module-docs.js +379 -0
- package/ccw/dist/tools/generate-module-docs.js.map +1 -0
- package/ccw/dist/tools/get-modules-by-depth.d.ts +15 -0
- package/ccw/dist/tools/get-modules-by-depth.d.ts.map +1 -0
- package/ccw/dist/tools/get-modules-by-depth.js +296 -0
- package/ccw/dist/tools/get-modules-by-depth.js.map +1 -0
- package/ccw/dist/tools/index.d.ts +55 -0
- package/ccw/dist/tools/index.d.ts.map +1 -0
- package/ccw/dist/tools/index.js +304 -0
- package/ccw/dist/tools/index.js.map +1 -0
- package/ccw/dist/tools/native-session-discovery.d.ts +97 -0
- package/ccw/dist/tools/native-session-discovery.d.ts.map +1 -0
- package/ccw/dist/tools/native-session-discovery.js +700 -0
- package/ccw/dist/tools/native-session-discovery.js.map +1 -0
- package/ccw/dist/tools/notifier.d.ts +50 -0
- package/ccw/dist/tools/notifier.d.ts.map +1 -0
- package/ccw/dist/tools/notifier.js +90 -0
- package/ccw/dist/tools/notifier.js.map +1 -0
- package/ccw/dist/tools/read-file.d.ts +32 -0
- package/ccw/dist/tools/read-file.d.ts.map +1 -0
- package/ccw/dist/tools/read-file.js +329 -0
- package/ccw/dist/tools/read-file.js.map +1 -0
- package/ccw/dist/tools/resume-strategy.d.ts +48 -0
- package/ccw/dist/tools/resume-strategy.d.ts.map +1 -0
- package/ccw/dist/tools/resume-strategy.js +248 -0
- package/ccw/dist/tools/resume-strategy.js.map +1 -0
- package/ccw/dist/tools/session-content-parser.d.ts +58 -0
- package/ccw/dist/tools/session-content-parser.d.ts.map +1 -0
- package/ccw/dist/tools/session-content-parser.js +420 -0
- package/ccw/dist/tools/session-content-parser.js.map +1 -0
- package/ccw/dist/tools/session-manager.d.ts +9 -0
- package/ccw/dist/tools/session-manager.d.ts.map +1 -0
- package/ccw/dist/tools/session-manager.js +834 -0
- package/ccw/dist/tools/session-manager.js.map +1 -0
- package/ccw/dist/tools/smart-context.d.ts +35 -0
- package/ccw/dist/tools/smart-context.d.ts.map +1 -0
- package/ccw/dist/tools/smart-context.js +182 -0
- package/ccw/dist/tools/smart-context.js.map +1 -0
- package/ccw/dist/tools/smart-search.d.ts +105 -0
- package/ccw/dist/tools/smart-search.d.ts.map +1 -0
- package/ccw/dist/tools/smart-search.js +1753 -0
- package/ccw/dist/tools/smart-search.js.map +1 -0
- package/ccw/dist/tools/storage-manager.d.ts +114 -0
- package/ccw/dist/tools/storage-manager.d.ts.map +1 -0
- package/ccw/dist/tools/storage-manager.js +392 -0
- package/ccw/dist/tools/storage-manager.js.map +1 -0
- package/ccw/dist/tools/ui-generate-preview.d.ts +39 -0
- package/ccw/dist/tools/ui-generate-preview.d.ts.map +1 -0
- package/ccw/dist/tools/ui-generate-preview.js +300 -0
- package/ccw/dist/tools/ui-generate-preview.js.map +1 -0
- package/ccw/dist/tools/ui-instantiate-prototypes.d.ts +75 -0
- package/ccw/dist/tools/ui-instantiate-prototypes.d.ts.map +1 -0
- package/ccw/dist/tools/ui-instantiate-prototypes.js +256 -0
- package/ccw/dist/tools/ui-instantiate-prototypes.js.map +1 -0
- package/ccw/dist/tools/update-module-claude.d.ts +80 -0
- package/ccw/dist/tools/update-module-claude.d.ts.map +1 -0
- package/ccw/dist/tools/update-module-claude.js +351 -0
- package/ccw/dist/tools/update-module-claude.js.map +1 -0
- package/ccw/dist/tools/write-file.d.ts +19 -0
- package/ccw/dist/tools/write-file.d.ts.map +1 -0
- package/ccw/dist/tools/write-file.js +193 -0
- package/ccw/dist/tools/write-file.js.map +1 -0
- package/ccw/dist/types/config.d.ts +11 -0
- package/ccw/dist/types/config.d.ts.map +1 -0
- package/ccw/dist/types/config.js +2 -0
- package/ccw/dist/types/config.js.map +1 -0
- package/ccw/dist/types/index.d.ts +4 -0
- package/ccw/dist/types/index.d.ts.map +1 -0
- package/ccw/dist/types/index.js +4 -0
- package/ccw/dist/types/index.js.map +1 -0
- package/ccw/dist/types/session.d.ts +20 -0
- package/ccw/dist/types/session.d.ts.map +1 -0
- package/ccw/dist/types/session.js +2 -0
- package/ccw/dist/types/session.js.map +1 -0
- package/ccw/dist/types/tool.d.ts +36 -0
- package/ccw/dist/types/tool.d.ts.map +1 -0
- package/ccw/dist/types/tool.js +11 -0
- package/ccw/dist/types/tool.js.map +1 -0
- package/ccw/dist/utils/browser-launcher.d.ts +13 -0
- package/ccw/dist/utils/browser-launcher.d.ts.map +1 -0
- package/ccw/dist/utils/browser-launcher.js +60 -0
- package/ccw/dist/utils/browser-launcher.js.map +1 -0
- package/ccw/dist/utils/file-utils.d.ts +25 -0
- package/ccw/dist/utils/file-utils.d.ts.map +1 -0
- package/ccw/dist/utils/file-utils.js +48 -0
- package/ccw/dist/utils/file-utils.js.map +1 -0
- package/ccw/dist/utils/path-resolver.d.ts +80 -0
- package/ccw/dist/utils/path-resolver.d.ts.map +1 -0
- package/ccw/dist/utils/path-resolver.js +260 -0
- package/ccw/dist/utils/path-resolver.js.map +1 -0
- package/ccw/dist/utils/path-validator.d.ts +49 -0
- package/ccw/dist/utils/path-validator.d.ts.map +1 -0
- package/ccw/dist/utils/path-validator.js +123 -0
- package/ccw/dist/utils/path-validator.js.map +1 -0
- package/ccw/dist/utils/ui.d.ts +62 -0
- package/ccw/dist/utils/ui.d.ts.map +1 -0
- package/ccw/dist/utils/ui.js +129 -0
- package/ccw/dist/utils/ui.js.map +1 -0
- package/ccw/package.json +1 -1
- package/package.json +5 -2
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core Memory Store - Independent storage system for core memories
|
|
3
|
+
* Provides persistent storage for high-level architectural and strategic context
|
|
4
|
+
*/
|
|
5
|
+
export interface CoreMemory {
|
|
6
|
+
id: string;
|
|
7
|
+
content: string;
|
|
8
|
+
summary: string;
|
|
9
|
+
raw_output?: string;
|
|
10
|
+
created_at: string;
|
|
11
|
+
updated_at: string;
|
|
12
|
+
archived: boolean;
|
|
13
|
+
metadata?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface SessionCluster {
|
|
16
|
+
id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
description?: string;
|
|
19
|
+
intent?: string;
|
|
20
|
+
created_at: string;
|
|
21
|
+
updated_at: string;
|
|
22
|
+
status: 'active' | 'archived' | 'merged';
|
|
23
|
+
metadata?: string;
|
|
24
|
+
}
|
|
25
|
+
export interface ClusterMember {
|
|
26
|
+
cluster_id: string;
|
|
27
|
+
session_id: string;
|
|
28
|
+
session_type: 'core_memory' | 'workflow' | 'cli_history' | 'native';
|
|
29
|
+
sequence_order: number;
|
|
30
|
+
added_at: string;
|
|
31
|
+
relevance_score: number;
|
|
32
|
+
}
|
|
33
|
+
export interface ClusterRelation {
|
|
34
|
+
source_cluster_id: string;
|
|
35
|
+
target_cluster_id: string;
|
|
36
|
+
relation_type: 'depends_on' | 'extends' | 'conflicts_with' | 'related_to';
|
|
37
|
+
created_at: string;
|
|
38
|
+
}
|
|
39
|
+
export interface SessionMetadataCache {
|
|
40
|
+
session_id: string;
|
|
41
|
+
session_type: string;
|
|
42
|
+
title?: string;
|
|
43
|
+
summary?: string;
|
|
44
|
+
keywords?: string[];
|
|
45
|
+
token_estimate?: number;
|
|
46
|
+
file_patterns?: string[];
|
|
47
|
+
created_at?: string;
|
|
48
|
+
last_accessed?: string;
|
|
49
|
+
access_count: number;
|
|
50
|
+
}
|
|
51
|
+
export interface MemoryChunk {
|
|
52
|
+
id?: number;
|
|
53
|
+
source_id: string;
|
|
54
|
+
source_type: 'core_memory' | 'workflow' | 'cli_history';
|
|
55
|
+
chunk_index: number;
|
|
56
|
+
content: string;
|
|
57
|
+
embedding?: Buffer;
|
|
58
|
+
metadata?: string;
|
|
59
|
+
created_at: string;
|
|
60
|
+
}
|
|
61
|
+
export interface ClaudeUpdateRecord {
|
|
62
|
+
id?: number;
|
|
63
|
+
file_path: string;
|
|
64
|
+
file_level: 'user' | 'project' | 'module';
|
|
65
|
+
module_path?: string;
|
|
66
|
+
updated_at: string;
|
|
67
|
+
update_source: 'manual' | 'cli_sync' | 'dashboard' | 'api';
|
|
68
|
+
git_commit_hash?: string;
|
|
69
|
+
files_changed_before_update: number;
|
|
70
|
+
metadata?: string;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Core Memory Store using SQLite
|
|
74
|
+
*/
|
|
75
|
+
export declare class CoreMemoryStore {
|
|
76
|
+
private db;
|
|
77
|
+
private dbPath;
|
|
78
|
+
private projectPath;
|
|
79
|
+
constructor(projectPath: string);
|
|
80
|
+
/**
|
|
81
|
+
* Initialize database schema
|
|
82
|
+
*/
|
|
83
|
+
private initDatabase;
|
|
84
|
+
/**
|
|
85
|
+
* Migrate database by removing old tables, views, and triggers
|
|
86
|
+
*/
|
|
87
|
+
private migrateDatabase;
|
|
88
|
+
/**
|
|
89
|
+
* Generate timestamp-based ID for core memory
|
|
90
|
+
*/
|
|
91
|
+
private generateId;
|
|
92
|
+
/**
|
|
93
|
+
* Generate cluster ID
|
|
94
|
+
*/
|
|
95
|
+
generateClusterId(): string;
|
|
96
|
+
/**
|
|
97
|
+
* Upsert a core memory
|
|
98
|
+
*/
|
|
99
|
+
upsertMemory(memory: Partial<CoreMemory> & {
|
|
100
|
+
content: string;
|
|
101
|
+
}): CoreMemory;
|
|
102
|
+
/**
|
|
103
|
+
* Get memory by ID
|
|
104
|
+
*/
|
|
105
|
+
getMemory(id: string): CoreMemory | null;
|
|
106
|
+
/**
|
|
107
|
+
* Get all memories
|
|
108
|
+
*/
|
|
109
|
+
getMemories(options?: {
|
|
110
|
+
archived?: boolean;
|
|
111
|
+
limit?: number;
|
|
112
|
+
offset?: number;
|
|
113
|
+
}): CoreMemory[];
|
|
114
|
+
/**
|
|
115
|
+
* Archive a memory
|
|
116
|
+
*/
|
|
117
|
+
archiveMemory(id: string): void;
|
|
118
|
+
/**
|
|
119
|
+
* Delete a memory
|
|
120
|
+
*/
|
|
121
|
+
deleteMemory(id: string): void;
|
|
122
|
+
/**
|
|
123
|
+
* Generate summary for a memory using CLI tool
|
|
124
|
+
*/
|
|
125
|
+
generateSummary(memoryId: string, tool?: 'gemini' | 'qwen'): Promise<string>;
|
|
126
|
+
/**
|
|
127
|
+
* Create a new session cluster
|
|
128
|
+
*/
|
|
129
|
+
createCluster(cluster: Partial<SessionCluster> & {
|
|
130
|
+
name: string;
|
|
131
|
+
}): SessionCluster;
|
|
132
|
+
/**
|
|
133
|
+
* Get cluster by ID
|
|
134
|
+
*/
|
|
135
|
+
getCluster(id: string): SessionCluster | null;
|
|
136
|
+
/**
|
|
137
|
+
* List all clusters
|
|
138
|
+
*/
|
|
139
|
+
listClusters(status?: string): SessionCluster[];
|
|
140
|
+
/**
|
|
141
|
+
* Update cluster
|
|
142
|
+
*/
|
|
143
|
+
updateCluster(id: string, updates: Partial<SessionCluster>): SessionCluster | null;
|
|
144
|
+
/**
|
|
145
|
+
* Delete cluster
|
|
146
|
+
*/
|
|
147
|
+
deleteCluster(id: string): boolean;
|
|
148
|
+
/**
|
|
149
|
+
* Merge multiple clusters into one
|
|
150
|
+
* Keeps the first cluster and moves all members from others into it
|
|
151
|
+
* @param targetClusterId The cluster to keep
|
|
152
|
+
* @param sourceClusterIds The clusters to merge into target (will be deleted)
|
|
153
|
+
* @returns Number of members moved
|
|
154
|
+
*/
|
|
155
|
+
mergeClusters(targetClusterId: string, sourceClusterIds: string[]): number;
|
|
156
|
+
/**
|
|
157
|
+
* Add member to cluster
|
|
158
|
+
*/
|
|
159
|
+
addClusterMember(member: Omit<ClusterMember, 'added_at'>): ClusterMember;
|
|
160
|
+
/**
|
|
161
|
+
* Remove member from cluster
|
|
162
|
+
*/
|
|
163
|
+
removeClusterMember(clusterId: string, sessionId: string): boolean;
|
|
164
|
+
/**
|
|
165
|
+
* Get all members of a cluster
|
|
166
|
+
*/
|
|
167
|
+
getClusterMembers(clusterId: string): ClusterMember[];
|
|
168
|
+
/**
|
|
169
|
+
* Get all clusters that contain a session
|
|
170
|
+
*/
|
|
171
|
+
getSessionClusters(sessionId: string): SessionCluster[];
|
|
172
|
+
/**
|
|
173
|
+
* Add relation between clusters
|
|
174
|
+
*/
|
|
175
|
+
addClusterRelation(relation: Omit<ClusterRelation, 'created_at'>): ClusterRelation;
|
|
176
|
+
/**
|
|
177
|
+
* Remove relation between clusters
|
|
178
|
+
*/
|
|
179
|
+
removeClusterRelation(sourceId: string, targetId: string): boolean;
|
|
180
|
+
/**
|
|
181
|
+
* Get all relations for a cluster
|
|
182
|
+
*/
|
|
183
|
+
getClusterRelations(clusterId: string): ClusterRelation[];
|
|
184
|
+
/**
|
|
185
|
+
* Upsert session metadata
|
|
186
|
+
*/
|
|
187
|
+
upsertSessionMetadata(metadata: SessionMetadataCache): SessionMetadataCache;
|
|
188
|
+
/**
|
|
189
|
+
* Get session metadata
|
|
190
|
+
*/
|
|
191
|
+
getSessionMetadata(sessionId: string): SessionMetadataCache | null;
|
|
192
|
+
/**
|
|
193
|
+
* Search sessions by keyword
|
|
194
|
+
*/
|
|
195
|
+
searchSessionsByKeyword(keyword: string): SessionMetadataCache[];
|
|
196
|
+
/**
|
|
197
|
+
* Chunk content into smaller pieces for embedding
|
|
198
|
+
* @param content Content to chunk
|
|
199
|
+
* @param sourceId Source identifier (e.g., memory ID)
|
|
200
|
+
* @param sourceType Type of source
|
|
201
|
+
* @returns Array of chunk content strings
|
|
202
|
+
*/
|
|
203
|
+
chunkContent(content: string, sourceId: string, sourceType: string): string[];
|
|
204
|
+
/**
|
|
205
|
+
* Insert a single chunk
|
|
206
|
+
*/
|
|
207
|
+
insertChunk(chunk: Omit<MemoryChunk, 'id'>): number;
|
|
208
|
+
/**
|
|
209
|
+
* Insert multiple chunks in a batch
|
|
210
|
+
*/
|
|
211
|
+
insertChunksBatch(chunks: Omit<MemoryChunk, 'id'>[]): void;
|
|
212
|
+
/**
|
|
213
|
+
* Get all chunks for a source
|
|
214
|
+
*/
|
|
215
|
+
getChunks(sourceId: string): MemoryChunk[];
|
|
216
|
+
/**
|
|
217
|
+
* Get chunks by source type
|
|
218
|
+
*/
|
|
219
|
+
getChunksByType(sourceType: string): MemoryChunk[];
|
|
220
|
+
/**
|
|
221
|
+
* Get chunks without embeddings
|
|
222
|
+
*/
|
|
223
|
+
getUnembeddedChunks(limit?: number): MemoryChunk[];
|
|
224
|
+
/**
|
|
225
|
+
* Update embedding for a chunk
|
|
226
|
+
*/
|
|
227
|
+
updateChunkEmbedding(chunkId: number, embedding: Buffer): void;
|
|
228
|
+
/**
|
|
229
|
+
* Update embeddings for multiple chunks in a batch
|
|
230
|
+
*/
|
|
231
|
+
updateChunkEmbeddingsBatch(updates: {
|
|
232
|
+
id: number;
|
|
233
|
+
embedding: Buffer;
|
|
234
|
+
}[]): void;
|
|
235
|
+
/**
|
|
236
|
+
* Delete all chunks for a source
|
|
237
|
+
*/
|
|
238
|
+
deleteChunks(sourceId: string): void;
|
|
239
|
+
/**
|
|
240
|
+
* Insert a CLAUDE.md update record
|
|
241
|
+
*/
|
|
242
|
+
insertClaudeUpdateRecord(record: Omit<ClaudeUpdateRecord, 'id'>): ClaudeUpdateRecord;
|
|
243
|
+
/**
|
|
244
|
+
* Get the last update record for a file
|
|
245
|
+
*/
|
|
246
|
+
getLastClaudeUpdate(filePath: string): ClaudeUpdateRecord | null;
|
|
247
|
+
/**
|
|
248
|
+
* Get update history for a file
|
|
249
|
+
*/
|
|
250
|
+
getClaudeUpdateHistory(filePath: string, limit?: number): ClaudeUpdateRecord[];
|
|
251
|
+
/**
|
|
252
|
+
* Get all CLAUDE.md update records for freshness calculation
|
|
253
|
+
*/
|
|
254
|
+
getAllClaudeUpdateRecords(): ClaudeUpdateRecord[];
|
|
255
|
+
/**
|
|
256
|
+
* Delete update records for a file
|
|
257
|
+
*/
|
|
258
|
+
deleteClaudeUpdateRecords(filePath: string): number;
|
|
259
|
+
/**
|
|
260
|
+
* Close database connection
|
|
261
|
+
*/
|
|
262
|
+
close(): void;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* Get or create a store instance for a project
|
|
266
|
+
*/
|
|
267
|
+
export declare function getCoreMemoryStore(projectPath: string): CoreMemoryStore;
|
|
268
|
+
export interface ProjectInfo {
|
|
269
|
+
id: string;
|
|
270
|
+
path: string;
|
|
271
|
+
memoriesCount: number;
|
|
272
|
+
clustersCount: number;
|
|
273
|
+
lastUpdated?: string;
|
|
274
|
+
}
|
|
275
|
+
export interface ExportedMemory {
|
|
276
|
+
version: string;
|
|
277
|
+
exportedAt: string;
|
|
278
|
+
sourceProject: string;
|
|
279
|
+
memories: CoreMemory[];
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* List all projects with their memory counts
|
|
283
|
+
*/
|
|
284
|
+
export declare function listAllProjects(): ProjectInfo[];
|
|
285
|
+
/**
|
|
286
|
+
* Get memories from another project by ID
|
|
287
|
+
*/
|
|
288
|
+
export declare function getMemoriesFromProject(projectId: string): CoreMemory[];
|
|
289
|
+
/**
|
|
290
|
+
* Find a memory by ID across all projects
|
|
291
|
+
* Searches through all project databases to locate a specific memory
|
|
292
|
+
*/
|
|
293
|
+
export declare function findMemoryAcrossProjects(memoryId: string): {
|
|
294
|
+
memory: CoreMemory;
|
|
295
|
+
projectId: string;
|
|
296
|
+
} | null;
|
|
297
|
+
/**
|
|
298
|
+
* Export memories to a JSON file
|
|
299
|
+
*/
|
|
300
|
+
export declare function exportMemories(projectPath: string, outputPath: string, options?: {
|
|
301
|
+
ids?: string[];
|
|
302
|
+
includeArchived?: boolean;
|
|
303
|
+
}): number;
|
|
304
|
+
/**
|
|
305
|
+
* Import memories from a JSON file or another project
|
|
306
|
+
*/
|
|
307
|
+
export declare function importMemories(targetProjectPath: string, source: string, // File path or project ID
|
|
308
|
+
options?: {
|
|
309
|
+
overwrite?: boolean;
|
|
310
|
+
prefix?: string;
|
|
311
|
+
}): {
|
|
312
|
+
imported: number;
|
|
313
|
+
skipped: number;
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* Close all store instances
|
|
317
|
+
*/
|
|
318
|
+
export declare function closeAllStores(): void;
|
|
319
|
+
export default CoreMemoryStore;
|
|
320
|
+
//# sourceMappingURL=core-memory-store.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core-memory-store.d.ts","sourceRoot":"","sources":["../../src/core/core-memory-store.ts"],"names":[],"mappings":"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"}
|