@sunub/obsidian-mcp-server 0.3.4 → 0.3.9
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/build/config.d.ts +2 -27
- package/build/config.js +11 -31
- package/build/config.js.map +1 -1
- package/build/db.js +3 -0
- package/build/db.js.map +1 -1
- package/build/index.js +28 -6
- package/build/index.js.map +1 -1
- package/build/server.js +16 -13
- package/build/server.js.map +1 -1
- package/build/setup.d.ts +4 -0
- package/build/setup.js +114 -0
- package/build/setup.js.map +1 -0
- package/build/tools/create_document_with_properties/index.d.ts +5 -5
- package/build/tools/create_document_with_properties/index.js +2 -2
- package/build/tools/create_document_with_properties/index.js.map +1 -1
- package/build/tools/create_document_with_properties/params.d.ts +8 -8
- package/build/tools/create_document_with_properties/params.js +1 -1
- package/build/tools/create_document_with_properties/params.js.map +1 -1
- package/build/tools/generate_property/index.d.ts +1 -1
- package/build/tools/generate_property/index.js +1 -1
- package/build/tools/generate_property/index.js.map +1 -1
- package/build/tools/generate_property/params.d.ts +4 -4
- package/build/tools/index.d.ts +8 -8
- package/build/tools/index.js +5 -5
- package/build/tools/index.js.map +1 -1
- package/build/tools/organize_attachments/index.d.ts +1 -1
- package/build/tools/organize_attachments/index.js +2 -2
- package/build/tools/organize_attachments/index.js.map +1 -1
- package/build/tools/vault/index.d.ts +2 -2
- package/build/tools/vault/index.js +7 -8
- package/build/tools/vault/index.js.map +1 -1
- package/build/tools/vault/params.d.ts +4 -4
- package/build/tools/vault/types/collect_context.d.ts +58 -58
- package/build/tools/vault/types/collect_context.js +1 -1
- package/build/tools/vault/types/collect_context.js.map +1 -1
- package/build/tools/vault/types/list_all.d.ts +42 -42
- package/build/tools/vault/types/list_all.js +2 -2
- package/build/tools/vault/types/list_all.js.map +1 -1
- package/build/tools/vault/types/read_specific.d.ts +6 -6
- package/build/tools/vault/types/read_specific.js +1 -1
- package/build/tools/vault/types/read_specific.js.map +1 -1
- package/build/tools/vault/types/search.d.ts +70 -70
- package/build/tools/vault/utils/actions/collect_context.d.ts +1 -1
- package/build/tools/vault/utils/actions/collect_context.js +4 -4
- package/build/tools/vault/utils/actions/collect_context.js.map +1 -1
- package/build/tools/vault/utils/actions/list_all.d.ts +1 -1
- package/build/tools/vault/utils/actions/list_all.js +1 -1
- package/build/tools/vault/utils/actions/list_all.js.map +1 -1
- package/build/tools/vault/utils/actions/load_memory.d.ts +1 -1
- package/build/tools/vault/utils/actions/load_memory.js +3 -3
- package/build/tools/vault/utils/actions/load_memory.js.map +1 -1
- package/build/tools/vault/utils/actions/read.d.ts +1 -1
- package/build/tools/vault/utils/actions/read.js +1 -1
- package/build/tools/vault/utils/actions/read.js.map +1 -1
- package/build/tools/vault/utils/actions/search.d.ts +1 -1
- package/build/tools/vault/utils/actions/search.js +25 -15
- package/build/tools/vault/utils/actions/search.js.map +1 -1
- package/build/tools/vault/utils/shared.d.ts +1 -1
- package/build/tools/vault/utils.d.ts +7 -8
- package/build/tools/vault/utils.js +7 -8
- package/build/tools/vault/utils.js.map +1 -1
- package/build/tools/write_property/index.d.ts +5 -5
- package/build/tools/write_property/index.js +1 -1
- package/build/tools/write_property/index.js.map +1 -1
- package/build/tools/write_property/params.d.ts +8 -8
- package/build/utils/DirectoryWalker.d.ts +1 -1
- package/build/utils/Embedder.d.ts +11 -0
- package/build/utils/Embedder.js +46 -0
- package/build/utils/Embedder.js.map +1 -0
- package/build/utils/Indexer.d.ts +4 -2
- package/build/utils/Indexer.js +19 -2
- package/build/utils/Indexer.js.map +1 -1
- package/build/utils/LLMClient.js +16 -0
- package/build/utils/LLMClient.js.map +1 -1
- package/build/utils/LocalReranker.d.ts +17 -0
- package/build/utils/LocalReranker.js +71 -0
- package/build/utils/LocalReranker.js.map +1 -0
- package/build/utils/RAGIndexer.d.ts +10 -1
- package/build/utils/RAGIndexer.js +59 -27
- package/build/utils/RAGIndexer.js.map +1 -1
- package/build/utils/RerankerClient.d.ts +6 -6
- package/build/utils/RerankerClient.js +20 -1
- package/build/utils/RerankerClient.js.map +1 -1
- package/build/utils/VaultManger/VaultManager.d.ts +38 -2
- package/build/utils/VaultManger/VaultManager.js +268 -13
- package/build/utils/VaultManger/VaultManager.js.map +1 -1
- package/build/utils/VaultManger/index.d.ts +3 -3
- package/build/utils/VaultManger/index.js +2 -2
- package/build/utils/VaultManger/index.js.map +1 -1
- package/build/utils/VaultManger/types.d.ts +1 -1
- package/build/utils/VaultWatcher.d.ts +1 -1
- package/build/utils/VaultWatcher.js +12 -55
- package/build/utils/VaultWatcher.js.map +1 -1
- package/build/utils/VectorDB.js +31 -6
- package/build/utils/VectorDB.js.map +1 -1
- package/build/utils/constants.d.ts +3 -0
- package/build/utils/constants.js +14 -0
- package/build/utils/constants.js.map +1 -0
- package/build/utils/getVaultManager.d.ts +1 -1
- package/build/utils/getVaultManager.js +1 -1
- package/build/utils/getVaultManager.js.map +1 -1
- package/build/utils/processor/MatterParser.d.ts +1 -1
- package/build/utils/processor/MatterParser.js +1 -1
- package/build/utils/processor/MatterParser.js.map +1 -1
- package/build/utils/processor/types.d.ts +4 -0
- package/build/utils/processor/types.js +1 -0
- package/build/utils/processor/types.js.map +1 -1
- package/package.json +16 -49
- package/LICENSE +0 -15
- package/README.md +0 -512
- package/build/cli/AppContainer.d.ts +0 -1
- package/build/cli/AppContainer.js +0 -197
- package/build/cli/AppContainer.js.map +0 -1
- package/build/cli/app.d.ts +0 -1
- package/build/cli/app.js +0 -7
- package/build/cli/app.js.map +0 -1
- package/build/cli/colors.d.ts +0 -15
- package/build/cli/colors.js +0 -15
- package/build/cli/colors.js.map +0 -1
- package/build/cli/commands/types.d.ts +0 -19
- package/build/cli/commands/types.js +0 -11
- package/build/cli/commands/types.js.map +0 -1
- package/build/cli/config/SettingContext.d.ts +0 -1
- package/build/cli/config/SettingContext.js +0 -2
- package/build/cli/config/SettingContext.js.map +0 -1
- package/build/cli/config/mcpServersConfig.d.ts +0 -30
- package/build/cli/config/mcpServersConfig.js +0 -119
- package/build/cli/config/mcpServersConfig.js.map +0 -1
- package/build/cli/config/settingSchema.d.ts +0 -180
- package/build/cli/config/settingSchema.js +0 -128
- package/build/cli/config/settingSchema.js.map +0 -1
- package/build/cli/constants.d.ts +0 -47
- package/build/cli/constants.js +0 -101
- package/build/cli/constants.js.map +0 -1
- package/build/cli/context/InputContext.d.ts +0 -12
- package/build/cli/context/InputContext.js +0 -10
- package/build/cli/context/InputContext.js.map +0 -1
- package/build/cli/context/KeypressContext.d.ts +0 -30
- package/build/cli/context/KeypressContext.js +0 -200
- package/build/cli/context/KeypressContext.js.map +0 -1
- package/build/cli/context/KeypressContext.util.d.ts +0 -7
- package/build/cli/context/KeypressContext.util.js +0 -474
- package/build/cli/context/KeypressContext.util.js.map +0 -1
- package/build/cli/hooks/useAtCompletion.d.ts +0 -12
- package/build/cli/hooks/useAtCompletion.js +0 -5
- package/build/cli/hooks/useAtCompletion.js.map +0 -1
- package/build/cli/hooks/useCommandCompletion.d.ts +0 -59
- package/build/cli/hooks/useCommandCompletion.js +0 -344
- package/build/cli/hooks/useCommandCompletion.js.map +0 -1
- package/build/cli/hooks/useCompletion.d.ts +0 -22
- package/build/cli/hooks/useCompletion.js +0 -84
- package/build/cli/hooks/useCompletion.js.map +0 -1
- package/build/cli/hooks/useDispatcher.d.ts +0 -6
- package/build/cli/hooks/useDispatcher.js +0 -286
- package/build/cli/hooks/useDispatcher.js.map +0 -1
- package/build/cli/hooks/useFocus.d.ts +0 -2
- package/build/cli/hooks/useFocus.js +0 -3
- package/build/cli/hooks/useFocus.js.map +0 -1
- package/build/cli/hooks/useInputHistory.d.ts +0 -24
- package/build/cli/hooks/useInputHistory.js +0 -159
- package/build/cli/hooks/useInputHistory.js.map +0 -1
- package/build/cli/hooks/useKeyMatchers.d.ts +0 -17
- package/build/cli/hooks/useKeyMatchers.js +0 -13
- package/build/cli/hooks/useKeyMatchers.js.map +0 -1
- package/build/cli/hooks/useKeypress.d.ts +0 -19
- package/build/cli/hooks/useKeypress.js +0 -28
- package/build/cli/hooks/useKeypress.js.map +0 -1
- package/build/cli/hooks/useLlmStream.d.ts +0 -12
- package/build/cli/hooks/useLlmStream.js +0 -365
- package/build/cli/hooks/useLlmStream.js.map +0 -1
- package/build/cli/hooks/useMcpClient.d.ts +0 -10
- package/build/cli/hooks/useMcpClient.js +0 -100
- package/build/cli/hooks/useMcpClient.js.map +0 -1
- package/build/cli/hooks/useMcpManager.d.ts +0 -22
- package/build/cli/hooks/useMcpManager.js +0 -86
- package/build/cli/hooks/useMcpManager.js.map +0 -1
- package/build/cli/hooks/usePromptCompletion.d.ts +0 -19
- package/build/cli/hooks/usePromptCompletion.js +0 -13
- package/build/cli/hooks/usePromptCompletion.js.map +0 -1
- package/build/cli/hooks/useRagContext.d.ts +0 -6
- package/build/cli/hooks/useRagContext.js +0 -83
- package/build/cli/hooks/useRagContext.js.map +0 -1
- package/build/cli/hooks/useShellCompletion.d.ts +0 -18
- package/build/cli/hooks/useShellCompletion.js +0 -10
- package/build/cli/hooks/useShellCompletion.js.map +0 -1
- package/build/cli/hooks/useSlashCompletion.d.ts +0 -21
- package/build/cli/hooks/useSlashCompletion.js +0 -11
- package/build/cli/hooks/useSlashCompletion.js.map +0 -1
- package/build/cli/hooks/useTerminalSize.d.ts +0 -9
- package/build/cli/hooks/useTerminalSize.js +0 -26
- package/build/cli/hooks/useTerminalSize.js.map +0 -1
- package/build/cli/index.d.ts +0 -1
- package/build/cli/index.js +0 -39
- package/build/cli/index.js.map +0 -1
- package/build/cli/key/input.d.ts +0 -5
- package/build/cli/key/input.js +0 -9
- package/build/cli/key/input.js.map +0 -1
- package/build/cli/key/keyBindings.d.ts +0 -152
- package/build/cli/key/keyBindings.js +0 -630
- package/build/cli/key/keyBindings.js.map +0 -1
- package/build/cli/key/keyMatchers.d.ts +0 -27
- package/build/cli/key/keyMatchers.js +0 -33
- package/build/cli/key/keyMatchers.js.map +0 -1
- package/build/cli/key/mouse.d.ts +0 -23
- package/build/cli/key/mouse.js +0 -155
- package/build/cli/key/mouse.js.map +0 -1
- package/build/cli/key/text-buffer-bestcase.d.ts +0 -867
- package/build/cli/key/text-buffer-bestcase.js +0 -2754
- package/build/cli/key/text-buffer-bestcase.js.map +0 -1
- package/build/cli/key/text-buffer.d.ts +0 -509
- package/build/cli/key/text-buffer.js +0 -918
- package/build/cli/key/text-buffer.js.map +0 -1
- package/build/cli/main.d.ts +0 -1
- package/build/cli/main.js +0 -20
- package/build/cli/main.js.map +0 -1
- package/build/cli/reference/HistoryItemDisplay.d.ts +0 -23
- package/build/cli/reference/HistoryItemDisplay.js +0 -63
- package/build/cli/reference/HistoryItemDisplay.js.map +0 -1
- package/build/cli/reference/InputContext.d.ts +0 -17
- package/build/cli/reference/InputContext.js +0 -16
- package/build/cli/reference/InputContext.js.map +0 -1
- package/build/cli/reference/KerypressContext.d.ts +0 -37
- package/build/cli/reference/KerypressContext.js +0 -791
- package/build/cli/reference/KerypressContext.js.map +0 -1
- package/build/cli/reference/MainContent.d.ts +0 -6
- package/build/cli/reference/MainContent.js +0 -207
- package/build/cli/reference/MainContent.js.map +0 -1
- package/build/cli/reference/UIStateContext.d.ts +0 -188
- package/build/cli/reference/UIStateContext.js +0 -16
- package/build/cli/reference/UIStateContext.js.map +0 -1
- package/build/cli/reference/text-buffer.d.ts +0 -867
- package/build/cli/reference/text-buffer.js +0 -2754
- package/build/cli/reference/text-buffer.js.map +0 -1
- package/build/cli/reference/useGeminiStream.d.ts +0 -42
- package/build/cli/reference/useGeminiStream.js +0 -1404
- package/build/cli/reference/useGeminiStream.js.map +0 -1
- package/build/cli/services/McpClientService.d.ts +0 -32
- package/build/cli/services/McpClientService.js +0 -123
- package/build/cli/services/McpClientService.js.map +0 -1
- package/build/cli/services/McpManager.d.ts +0 -28
- package/build/cli/services/McpManager.js +0 -146
- package/build/cli/services/McpManager.js.map +0 -1
- package/build/cli/theme/builtin/default-dark.d.ts +0 -7
- package/build/cli/theme/builtin/default-dark.js +0 -143
- package/build/cli/theme/builtin/default-dark.js.map +0 -1
- package/build/cli/theme/builtin/no-color.d.ts +0 -7
- package/build/cli/theme/builtin/no-color.js +0 -125
- package/build/cli/theme/builtin/no-color.js.map +0 -1
- package/build/cli/theme/builtin/tokyonight-dark.d.ts +0 -7
- package/build/cli/theme/builtin/tokyonight-dark.js +0 -146
- package/build/cli/theme/builtin/tokyonight-dark.js.map +0 -1
- package/build/cli/theme/semantic-colors.d.ts +0 -2
- package/build/cli/theme/semantic-colors.js +0 -19
- package/build/cli/theme/semantic-colors.js.map +0 -1
- package/build/cli/theme/semantic-tokens.d.ts +0 -42
- package/build/cli/theme/semantic-tokens.js +0 -77
- package/build/cli/theme/semantic-tokens.js.map +0 -1
- package/build/cli/theme/theme-manager.d.ts +0 -32
- package/build/cli/theme/theme-manager.js +0 -150
- package/build/cli/theme/theme-manager.js.map +0 -1
- package/build/cli/theme/theme.d.ts +0 -107
- package/build/cli/theme/theme.js +0 -333
- package/build/cli/theme/theme.js.map +0 -1
- package/build/cli/tmp.d.ts +0 -1
- package/build/cli/tmp.js +0 -27
- package/build/cli/tmp.js.map +0 -1
- package/build/cli/types.d.ts +0 -72
- package/build/cli/types.js +0 -8
- package/build/cli/types.js.map +0 -1
- package/build/cli/ui/ConnectionStatus.d.ts +0 -13
- package/build/cli/ui/ConnectionStatus.js +0 -24
- package/build/cli/ui/ConnectionStatus.js.map +0 -1
- package/build/cli/ui/HelpCommands.d.ts +0 -5
- package/build/cli/ui/HelpCommands.js +0 -11
- package/build/cli/ui/HelpCommands.js.map +0 -1
- package/build/cli/ui/HistoryItemDisplay.d.ts +0 -9
- package/build/cli/ui/HistoryItemDisplay.js +0 -38
- package/build/cli/ui/HistoryItemDisplay.js.map +0 -1
- package/build/cli/ui/InputPrompt-bestcase.d.ts +0 -63
- package/build/cli/ui/InputPrompt-bestcase.js +0 -1301
- package/build/cli/ui/InputPrompt-bestcase.js.map +0 -1
- package/build/cli/ui/InputPrompt.d.ts +0 -12
- package/build/cli/ui/InputPrompt.js +0 -145
- package/build/cli/ui/InputPrompt.js.map +0 -1
- package/build/cli/ui/InputPrompt.tmp.d.ts +0 -7
- package/build/cli/ui/InputPrompt.tmp.js +0 -215
- package/build/cli/ui/InputPrompt.tmp.js.map +0 -1
- package/build/cli/ui/MainContent.d.ts +0 -10
- package/build/cli/ui/MainContent.js +0 -24
- package/build/cli/ui/MainContent.js.map +0 -1
- package/build/cli/ui/MouseContext.d.ts +0 -1
- package/build/cli/ui/MouseContext.js +0 -2
- package/build/cli/ui/MouseContext.js.map +0 -1
- package/build/cli/ui/SuggestionsDisplay.d.ts +0 -25
- package/build/cli/ui/SuggestionsDisplay.js +0 -45
- package/build/cli/ui/SuggestionsDisplay.js.map +0 -1
- package/build/cli/ui/ThinkingIndicator.d.ts +0 -2
- package/build/cli/ui/ThinkingIndicator.js +0 -16
- package/build/cli/ui/ThinkingIndicator.js.map +0 -1
- package/build/cli/ui/layout/DefaultAppLayout.d.ts +0 -2
- package/build/cli/ui/layout/DefaultAppLayout.js +0 -6
- package/build/cli/ui/layout/DefaultAppLayout.js.map +0 -1
- package/build/cli/ui/shared/ExpandableText.d.ts +0 -14
- package/build/cli/ui/shared/ExpandableText.js +0 -19
- package/build/cli/ui/shared/ExpandableText.js.map +0 -1
- package/build/cli/utils/cache.d.ts +0 -21
- package/build/cli/utils/cache.js +0 -56
- package/build/cli/utils/cache.js.map +0 -1
- package/build/cli/utils/commandUtils.d.ts +0 -11
- package/build/cli/utils/commandUtils.js +0 -16
- package/build/cli/utils/commandUtils.js.map +0 -1
- package/build/cli/utils/debugLogger.d.ts +0 -12
- package/build/cli/utils/debugLogger.js +0 -54
- package/build/cli/utils/debugLogger.js.map +0 -1
- package/build/cli/utils/historyStorage.d.ts +0 -13
- package/build/cli/utils/historyStorage.js +0 -64
- package/build/cli/utils/historyStorage.js.map +0 -1
- package/build/cli/utils/textUtil.d.ts +0 -68
- package/build/cli/utils/textUtil.js +0 -236
- package/build/cli/utils/textUtil.js.map +0 -1
- package/build/tools/vault/utils/actions/search_semantic.d.ts +0 -3
- package/build/tools/vault/utils/actions/search_semantic.js +0 -71
- package/build/tools/vault/utils/actions/search_semantic.js.map +0 -1
|
@@ -53,10 +53,10 @@ export declare const collectContextDocumentSchema: z.ZodObject<{
|
|
|
53
53
|
backlinks_count: z.ZodNumber;
|
|
54
54
|
truncated: z.ZodBoolean;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
|
|
56
|
+
filename: string;
|
|
57
57
|
tags: string[];
|
|
58
|
+
title: string;
|
|
58
59
|
summary: string;
|
|
59
|
-
filename: string;
|
|
60
60
|
stats: {
|
|
61
61
|
contentLength: number;
|
|
62
62
|
wordCount: number;
|
|
@@ -70,10 +70,10 @@ export declare const collectContextDocumentSchema: z.ZodObject<{
|
|
|
70
70
|
relevance: "high" | "medium" | "low";
|
|
71
71
|
backlinks_count: number;
|
|
72
72
|
}, {
|
|
73
|
-
|
|
73
|
+
filename: string;
|
|
74
74
|
tags: string[];
|
|
75
|
+
title: string;
|
|
75
76
|
summary: string;
|
|
76
|
-
filename: string;
|
|
77
77
|
stats: {
|
|
78
78
|
contentLength: number;
|
|
79
79
|
wordCount: number;
|
|
@@ -166,10 +166,10 @@ export declare const collectContextPayloadSchema: z.ZodObject<{
|
|
|
166
166
|
backlinks_count: z.ZodNumber;
|
|
167
167
|
truncated: z.ZodBoolean;
|
|
168
168
|
}, "strip", z.ZodTypeAny, {
|
|
169
|
-
|
|
169
|
+
filename: string;
|
|
170
170
|
tags: string[];
|
|
171
|
+
title: string;
|
|
171
172
|
summary: string;
|
|
172
|
-
filename: string;
|
|
173
173
|
stats: {
|
|
174
174
|
contentLength: number;
|
|
175
175
|
wordCount: number;
|
|
@@ -183,10 +183,10 @@ export declare const collectContextPayloadSchema: z.ZodObject<{
|
|
|
183
183
|
relevance: "high" | "medium" | "low";
|
|
184
184
|
backlinks_count: number;
|
|
185
185
|
}, {
|
|
186
|
-
|
|
186
|
+
filename: string;
|
|
187
187
|
tags: string[];
|
|
188
|
+
title: string;
|
|
188
189
|
summary: string;
|
|
189
|
-
filename: string;
|
|
190
190
|
stats: {
|
|
191
191
|
contentLength: number;
|
|
192
192
|
wordCount: number;
|
|
@@ -278,18 +278,18 @@ export declare const collectContextPayloadSchema: z.ZodObject<{
|
|
|
278
278
|
doc_hash: z.ZodString;
|
|
279
279
|
mode: z.ZodEnum<["response_only", "vault_note", "both"]>;
|
|
280
280
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
+
key: string;
|
|
281
282
|
mode: "response_only" | "vault_note" | "both";
|
|
282
283
|
hit: boolean;
|
|
283
284
|
topic: string | null;
|
|
284
285
|
doc_hash: string;
|
|
285
|
-
key: string;
|
|
286
286
|
schema_version: string;
|
|
287
287
|
}, {
|
|
288
|
+
key: string;
|
|
288
289
|
mode: "response_only" | "vault_note" | "both";
|
|
289
290
|
hit: boolean;
|
|
290
291
|
topic: string | null;
|
|
291
292
|
doc_hash: string;
|
|
292
|
-
key: string;
|
|
293
293
|
schema_version: string;
|
|
294
294
|
}>>;
|
|
295
295
|
batch: z.ZodObject<{
|
|
@@ -319,10 +319,10 @@ export declare const collectContextPayloadSchema: z.ZodObject<{
|
|
|
319
319
|
}>;
|
|
320
320
|
}, "strip", z.ZodTypeAny, {
|
|
321
321
|
documents: {
|
|
322
|
-
|
|
322
|
+
filename: string;
|
|
323
323
|
tags: string[];
|
|
324
|
+
title: string;
|
|
324
325
|
summary: string;
|
|
325
|
-
filename: string;
|
|
326
326
|
stats: {
|
|
327
327
|
contentLength: number;
|
|
328
328
|
wordCount: number;
|
|
@@ -373,19 +373,19 @@ export declare const collectContextPayloadSchema: z.ZodObject<{
|
|
|
373
373
|
continuation_token: string | null;
|
|
374
374
|
};
|
|
375
375
|
cache?: {
|
|
376
|
+
key: string;
|
|
376
377
|
mode: "response_only" | "vault_note" | "both";
|
|
377
378
|
hit: boolean;
|
|
378
379
|
topic: string | null;
|
|
379
380
|
doc_hash: string;
|
|
380
|
-
key: string;
|
|
381
381
|
schema_version: string;
|
|
382
382
|
} | undefined;
|
|
383
383
|
}, {
|
|
384
384
|
documents: {
|
|
385
|
-
|
|
385
|
+
filename: string;
|
|
386
386
|
tags: string[];
|
|
387
|
+
title: string;
|
|
387
388
|
summary: string;
|
|
388
|
-
filename: string;
|
|
389
389
|
stats: {
|
|
390
390
|
contentLength: number;
|
|
391
391
|
wordCount: number;
|
|
@@ -436,11 +436,11 @@ export declare const collectContextPayloadSchema: z.ZodObject<{
|
|
|
436
436
|
continuation_token: string | null;
|
|
437
437
|
};
|
|
438
438
|
cache?: {
|
|
439
|
+
key: string;
|
|
439
440
|
mode: "response_only" | "vault_note" | "both";
|
|
440
441
|
hit: boolean;
|
|
441
442
|
topic: string | null;
|
|
442
443
|
doc_hash: string;
|
|
443
|
-
key: string;
|
|
444
444
|
schema_version: string;
|
|
445
445
|
} | undefined;
|
|
446
446
|
}>;
|
|
@@ -453,7 +453,7 @@ export declare const collectContextCompressionSchema: z.ZodObject<{
|
|
|
453
453
|
truncated: z.ZodBoolean;
|
|
454
454
|
expand_hint: z.ZodString;
|
|
455
455
|
}, "strip", z.ZodTypeAny, {
|
|
456
|
-
mode: "
|
|
456
|
+
mode: "none" | "aggressive" | "balanced";
|
|
457
457
|
estimated_tokens: number;
|
|
458
458
|
truncated: boolean;
|
|
459
459
|
output_chars: number;
|
|
@@ -467,7 +467,7 @@ export declare const collectContextCompressionSchema: z.ZodObject<{
|
|
|
467
467
|
source_chars: number;
|
|
468
468
|
max_output_chars: number | null;
|
|
469
469
|
expand_hint: string;
|
|
470
|
-
mode?: "
|
|
470
|
+
mode?: "none" | "aggressive" | "balanced" | undefined;
|
|
471
471
|
}>;
|
|
472
472
|
export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
473
473
|
action: z.ZodLiteral<"collect_context">;
|
|
@@ -501,10 +501,10 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
501
501
|
backlinks_count: z.ZodNumber;
|
|
502
502
|
truncated: z.ZodBoolean;
|
|
503
503
|
}, "strip", z.ZodTypeAny, {
|
|
504
|
-
|
|
504
|
+
filename: string;
|
|
505
505
|
tags: string[];
|
|
506
|
+
title: string;
|
|
506
507
|
summary: string;
|
|
507
|
-
filename: string;
|
|
508
508
|
stats: {
|
|
509
509
|
contentLength: number;
|
|
510
510
|
wordCount: number;
|
|
@@ -518,10 +518,10 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
518
518
|
relevance: "high" | "medium" | "low";
|
|
519
519
|
backlinks_count: number;
|
|
520
520
|
}, {
|
|
521
|
-
|
|
521
|
+
filename: string;
|
|
522
522
|
tags: string[];
|
|
523
|
+
title: string;
|
|
523
524
|
summary: string;
|
|
524
|
-
filename: string;
|
|
525
525
|
stats: {
|
|
526
526
|
contentLength: number;
|
|
527
527
|
wordCount: number;
|
|
@@ -613,18 +613,18 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
613
613
|
doc_hash: z.ZodString;
|
|
614
614
|
mode: z.ZodEnum<["response_only", "vault_note", "both"]>;
|
|
615
615
|
}, "strip", z.ZodTypeAny, {
|
|
616
|
+
key: string;
|
|
616
617
|
mode: "response_only" | "vault_note" | "both";
|
|
617
618
|
hit: boolean;
|
|
618
619
|
topic: string | null;
|
|
619
620
|
doc_hash: string;
|
|
620
|
-
key: string;
|
|
621
621
|
schema_version: string;
|
|
622
622
|
}, {
|
|
623
|
+
key: string;
|
|
623
624
|
mode: "response_only" | "vault_note" | "both";
|
|
624
625
|
hit: boolean;
|
|
625
626
|
topic: string | null;
|
|
626
627
|
doc_hash: string;
|
|
627
|
-
key: string;
|
|
628
628
|
schema_version: string;
|
|
629
629
|
}>>;
|
|
630
630
|
batch: z.ZodObject<{
|
|
@@ -662,7 +662,7 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
662
662
|
truncated: z.ZodBoolean;
|
|
663
663
|
expand_hint: z.ZodString;
|
|
664
664
|
}, "strip", z.ZodTypeAny, {
|
|
665
|
-
mode: "
|
|
665
|
+
mode: "none" | "aggressive" | "balanced";
|
|
666
666
|
estimated_tokens: number;
|
|
667
667
|
truncated: boolean;
|
|
668
668
|
output_chars: number;
|
|
@@ -676,14 +676,14 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
676
676
|
source_chars: number;
|
|
677
677
|
max_output_chars: number | null;
|
|
678
678
|
expand_hint: string;
|
|
679
|
-
mode?: "
|
|
679
|
+
mode?: "none" | "aggressive" | "balanced" | undefined;
|
|
680
680
|
}>;
|
|
681
681
|
}, "strip", z.ZodTypeAny, {
|
|
682
682
|
documents: {
|
|
683
|
-
|
|
683
|
+
filename: string;
|
|
684
684
|
tags: string[];
|
|
685
|
+
title: string;
|
|
685
686
|
summary: string;
|
|
686
|
-
filename: string;
|
|
687
687
|
stats: {
|
|
688
688
|
contentLength: number;
|
|
689
689
|
wordCount: number;
|
|
@@ -698,7 +698,7 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
698
698
|
backlinks_count: number;
|
|
699
699
|
}[];
|
|
700
700
|
compression: {
|
|
701
|
-
mode: "
|
|
701
|
+
mode: "none" | "aggressive" | "balanced";
|
|
702
702
|
estimated_tokens: number;
|
|
703
703
|
truncated: boolean;
|
|
704
704
|
output_chars: number;
|
|
@@ -743,19 +743,19 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
743
743
|
continuation_token: string | null;
|
|
744
744
|
};
|
|
745
745
|
cache?: {
|
|
746
|
+
key: string;
|
|
746
747
|
mode: "response_only" | "vault_note" | "both";
|
|
747
748
|
hit: boolean;
|
|
748
749
|
topic: string | null;
|
|
749
750
|
doc_hash: string;
|
|
750
|
-
key: string;
|
|
751
751
|
schema_version: string;
|
|
752
752
|
} | undefined;
|
|
753
753
|
}, {
|
|
754
754
|
documents: {
|
|
755
|
-
|
|
755
|
+
filename: string;
|
|
756
756
|
tags: string[];
|
|
757
|
+
title: string;
|
|
757
758
|
summary: string;
|
|
758
|
-
filename: string;
|
|
759
759
|
stats: {
|
|
760
760
|
contentLength: number;
|
|
761
761
|
wordCount: number;
|
|
@@ -776,7 +776,7 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
776
776
|
source_chars: number;
|
|
777
777
|
max_output_chars: number | null;
|
|
778
778
|
expand_hint: string;
|
|
779
|
-
mode?: "
|
|
779
|
+
mode?: "none" | "aggressive" | "balanced" | undefined;
|
|
780
780
|
};
|
|
781
781
|
action: "collect_context";
|
|
782
782
|
topic: string | null;
|
|
@@ -815,11 +815,11 @@ export declare const collectContextResponseDataSchema: z.ZodObject<{
|
|
|
815
815
|
continuation_token: string | null;
|
|
816
816
|
};
|
|
817
817
|
cache?: {
|
|
818
|
+
key: string;
|
|
818
819
|
mode: "response_only" | "vault_note" | "both";
|
|
819
820
|
hit: boolean;
|
|
820
821
|
topic: string | null;
|
|
821
822
|
doc_hash: string;
|
|
822
|
-
key: string;
|
|
823
823
|
schema_version: string;
|
|
824
824
|
} | undefined;
|
|
825
825
|
}>;
|
|
@@ -857,10 +857,10 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
857
857
|
backlinks_count: z.ZodNumber;
|
|
858
858
|
truncated: z.ZodBoolean;
|
|
859
859
|
}, "strip", z.ZodTypeAny, {
|
|
860
|
-
|
|
860
|
+
filename: string;
|
|
861
861
|
tags: string[];
|
|
862
|
+
title: string;
|
|
862
863
|
summary: string;
|
|
863
|
-
filename: string;
|
|
864
864
|
stats: {
|
|
865
865
|
contentLength: number;
|
|
866
866
|
wordCount: number;
|
|
@@ -874,10 +874,10 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
874
874
|
relevance: "high" | "medium" | "low";
|
|
875
875
|
backlinks_count: number;
|
|
876
876
|
}, {
|
|
877
|
-
|
|
877
|
+
filename: string;
|
|
878
878
|
tags: string[];
|
|
879
|
+
title: string;
|
|
879
880
|
summary: string;
|
|
880
|
-
filename: string;
|
|
881
881
|
stats: {
|
|
882
882
|
contentLength: number;
|
|
883
883
|
wordCount: number;
|
|
@@ -969,18 +969,18 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
969
969
|
doc_hash: z.ZodString;
|
|
970
970
|
mode: z.ZodEnum<["response_only", "vault_note", "both"]>;
|
|
971
971
|
}, "strip", z.ZodTypeAny, {
|
|
972
|
+
key: string;
|
|
972
973
|
mode: "response_only" | "vault_note" | "both";
|
|
973
974
|
hit: boolean;
|
|
974
975
|
topic: string | null;
|
|
975
976
|
doc_hash: string;
|
|
976
|
-
key: string;
|
|
977
977
|
schema_version: string;
|
|
978
978
|
}, {
|
|
979
|
+
key: string;
|
|
979
980
|
mode: "response_only" | "vault_note" | "both";
|
|
980
981
|
hit: boolean;
|
|
981
982
|
topic: string | null;
|
|
982
983
|
doc_hash: string;
|
|
983
|
-
key: string;
|
|
984
984
|
schema_version: string;
|
|
985
985
|
}>>;
|
|
986
986
|
batch: z.ZodObject<{
|
|
@@ -1018,7 +1018,7 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1018
1018
|
truncated: z.ZodBoolean;
|
|
1019
1019
|
expand_hint: z.ZodString;
|
|
1020
1020
|
}, "strip", z.ZodTypeAny, {
|
|
1021
|
-
mode: "
|
|
1021
|
+
mode: "none" | "aggressive" | "balanced";
|
|
1022
1022
|
estimated_tokens: number;
|
|
1023
1023
|
truncated: boolean;
|
|
1024
1024
|
output_chars: number;
|
|
@@ -1032,14 +1032,14 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1032
1032
|
source_chars: number;
|
|
1033
1033
|
max_output_chars: number | null;
|
|
1034
1034
|
expand_hint: string;
|
|
1035
|
-
mode?: "
|
|
1035
|
+
mode?: "none" | "aggressive" | "balanced" | undefined;
|
|
1036
1036
|
}>;
|
|
1037
1037
|
}, "strip", z.ZodTypeAny, {
|
|
1038
1038
|
documents: {
|
|
1039
|
-
|
|
1039
|
+
filename: string;
|
|
1040
1040
|
tags: string[];
|
|
1041
|
+
title: string;
|
|
1041
1042
|
summary: string;
|
|
1042
|
-
filename: string;
|
|
1043
1043
|
stats: {
|
|
1044
1044
|
contentLength: number;
|
|
1045
1045
|
wordCount: number;
|
|
@@ -1054,7 +1054,7 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1054
1054
|
backlinks_count: number;
|
|
1055
1055
|
}[];
|
|
1056
1056
|
compression: {
|
|
1057
|
-
mode: "
|
|
1057
|
+
mode: "none" | "aggressive" | "balanced";
|
|
1058
1058
|
estimated_tokens: number;
|
|
1059
1059
|
truncated: boolean;
|
|
1060
1060
|
output_chars: number;
|
|
@@ -1099,19 +1099,19 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1099
1099
|
continuation_token: string | null;
|
|
1100
1100
|
};
|
|
1101
1101
|
cache?: {
|
|
1102
|
+
key: string;
|
|
1102
1103
|
mode: "response_only" | "vault_note" | "both";
|
|
1103
1104
|
hit: boolean;
|
|
1104
1105
|
topic: string | null;
|
|
1105
1106
|
doc_hash: string;
|
|
1106
|
-
key: string;
|
|
1107
1107
|
schema_version: string;
|
|
1108
1108
|
} | undefined;
|
|
1109
1109
|
}, {
|
|
1110
1110
|
documents: {
|
|
1111
|
-
|
|
1111
|
+
filename: string;
|
|
1112
1112
|
tags: string[];
|
|
1113
|
+
title: string;
|
|
1113
1114
|
summary: string;
|
|
1114
|
-
filename: string;
|
|
1115
1115
|
stats: {
|
|
1116
1116
|
contentLength: number;
|
|
1117
1117
|
wordCount: number;
|
|
@@ -1132,7 +1132,7 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1132
1132
|
source_chars: number;
|
|
1133
1133
|
max_output_chars: number | null;
|
|
1134
1134
|
expand_hint: string;
|
|
1135
|
-
mode?: "
|
|
1135
|
+
mode?: "none" | "aggressive" | "balanced" | undefined;
|
|
1136
1136
|
};
|
|
1137
1137
|
action: "collect_context";
|
|
1138
1138
|
topic: string | null;
|
|
@@ -1171,11 +1171,11 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1171
1171
|
continuation_token: string | null;
|
|
1172
1172
|
};
|
|
1173
1173
|
cache?: {
|
|
1174
|
+
key: string;
|
|
1174
1175
|
mode: "response_only" | "vault_note" | "both";
|
|
1175
1176
|
hit: boolean;
|
|
1176
1177
|
topic: string | null;
|
|
1177
1178
|
doc_hash: string;
|
|
1178
|
-
key: string;
|
|
1179
1179
|
schema_version: string;
|
|
1180
1180
|
} | undefined;
|
|
1181
1181
|
}>;
|
|
@@ -1183,10 +1183,10 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1183
1183
|
type: "text" | "image" | "audio" | "resource_link" | "resource";
|
|
1184
1184
|
text: {
|
|
1185
1185
|
documents: {
|
|
1186
|
-
|
|
1186
|
+
filename: string;
|
|
1187
1187
|
tags: string[];
|
|
1188
|
+
title: string;
|
|
1188
1189
|
summary: string;
|
|
1189
|
-
filename: string;
|
|
1190
1190
|
stats: {
|
|
1191
1191
|
contentLength: number;
|
|
1192
1192
|
wordCount: number;
|
|
@@ -1201,7 +1201,7 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1201
1201
|
backlinks_count: number;
|
|
1202
1202
|
}[];
|
|
1203
1203
|
compression: {
|
|
1204
|
-
mode: "
|
|
1204
|
+
mode: "none" | "aggressive" | "balanced";
|
|
1205
1205
|
estimated_tokens: number;
|
|
1206
1206
|
truncated: boolean;
|
|
1207
1207
|
output_chars: number;
|
|
@@ -1246,11 +1246,11 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1246
1246
|
continuation_token: string | null;
|
|
1247
1247
|
};
|
|
1248
1248
|
cache?: {
|
|
1249
|
+
key: string;
|
|
1249
1250
|
mode: "response_only" | "vault_note" | "both";
|
|
1250
1251
|
hit: boolean;
|
|
1251
1252
|
topic: string | null;
|
|
1252
1253
|
doc_hash: string;
|
|
1253
|
-
key: string;
|
|
1254
1254
|
schema_version: string;
|
|
1255
1255
|
} | undefined;
|
|
1256
1256
|
};
|
|
@@ -1258,10 +1258,10 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1258
1258
|
type: "text" | "image" | "audio" | "resource_link" | "resource";
|
|
1259
1259
|
text: {
|
|
1260
1260
|
documents: {
|
|
1261
|
-
|
|
1261
|
+
filename: string;
|
|
1262
1262
|
tags: string[];
|
|
1263
|
+
title: string;
|
|
1263
1264
|
summary: string;
|
|
1264
|
-
filename: string;
|
|
1265
1265
|
stats: {
|
|
1266
1266
|
contentLength: number;
|
|
1267
1267
|
wordCount: number;
|
|
@@ -1282,7 +1282,7 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1282
1282
|
source_chars: number;
|
|
1283
1283
|
max_output_chars: number | null;
|
|
1284
1284
|
expand_hint: string;
|
|
1285
|
-
mode?: "
|
|
1285
|
+
mode?: "none" | "aggressive" | "balanced" | undefined;
|
|
1286
1286
|
};
|
|
1287
1287
|
action: "collect_context";
|
|
1288
1288
|
topic: string | null;
|
|
@@ -1321,11 +1321,11 @@ export declare const collectContextResponseSchema: z.ZodObject<{
|
|
|
1321
1321
|
continuation_token: string | null;
|
|
1322
1322
|
};
|
|
1323
1323
|
cache?: {
|
|
1324
|
+
key: string;
|
|
1324
1325
|
mode: "response_only" | "vault_note" | "both";
|
|
1325
1326
|
hit: boolean;
|
|
1326
1327
|
topic: string | null;
|
|
1327
1328
|
doc_hash: string;
|
|
1328
|
-
key: string;
|
|
1329
1329
|
schema_version: string;
|
|
1330
1330
|
} | undefined;
|
|
1331
1331
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { compressionModeSchema, responseTypeSchema } from "
|
|
2
|
+
import { compressionModeSchema, responseTypeSchema, } from "../../../tools/vault/params.js";
|
|
3
3
|
export const collectContextScopeSchema = z.enum(["topic", "all"]);
|
|
4
4
|
export const collectContextMemoryModeSchema = z.enum([
|
|
5
5
|
"response_only",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collect_context.js","sourceRoot":"","sources":["../../../../src/tools/vault/types/collect_context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,
|
|
1
|
+
{"version":3,"file":"collect_context.js","sourceRoot":"","sources":["../../../../src/tools/vault/types/collect_context.ts"],"names":[],"mappings":"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"}
|