@sunub/obsidian-mcp-server 0.3.0 → 0.3.2
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/README.md +21 -5
- package/build/cli/app.d.ts +1 -0
- package/build/cli/colors.d.ts +15 -0
- package/build/cli/colors.js +15 -0
- package/build/cli/colors.js.map +1 -0
- package/build/cli/commands/types.d.ts +19 -0
- package/build/cli/commands/types.js +11 -0
- package/build/cli/commands/types.js.map +1 -0
- package/build/cli/config/mcpServersConfig.d.ts +15 -3
- package/build/cli/config/mcpServersConfig.js +1 -1
- package/build/cli/config/mcpServersConfig.js.map +1 -1
- package/build/cli/constants.d.ts +47 -0
- package/build/cli/constants.js +101 -0
- package/build/cli/constants.js.map +1 -0
- package/build/cli/index.d.ts +1 -0
- package/build/cli/index.js +16 -4
- package/build/cli/index.js.map +1 -1
- package/build/cli/key/input.d.ts +5 -0
- package/build/cli/key/input.js +9 -0
- package/build/cli/key/input.js.map +1 -0
- package/build/cli/key/mouse.d.ts +23 -0
- package/build/cli/key/mouse.js +155 -0
- package/build/cli/key/mouse.js.map +1 -0
- package/build/cli/key/text-buffer-bestcase.d.ts +867 -0
- package/build/cli/key/text-buffer.d.ts +509 -0
- package/build/cli/main.d.ts +1 -0
- package/build/cli/main.js +20 -0
- package/build/cli/main.js.map +1 -0
- package/build/cli/reference/text-buffer.d.ts +867 -0
- package/build/cli/reference/text-buffer.js +2754 -0
- package/build/cli/reference/text-buffer.js.map +1 -0
- package/build/cli/theme/builtin/default-dark.d.ts +7 -0
- package/build/cli/theme/builtin/default-dark.js +143 -0
- package/build/cli/theme/builtin/default-dark.js.map +1 -0
- package/build/cli/theme/builtin/no-color.d.ts +7 -0
- package/build/cli/theme/builtin/tokyonight-dark.d.ts +7 -0
- package/build/cli/theme/semantic-colors.d.ts +2 -0
- package/build/cli/theme/semantic-tokens.d.ts +42 -0
- package/build/cli/theme/theme.d.ts +107 -0
- package/build/cli/tmp.d.ts +1 -0
- package/build/cli/utils/cache.d.ts +21 -0
- package/build/cli/utils/cache.js +56 -0
- package/build/cli/utils/cache.js.map +1 -0
- package/build/cli/utils/debugLogger.js +5 -5
- package/build/cli/utils/debugLogger.js.map +1 -1
- package/build/config.d.ts +30 -0
- package/build/config.js +1 -1
- package/build/config.js.map +1 -1
- package/build/db.d.ts +1 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +4 -2
- package/build/index.js.map +1 -1
- package/build/server.d.ts +2 -0
- package/build/server.js +39 -0
- package/build/server.js.map +1 -0
- package/build/tools/create_document_with_properties/params.d.ts +2 -2
- package/build/tools/create_document_with_properties/params.js +33 -0
- package/build/tools/create_document_with_properties/params.js.map +1 -0
- package/build/tools/generate_property/index.d.ts +34 -0
- package/build/tools/generate_property/params.d.ts +48 -0
- package/build/tools/generate_property/params.js +55 -0
- package/build/tools/generate_property/params.js.map +1 -0
- package/build/tools/index.js +13 -0
- package/build/tools/index.js.map +1 -0
- package/build/tools/organize_attachments/index.d.ts +32 -0
- package/build/tools/organize_attachments/params.d.ts +16 -16
- package/build/tools/organize_attachments/params.js +61 -0
- package/build/tools/organize_attachments/params.js.map +1 -0
- package/build/tools/organize_attachments/utils.d.ts +22 -0
- package/build/tools/organize_attachments/utils.js +66 -0
- package/build/tools/organize_attachments/utils.js.map +1 -0
- package/build/tools/vault/index.d.ts +50 -0
- package/build/tools/vault/metrics.d.ts +25 -0
- package/build/tools/vault/metrics.js +130 -0
- package/build/tools/vault/metrics.js.map +1 -0
- package/build/tools/vault/params.d.ts +12 -12
- package/build/tools/vault/params.js +148 -0
- package/build/tools/vault/params.js.map +1 -0
- package/build/tools/vault/types/collect_context.d.ts +249 -249
- package/build/tools/vault/types/collect_context.js +103 -0
- package/build/tools/vault/types/collect_context.js.map +1 -0
- package/build/tools/vault/types/list_all.d.ts +14 -14
- package/build/tools/vault/types/list_all.js +53 -0
- package/build/tools/vault/types/list_all.js.map +1 -0
- package/build/tools/vault/types/read_specific.d.ts +18 -18
- package/build/tools/vault/types/read_specific.js +41 -0
- package/build/tools/vault/types/read_specific.js.map +1 -0
- package/build/tools/vault/types/search.d.ts +22 -22
- package/build/tools/vault/types/search.js +59 -0
- package/build/tools/vault/types/search.js.map +1 -0
- package/build/tools/vault/utils/actions/collect_context.d.ts +4 -0
- package/build/tools/vault/utils/actions/index_rag.d.ts +2 -0
- package/build/tools/vault/utils/actions/list_all.d.ts +4 -0
- package/build/tools/vault/utils/actions/load_memory.d.ts +4 -0
- package/build/tools/vault/utils/actions/read.d.ts +4 -0
- package/build/tools/vault/utils/actions/search.d.ts +4 -0
- package/build/tools/vault/utils/actions/search_semantic.d.ts +3 -0
- package/build/tools/vault/utils/actions/search_semantic.js +23 -6
- package/build/tools/vault/utils/actions/search_semantic.js.map +1 -1
- package/build/tools/vault/utils/actions/stats.d.ts +3 -0
- package/build/tools/vault/utils/constants.d.ts +2 -0
- package/build/tools/vault/utils/constants.js +3 -0
- package/build/tools/vault/utils/constants.js.map +1 -0
- package/build/tools/vault/utils/document.d.ts +35 -0
- package/build/tools/vault/utils/shared.d.ts +29 -0
- package/build/tools/vault/utils/shared.js +75 -0
- package/build/tools/vault/utils/shared.js.map +1 -0
- package/build/tools/vault/utils.d.ts +8 -0
- package/build/tools/vault/utils.js +9 -0
- package/build/tools/vault/utils.js.map +1 -0
- package/build/tools/write_property/params.d.ts +60 -0
- package/build/tools/write_property/params.js +52 -0
- package/build/tools/write_property/params.js.map +1 -0
- package/build/utils/LLMClient.d.ts +1 -3
- package/build/utils/LLMClient.js +18 -4
- package/build/utils/LLMClient.js.map +1 -1
- package/build/utils/RerankerClient.d.ts +38 -4
- package/build/utils/RerankerClient.js +2 -1
- package/build/utils/RerankerClient.js.map +1 -1
- package/build/utils/VaultWatcher.js +35 -28
- package/build/utils/VaultWatcher.js.map +1 -1
- package/build/utils/processor/types.d.ts +2 -2
- package/build/utils/processor/types.js +21 -0
- package/build/utils/processor/types.js.map +1 -0
- package/build/utils/semaphore.d.ts +7 -0
- package/build/utils/semaphore.js +26 -0
- package/build/utils/semaphore.js.map +1 -0
- package/package.json +4 -2
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { compressionModeSchema, responseTypeSchema } from "../params.js";
|
|
3
|
+
export const collectContextScopeSchema = z.enum(["topic", "all"]);
|
|
4
|
+
export const collectContextMemoryModeSchema = z.enum([
|
|
5
|
+
"response_only",
|
|
6
|
+
"vault_note",
|
|
7
|
+
"both",
|
|
8
|
+
]);
|
|
9
|
+
export const collectContextRelevanceSchema = z.enum(["high", "medium", "low"]);
|
|
10
|
+
export const collectContextTokenV1Schema = z.object({
|
|
11
|
+
v: z.literal(1),
|
|
12
|
+
cursor: z.number().int().min(0),
|
|
13
|
+
scope: collectContextScopeSchema,
|
|
14
|
+
topic: z.string().nullable(),
|
|
15
|
+
maxDocs: z.number().int().min(1),
|
|
16
|
+
maxCharsPerDoc: z.number().int().min(200),
|
|
17
|
+
memoryMode: collectContextMemoryModeSchema,
|
|
18
|
+
});
|
|
19
|
+
export const collectContextDocumentSchema = z.object({
|
|
20
|
+
filename: z.string(),
|
|
21
|
+
fullPath: z.string(),
|
|
22
|
+
title: z.string(),
|
|
23
|
+
tags: z.array(z.string()),
|
|
24
|
+
doc_hash: z.string(),
|
|
25
|
+
summary: z.string(),
|
|
26
|
+
excerpt: z.string(),
|
|
27
|
+
evidence_snippets: z.array(z.string()),
|
|
28
|
+
relevance: collectContextRelevanceSchema,
|
|
29
|
+
stats: z.object({
|
|
30
|
+
contentLength: z.number().int().nonnegative(),
|
|
31
|
+
wordCount: z.number().int().nonnegative(),
|
|
32
|
+
hasContent: z.boolean(),
|
|
33
|
+
}),
|
|
34
|
+
backlinks_count: z.number().int().nonnegative(),
|
|
35
|
+
truncated: z.boolean(),
|
|
36
|
+
});
|
|
37
|
+
export const collectContextMemoryPacketSchema = z.object({
|
|
38
|
+
topicSummary: z.string(),
|
|
39
|
+
keyFacts: z.array(z.string()),
|
|
40
|
+
experienceBullets: z.array(z.string()),
|
|
41
|
+
sourceRefs: z.array(z.object({
|
|
42
|
+
filePath: z.string(),
|
|
43
|
+
title: z.string(),
|
|
44
|
+
relevance: collectContextRelevanceSchema,
|
|
45
|
+
evidenceSnippets: z.array(z.string()),
|
|
46
|
+
})),
|
|
47
|
+
openQuestions: z.array(z.string()),
|
|
48
|
+
confidence: z.number().min(0).max(1),
|
|
49
|
+
});
|
|
50
|
+
export const collectContextPayloadSchema = z.object({
|
|
51
|
+
action: z.literal("collect_context"),
|
|
52
|
+
scope: collectContextScopeSchema,
|
|
53
|
+
topic: z.string().nullable(),
|
|
54
|
+
matched_total: z.number().int().nonnegative(),
|
|
55
|
+
total_in_vault: z.number().int().nonnegative(),
|
|
56
|
+
documents: z.array(collectContextDocumentSchema),
|
|
57
|
+
memory_packet: collectContextMemoryPacketSchema,
|
|
58
|
+
memory_mode: collectContextMemoryModeSchema,
|
|
59
|
+
memory_write: z.object({
|
|
60
|
+
requested: z.boolean(),
|
|
61
|
+
status: z.enum(["not_requested", "written", "failed"]),
|
|
62
|
+
note_path: z.string().optional(),
|
|
63
|
+
generated_at: z.string().optional(),
|
|
64
|
+
source_hash: z.string().optional(),
|
|
65
|
+
reason: z.string().optional(),
|
|
66
|
+
}),
|
|
67
|
+
cache: z
|
|
68
|
+
.object({
|
|
69
|
+
key: z.string(),
|
|
70
|
+
hit: z.boolean(),
|
|
71
|
+
schema_version: z.string(),
|
|
72
|
+
topic: z.string().nullable(),
|
|
73
|
+
doc_hash: z.string(),
|
|
74
|
+
mode: collectContextMemoryModeSchema,
|
|
75
|
+
})
|
|
76
|
+
.optional(),
|
|
77
|
+
batch: z.object({
|
|
78
|
+
start_cursor: z.number().int().nonnegative(),
|
|
79
|
+
processed_docs: z.number().int().nonnegative(),
|
|
80
|
+
consumed_candidates: z.number().int().nonnegative(),
|
|
81
|
+
max_docs: z.number().int().positive(),
|
|
82
|
+
max_chars_per_doc: z.number().int().min(200),
|
|
83
|
+
has_more: z.boolean(),
|
|
84
|
+
continuation_token: z.string().nullable(),
|
|
85
|
+
}),
|
|
86
|
+
});
|
|
87
|
+
export const collectContextCompressionSchema = z.object({
|
|
88
|
+
mode: compressionModeSchema,
|
|
89
|
+
source_chars: z.number().int().nonnegative(),
|
|
90
|
+
output_chars: z.number().int().nonnegative(),
|
|
91
|
+
estimated_tokens: z.number().int().nonnegative(),
|
|
92
|
+
max_output_chars: z.number().int().positive().nullable(),
|
|
93
|
+
truncated: z.boolean(),
|
|
94
|
+
expand_hint: z.string(),
|
|
95
|
+
});
|
|
96
|
+
export const collectContextResponseDataSchema = collectContextPayloadSchema.extend({
|
|
97
|
+
compression: collectContextCompressionSchema,
|
|
98
|
+
});
|
|
99
|
+
export const collectContextResponseSchema = z.object({
|
|
100
|
+
type: responseTypeSchema,
|
|
101
|
+
text: collectContextResponseDataSchema,
|
|
102
|
+
});
|
|
103
|
+
//# sourceMappingURL=collect_context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"collect_context.js","sourceRoot":"","sources":["../../../../src/tools/vault/types/collect_context.ts"],"names":[],"mappings":"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"}
|
|
@@ -36,10 +36,10 @@ declare const documentSchema: z.ZodObject<{
|
|
|
36
36
|
}>;
|
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
|
38
38
|
filename: string;
|
|
39
|
-
fullPath: string;
|
|
40
39
|
stats: {
|
|
41
40
|
contentLength: number;
|
|
42
41
|
};
|
|
42
|
+
fullPath: string;
|
|
43
43
|
metadata: {
|
|
44
44
|
title: string;
|
|
45
45
|
date?: string | Date | undefined;
|
|
@@ -51,10 +51,10 @@ declare const documentSchema: z.ZodObject<{
|
|
|
51
51
|
};
|
|
52
52
|
}, {
|
|
53
53
|
filename: string;
|
|
54
|
-
fullPath: string;
|
|
55
54
|
stats: {
|
|
56
55
|
contentLength: number;
|
|
57
56
|
};
|
|
57
|
+
fullPath: string;
|
|
58
58
|
metadata: {
|
|
59
59
|
title: string;
|
|
60
60
|
date?: string | Date | undefined;
|
|
@@ -80,12 +80,12 @@ declare const aiInstructionsSchema: z.ZodObject<{
|
|
|
80
80
|
usage: z.ZodString;
|
|
81
81
|
note: z.ZodString;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
|
-
usage: string;
|
|
84
83
|
purpose: string;
|
|
84
|
+
usage: string;
|
|
85
85
|
note: string;
|
|
86
86
|
}, {
|
|
87
|
-
usage: string;
|
|
88
87
|
purpose: string;
|
|
88
|
+
usage: string;
|
|
89
89
|
note: string;
|
|
90
90
|
}>;
|
|
91
91
|
export declare const listAllDocumentsDataSchema: z.ZodObject<{
|
|
@@ -136,10 +136,10 @@ export declare const listAllDocumentsDataSchema: z.ZodObject<{
|
|
|
136
136
|
}>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
138
|
filename: string;
|
|
139
|
-
fullPath: string;
|
|
140
139
|
stats: {
|
|
141
140
|
contentLength: number;
|
|
142
141
|
};
|
|
142
|
+
fullPath: string;
|
|
143
143
|
metadata: {
|
|
144
144
|
title: string;
|
|
145
145
|
date?: string | Date | undefined;
|
|
@@ -151,10 +151,10 @@ export declare const listAllDocumentsDataSchema: z.ZodObject<{
|
|
|
151
151
|
};
|
|
152
152
|
}, {
|
|
153
153
|
filename: string;
|
|
154
|
-
fullPath: string;
|
|
155
154
|
stats: {
|
|
156
155
|
contentLength: number;
|
|
157
156
|
};
|
|
157
|
+
fullPath: string;
|
|
158
158
|
metadata: {
|
|
159
159
|
title: string;
|
|
160
160
|
date?: string | Date | undefined;
|
|
@@ -168,10 +168,10 @@ export declare const listAllDocumentsDataSchema: z.ZodObject<{
|
|
|
168
168
|
}, "strip", z.ZodTypeAny, {
|
|
169
169
|
documents: {
|
|
170
170
|
filename: string;
|
|
171
|
-
fullPath: string;
|
|
172
171
|
stats: {
|
|
173
172
|
contentLength: number;
|
|
174
173
|
};
|
|
174
|
+
fullPath: string;
|
|
175
175
|
metadata: {
|
|
176
176
|
title: string;
|
|
177
177
|
date?: string | Date | undefined;
|
|
@@ -189,10 +189,10 @@ export declare const listAllDocumentsDataSchema: z.ZodObject<{
|
|
|
189
189
|
}, {
|
|
190
190
|
documents: {
|
|
191
191
|
filename: string;
|
|
192
|
-
fullPath: string;
|
|
193
192
|
stats: {
|
|
194
193
|
contentLength: number;
|
|
195
194
|
};
|
|
195
|
+
fullPath: string;
|
|
196
196
|
metadata: {
|
|
197
197
|
title: string;
|
|
198
198
|
date?: string | Date | undefined;
|
|
@@ -258,10 +258,10 @@ export declare const listAllDocumentsResponseSchema: z.ZodObject<{
|
|
|
258
258
|
}>;
|
|
259
259
|
}, "strip", z.ZodTypeAny, {
|
|
260
260
|
filename: string;
|
|
261
|
-
fullPath: string;
|
|
262
261
|
stats: {
|
|
263
262
|
contentLength: number;
|
|
264
263
|
};
|
|
264
|
+
fullPath: string;
|
|
265
265
|
metadata: {
|
|
266
266
|
title: string;
|
|
267
267
|
date?: string | Date | undefined;
|
|
@@ -273,10 +273,10 @@ export declare const listAllDocumentsResponseSchema: z.ZodObject<{
|
|
|
273
273
|
};
|
|
274
274
|
}, {
|
|
275
275
|
filename: string;
|
|
276
|
-
fullPath: string;
|
|
277
276
|
stats: {
|
|
278
277
|
contentLength: number;
|
|
279
278
|
};
|
|
279
|
+
fullPath: string;
|
|
280
280
|
metadata: {
|
|
281
281
|
title: string;
|
|
282
282
|
date?: string | Date | undefined;
|
|
@@ -290,10 +290,10 @@ export declare const listAllDocumentsResponseSchema: z.ZodObject<{
|
|
|
290
290
|
}, "strip", z.ZodTypeAny, {
|
|
291
291
|
documents: {
|
|
292
292
|
filename: string;
|
|
293
|
-
fullPath: string;
|
|
294
293
|
stats: {
|
|
295
294
|
contentLength: number;
|
|
296
295
|
};
|
|
296
|
+
fullPath: string;
|
|
297
297
|
metadata: {
|
|
298
298
|
title: string;
|
|
299
299
|
date?: string | Date | undefined;
|
|
@@ -311,10 +311,10 @@ export declare const listAllDocumentsResponseSchema: z.ZodObject<{
|
|
|
311
311
|
}, {
|
|
312
312
|
documents: {
|
|
313
313
|
filename: string;
|
|
314
|
-
fullPath: string;
|
|
315
314
|
stats: {
|
|
316
315
|
contentLength: number;
|
|
317
316
|
};
|
|
317
|
+
fullPath: string;
|
|
318
318
|
metadata: {
|
|
319
319
|
title: string;
|
|
320
320
|
date?: string | Date | undefined;
|
|
@@ -335,10 +335,10 @@ export declare const listAllDocumentsResponseSchema: z.ZodObject<{
|
|
|
335
335
|
text: {
|
|
336
336
|
documents: {
|
|
337
337
|
filename: string;
|
|
338
|
-
fullPath: string;
|
|
339
338
|
stats: {
|
|
340
339
|
contentLength: number;
|
|
341
340
|
};
|
|
341
|
+
fullPath: string;
|
|
342
342
|
metadata: {
|
|
343
343
|
title: string;
|
|
344
344
|
date?: string | Date | undefined;
|
|
@@ -359,10 +359,10 @@ export declare const listAllDocumentsResponseSchema: z.ZodObject<{
|
|
|
359
359
|
text: {
|
|
360
360
|
documents: {
|
|
361
361
|
filename: string;
|
|
362
|
-
fullPath: string;
|
|
363
362
|
stats: {
|
|
364
363
|
contentLength: number;
|
|
365
364
|
};
|
|
365
|
+
fullPath: string;
|
|
366
366
|
metadata: {
|
|
367
367
|
title: string;
|
|
368
368
|
date?: string | Date | undefined;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { FrontMatterSchema } from "../../../utils/processor/types.js";
|
|
3
|
+
import { responseTypeSchema } from "../params.js";
|
|
4
|
+
// import { metadataSchema } from '../params.js';
|
|
5
|
+
// 실제 응답 구조에 맞춘 스키마
|
|
6
|
+
const metadataSchema = FrontMatterSchema;
|
|
7
|
+
const documentStatsSchema = z
|
|
8
|
+
.object({
|
|
9
|
+
contentLength: z
|
|
10
|
+
.number()
|
|
11
|
+
.describe("Total number of characters in the content"),
|
|
12
|
+
})
|
|
13
|
+
.describe("Document statistics");
|
|
14
|
+
const documentSchema = z
|
|
15
|
+
.object({
|
|
16
|
+
filename: z.string().describe("The filename of the document"),
|
|
17
|
+
fullPath: z.string().describe("The full path to the file in the vault"),
|
|
18
|
+
metadata: metadataSchema,
|
|
19
|
+
stats: documentStatsSchema,
|
|
20
|
+
})
|
|
21
|
+
.describe("Document information");
|
|
22
|
+
const vaultOverviewSchema = z
|
|
23
|
+
.object({
|
|
24
|
+
total_documents: z
|
|
25
|
+
.number()
|
|
26
|
+
.describe("Total number of documents in the vault"),
|
|
27
|
+
showing: z.number().describe("Number of documents being displayed"),
|
|
28
|
+
})
|
|
29
|
+
.describe("Vault overview statistics");
|
|
30
|
+
const aiInstructionsSchema = z
|
|
31
|
+
.object({
|
|
32
|
+
purpose: z.string().describe("Purpose of the response"),
|
|
33
|
+
usage: z.string().describe("How to use the response"),
|
|
34
|
+
note: z.string().describe("Additional notes"),
|
|
35
|
+
})
|
|
36
|
+
.describe("AI instructions for using the response");
|
|
37
|
+
// 실제 listAllDocuments 응답 구조
|
|
38
|
+
export const listAllDocumentsDataSchema = z
|
|
39
|
+
.object({
|
|
40
|
+
vault_overview: vaultOverviewSchema,
|
|
41
|
+
documents: z
|
|
42
|
+
.array(documentSchema)
|
|
43
|
+
.describe("List of all documents in the vault"),
|
|
44
|
+
})
|
|
45
|
+
.describe("Complete response data for listing all documents");
|
|
46
|
+
// list all documents response schema - 실제 MCP 응답 구조에 맞춤
|
|
47
|
+
export const listAllDocumentsResponseSchema = z
|
|
48
|
+
.object({
|
|
49
|
+
type: responseTypeSchema,
|
|
50
|
+
text: listAllDocumentsDataSchema,
|
|
51
|
+
})
|
|
52
|
+
.describe("Response schema for listing all documents in the Obsidian vault");
|
|
53
|
+
//# sourceMappingURL=list_all.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list_all.js","sourceRoot":"","sources":["../../../../src/tools/vault/types/list_all.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AACtE,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAElD,iDAAiD;AAEjD,mBAAmB;AACnB,MAAM,cAAc,GAAG,iBAAiB,CAAC;AAEzC,MAAM,mBAAmB,GAAG,CAAC;KAC3B,MAAM,CAAC;IACP,aAAa,EAAE,CAAC;SACd,MAAM,EAAE;SACR,QAAQ,CAAC,2CAA2C,CAAC;CACvD,CAAC;KACD,QAAQ,CAAC,qBAAqB,CAAC,CAAC;AAElC,MAAM,cAAc,GAAG,CAAC;KACtB,MAAM,CAAC;IACP,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;IAC7D,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC;IACvE,QAAQ,EAAE,cAAc;IACxB,KAAK,EAAE,mBAAmB;CAC1B,CAAC;KACD,QAAQ,CAAC,sBAAsB,CAAC,CAAC;AAEnC,MAAM,mBAAmB,GAAG,CAAC;KAC3B,MAAM,CAAC;IACP,eAAe,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,wCAAwC,CAAC;IACpD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC;CACnE,CAAC;KACD,QAAQ,CAAC,2BAA2B,CAAC,CAAC;AAExC,MAAM,oBAAoB,GAAG,CAAC;KAC5B,MAAM,CAAC;IACP,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IACvD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IACrD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;CAC7C,CAAC;KACD,QAAQ,CAAC,wCAAwC,CAAC,CAAC;AAErD,4BAA4B;AAC5B,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC;KACzC,MAAM,CAAC;IACP,cAAc,EAAE,mBAAmB;IACnC,SAAS,EAAE,CAAC;SACV,KAAK,CAAC,cAAc,CAAC;SACrB,QAAQ,CAAC,oCAAoC,CAAC;CAChD,CAAC;KACD,QAAQ,CAAC,kDAAkD,CAAC,CAAC;AAE/D,wDAAwD;AACxD,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC;KAC7C,MAAM,CAAC;IACP,IAAI,EAAE,kBAAkB;IACxB,IAAI,EAAE,0BAA0B;CAChC,CAAC;KACD,QAAQ,CAAC,iEAAiE,CAAC,CAAC"}
|
|
@@ -62,6 +62,7 @@ export declare const readSpecificFileDocumentData: z.ZodObject<{
|
|
|
62
62
|
}>, "many">>;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
64
|
content: string;
|
|
65
|
+
filePath: string;
|
|
65
66
|
frontmatter: {
|
|
66
67
|
title: string;
|
|
67
68
|
date?: string | Date | undefined;
|
|
@@ -72,7 +73,8 @@ export declare const readSpecificFileDocumentData: z.ZodObject<{
|
|
|
72
73
|
completed?: boolean | undefined;
|
|
73
74
|
};
|
|
74
75
|
contentLength: number;
|
|
75
|
-
|
|
76
|
+
imageLinks: string[];
|
|
77
|
+
documentLinks: string[];
|
|
76
78
|
stats: {
|
|
77
79
|
contentLength: number;
|
|
78
80
|
characterCount: number;
|
|
@@ -80,8 +82,6 @@ export declare const readSpecificFileDocumentData: z.ZodObject<{
|
|
|
80
82
|
hasContent: boolean;
|
|
81
83
|
lineCount: number;
|
|
82
84
|
};
|
|
83
|
-
imageLinks: string[];
|
|
84
|
-
documentLinks: string[];
|
|
85
85
|
filename?: string | undefined;
|
|
86
86
|
backlinks?: {
|
|
87
87
|
title: string;
|
|
@@ -89,6 +89,7 @@ export declare const readSpecificFileDocumentData: z.ZodObject<{
|
|
|
89
89
|
}[] | undefined;
|
|
90
90
|
}, {
|
|
91
91
|
content: string;
|
|
92
|
+
filePath: string;
|
|
92
93
|
frontmatter: {
|
|
93
94
|
title: string;
|
|
94
95
|
date?: string | Date | undefined;
|
|
@@ -99,7 +100,8 @@ export declare const readSpecificFileDocumentData: z.ZodObject<{
|
|
|
99
100
|
completed?: boolean | undefined;
|
|
100
101
|
};
|
|
101
102
|
contentLength: number;
|
|
102
|
-
|
|
103
|
+
imageLinks: string[];
|
|
104
|
+
documentLinks: string[];
|
|
103
105
|
stats: {
|
|
104
106
|
contentLength: number;
|
|
105
107
|
characterCount: number;
|
|
@@ -107,8 +109,6 @@ export declare const readSpecificFileDocumentData: z.ZodObject<{
|
|
|
107
109
|
hasContent: boolean;
|
|
108
110
|
lineCount: number;
|
|
109
111
|
};
|
|
110
|
-
imageLinks: string[];
|
|
111
|
-
documentLinks: string[];
|
|
112
112
|
filename?: string | undefined;
|
|
113
113
|
backlinks?: {
|
|
114
114
|
title: string;
|
|
@@ -180,6 +180,7 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
180
180
|
}>, "many">>;
|
|
181
181
|
}, "strip", z.ZodTypeAny, {
|
|
182
182
|
content: string;
|
|
183
|
+
filePath: string;
|
|
183
184
|
frontmatter: {
|
|
184
185
|
title: string;
|
|
185
186
|
date?: string | Date | undefined;
|
|
@@ -190,7 +191,8 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
190
191
|
completed?: boolean | undefined;
|
|
191
192
|
};
|
|
192
193
|
contentLength: number;
|
|
193
|
-
|
|
194
|
+
imageLinks: string[];
|
|
195
|
+
documentLinks: string[];
|
|
194
196
|
stats: {
|
|
195
197
|
contentLength: number;
|
|
196
198
|
characterCount: number;
|
|
@@ -198,8 +200,6 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
198
200
|
hasContent: boolean;
|
|
199
201
|
lineCount: number;
|
|
200
202
|
};
|
|
201
|
-
imageLinks: string[];
|
|
202
|
-
documentLinks: string[];
|
|
203
203
|
filename?: string | undefined;
|
|
204
204
|
backlinks?: {
|
|
205
205
|
title: string;
|
|
@@ -207,6 +207,7 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
207
207
|
}[] | undefined;
|
|
208
208
|
}, {
|
|
209
209
|
content: string;
|
|
210
|
+
filePath: string;
|
|
210
211
|
frontmatter: {
|
|
211
212
|
title: string;
|
|
212
213
|
date?: string | Date | undefined;
|
|
@@ -217,7 +218,8 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
217
218
|
completed?: boolean | undefined;
|
|
218
219
|
};
|
|
219
220
|
contentLength: number;
|
|
220
|
-
|
|
221
|
+
imageLinks: string[];
|
|
222
|
+
documentLinks: string[];
|
|
221
223
|
stats: {
|
|
222
224
|
contentLength: number;
|
|
223
225
|
characterCount: number;
|
|
@@ -225,8 +227,6 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
225
227
|
hasContent: boolean;
|
|
226
228
|
lineCount: number;
|
|
227
229
|
};
|
|
228
|
-
imageLinks: string[];
|
|
229
|
-
documentLinks: string[];
|
|
230
230
|
filename?: string | undefined;
|
|
231
231
|
backlinks?: {
|
|
232
232
|
title: string;
|
|
@@ -237,6 +237,7 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
237
237
|
type: "text" | "image" | "audio" | "resource_link" | "resource";
|
|
238
238
|
text: {
|
|
239
239
|
content: string;
|
|
240
|
+
filePath: string;
|
|
240
241
|
frontmatter: {
|
|
241
242
|
title: string;
|
|
242
243
|
date?: string | Date | undefined;
|
|
@@ -247,7 +248,8 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
247
248
|
completed?: boolean | undefined;
|
|
248
249
|
};
|
|
249
250
|
contentLength: number;
|
|
250
|
-
|
|
251
|
+
imageLinks: string[];
|
|
252
|
+
documentLinks: string[];
|
|
251
253
|
stats: {
|
|
252
254
|
contentLength: number;
|
|
253
255
|
characterCount: number;
|
|
@@ -255,8 +257,6 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
255
257
|
hasContent: boolean;
|
|
256
258
|
lineCount: number;
|
|
257
259
|
};
|
|
258
|
-
imageLinks: string[];
|
|
259
|
-
documentLinks: string[];
|
|
260
260
|
filename?: string | undefined;
|
|
261
261
|
backlinks?: {
|
|
262
262
|
title: string;
|
|
@@ -267,6 +267,7 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
267
267
|
type: "text" | "image" | "audio" | "resource_link" | "resource";
|
|
268
268
|
text: {
|
|
269
269
|
content: string;
|
|
270
|
+
filePath: string;
|
|
270
271
|
frontmatter: {
|
|
271
272
|
title: string;
|
|
272
273
|
date?: string | Date | undefined;
|
|
@@ -277,7 +278,8 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
277
278
|
completed?: boolean | undefined;
|
|
278
279
|
};
|
|
279
280
|
contentLength: number;
|
|
280
|
-
|
|
281
|
+
imageLinks: string[];
|
|
282
|
+
documentLinks: string[];
|
|
281
283
|
stats: {
|
|
282
284
|
contentLength: number;
|
|
283
285
|
characterCount: number;
|
|
@@ -285,8 +287,6 @@ export declare const readSpecificFileResponseSchema: z.ZodObject<{
|
|
|
285
287
|
hasContent: boolean;
|
|
286
288
|
lineCount: number;
|
|
287
289
|
};
|
|
288
|
-
imageLinks: string[];
|
|
289
|
-
documentLinks: string[];
|
|
290
290
|
filename?: string | undefined;
|
|
291
291
|
backlinks?: {
|
|
292
292
|
title: string;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { FrontMatterSchema } from "../../../utils/processor/types.js";
|
|
3
|
+
import { responseTypeSchema } from "../params.js";
|
|
4
|
+
const statsSchema = z
|
|
5
|
+
.object({
|
|
6
|
+
wordCount: z.number().describe("Total number of words in the content"),
|
|
7
|
+
lineCount: z.number().describe("Total number of lines in the content"),
|
|
8
|
+
contentLength: z
|
|
9
|
+
.number()
|
|
10
|
+
.describe("Total number of characters in the content from index"),
|
|
11
|
+
hasContent: z.boolean().describe("Whether the document has any content"),
|
|
12
|
+
characterCount: z
|
|
13
|
+
.number()
|
|
14
|
+
.describe("Total number of characters in the content"),
|
|
15
|
+
})
|
|
16
|
+
.describe("Basic statistics about the document content");
|
|
17
|
+
const backlinkSchema = z.object({
|
|
18
|
+
filePath: z.string(),
|
|
19
|
+
title: z.string(),
|
|
20
|
+
});
|
|
21
|
+
export const readSpecificFileDocumentData = z
|
|
22
|
+
.object({
|
|
23
|
+
filePath: z.string().describe("The full path to the file"),
|
|
24
|
+
filename: z
|
|
25
|
+
.string()
|
|
26
|
+
.describe("The name of the file that was read")
|
|
27
|
+
.optional(), // filename은 이제 최상위가 아닐 수 있음
|
|
28
|
+
frontmatter: FrontMatterSchema.describe("The frontmatter metadata of the file"),
|
|
29
|
+
contentLength: z.number(),
|
|
30
|
+
imageLinks: z.array(z.string()),
|
|
31
|
+
documentLinks: z.array(z.string()),
|
|
32
|
+
content: z.string().describe("The full text content of the file"),
|
|
33
|
+
stats: statsSchema,
|
|
34
|
+
backlinks: z.array(backlinkSchema).optional(),
|
|
35
|
+
})
|
|
36
|
+
.describe("Response schema for reading a specific file from the Obsidian vault");
|
|
37
|
+
export const readSpecificFileResponseSchema = z.object({
|
|
38
|
+
type: responseTypeSchema,
|
|
39
|
+
text: readSpecificFileDocumentData,
|
|
40
|
+
});
|
|
41
|
+
//# sourceMappingURL=read_specific.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"read_specific.js","sourceRoot":"","sources":["../../../../src/tools/vault/types/read_specific.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAElD,MAAM,WAAW,GAAG,CAAC;KACnB,MAAM,CAAC;IACP,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;IACtE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;IACtE,aAAa,EAAE,CAAC;SACd,MAAM,EAAE;SACR,QAAQ,CAAC,sDAAsD,CAAC;IAClE,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;IACxE,cAAc,EAAE,CAAC;SACf,MAAM,EAAE;SACR,QAAQ,CAAC,2CAA2C,CAAC;CACvD,CAAC;KACD,QAAQ,CAAC,6CAA6C,CAAC,CAAC;AAE1D,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC;KAC3C,MAAM,CAAC;IACP,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC;IAC1D,QAAQ,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,CAAC,oCAAoC,CAAC;SAC9C,QAAQ,EAAE,EAAE,4BAA4B;IAC1C,WAAW,EAAE,iBAAiB,CAAC,QAAQ,CACtC,sCAAsC,CACtC;IACD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC/B,aAAa,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAClC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IACjE,KAAK,EAAE,WAAW;IAClB,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAE;CAC7C,CAAC;KACD,QAAQ,CACR,qEAAqE,CACrE,CAAC;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CAAC;IACtD,IAAI,EAAE,kBAAkB;IACxB,IAAI,EAAE,4BAA4B;CAClC,CAAC,CAAC"}
|