@agent-native/core 0.114.6 → 0.114.7
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/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +6 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/cli/mcp-config-writers.ts +6 -4
- package/corpus/core/src/cli/mcp.ts +124 -0
- package/corpus/core/src/cli/skills-content/help.ts +4 -3
- package/corpus/core/src/cli/skills-content/index.ts +1 -0
- package/corpus/core/src/cli/skills-content/rewind-skill.ts +52 -0
- package/corpus/core/src/cli/skills.ts +115 -13
- package/corpus/core/src/mcp/screen-memory-stdio.ts +1360 -104
- package/corpus/core/src/mcp-client/index.ts +9 -0
- package/corpus/core/src/mcp-client/screen-memory-local.ts +847 -13
- package/corpus/templates/clips/actions/apply-rewind-extension.ts +195 -0
- package/corpus/templates/clips/actions/delete-agent-recording-if-unpromoted.ts +64 -0
- package/corpus/templates/clips/actions/get-rewind-extension-request.ts +22 -0
- package/corpus/templates/clips/actions/get-screen-memory-status.ts +18 -2
- package/corpus/templates/clips/actions/list-rewind-extension-requests.ts +52 -0
- package/corpus/templates/clips/actions/make-recording-private-for-rewind.ts +55 -0
- package/corpus/templates/clips/actions/query-screen-memory-context.ts +4 -4
- package/corpus/templates/clips/actions/request-rewind-extension.ts +81 -0
- package/corpus/templates/clips/actions/update-rewind-extension-request.ts +47 -0
- package/corpus/templates/clips/app/components/editor/editor-layout.tsx +25 -0
- package/corpus/templates/clips/app/components/editor/editor-toolbar.tsx +36 -0
- package/corpus/templates/clips/app/components/editor/rewind-extension-dialog.tsx +338 -0
- package/corpus/templates/clips/app/components/editor/stitch-manager.tsx +1 -16
- package/corpus/templates/clips/app/components/editor/timeline.tsx +26 -0
- package/corpus/templates/clips/app/i18n/en-US.ts +18 -0
- package/corpus/templates/clips/app/lib/ffmpeg-export.ts +19 -12
- package/corpus/templates/clips/app/lib/rewind-visibility.ts +31 -0
- package/corpus/templates/clips/app/lib/timestamp-mapping.ts +7 -0
- package/corpus/templates/clips/app/lib/upload-file-client.ts +17 -0
- package/corpus/templates/clips/changelog/2026-07-14-rewind-keeps-recent-screen-context-local-and-turns-it-into-clips.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-active-clips-keep-rewind-stable-and-settings-clear.md +12 -0
- package/corpus/templates/clips/changelog/2026-07-17-clicking-the-clips-icon-during-a-recording-now-opens-the-app.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-default-mic-now-uses-the-mac-default-and-transcription-shares-one-capture.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-full-screen-clips-finalize-even-when-screencapturekit-stop-hangs.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-normal-full-screen-clips-no-longer-stop-immediately-after-th.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-rewind-can-hand-one-bounded-private-clip-to-your-agent.md +12 -0
- package/corpus/templates/clips/changelog/2026-07-17-rewind-home-can-copy-a-local-agent-prompt.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-rewind-now-has-a-calm-home-status-focused-first-run-consent-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-rewind-settings-are-smaller-clearer-and-agent-first.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-the-full-clips-interface-stays-available-while-recording.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-18-rewind-organizes-recent-work-into-local-searchable-chapters.md +8 -0
- package/corpus/templates/clips/changelog/2026-07-18-searchable-rewind-chapters.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-19-rewind-backed-recordings-now-start-immediately-after-the-cou.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-20-rewind-can-set-up-your-local-agent-once-so-future-requests-w.md +6 -0
- package/corpus/templates/clips/desktop/package.json +1 -0
- package/corpus/templates/clips/desktop/scripts/sign-macos-local.ts +12 -1
- package/corpus/templates/clips/desktop/src/app.tsx +2498 -239
- package/corpus/templates/clips/desktop/src/components/ReadinessPanel.tsx +21 -1
- package/corpus/templates/clips/desktop/src/components/Switch.tsx +3 -0
- package/corpus/templates/clips/desktop/src/hooks/useMeetingTranscription.ts +156 -24
- package/corpus/templates/clips/desktop/src/lib/native-recording-warm.ts +6 -7
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +1763 -1160
- package/corpus/templates/clips/desktop/src/lib/rewind-agent-prompt.ts +9 -0
- package/corpus/templates/clips/desktop/src/lib/rewind-recording-start.ts +20 -0
- package/corpus/templates/clips/desktop/src/main.tsx +3 -0
- package/corpus/templates/clips/desktop/src/overlays/countdown.tsx +14 -14
- package/corpus/templates/clips/desktop/src/overlays/onboarding.tsx +4 -4
- package/corpus/templates/clips/desktop/src/overlays/preparing.tsx +13 -0
- package/corpus/templates/clips/desktop/src/overlays/toolbar.tsx +27 -2
- package/corpus/templates/clips/desktop/src/shared/config.ts +16 -0
- package/corpus/templates/clips/desktop/src/styles.css +956 -134
- package/corpus/templates/clips/desktop/src-tauri/Cargo.toml +5 -0
- package/corpus/templates/clips/desktop/src-tauri/build.rs +69 -1
- package/corpus/templates/clips/desktop/src-tauri/src/accessibility.rs +386 -12
- package/corpus/templates/clips/desktop/src-tauri/src/capture_audio_bus.rs +382 -0
- package/corpus/templates/clips/desktop/src-tauri/src/capture_graph.rs +777 -0
- package/corpus/templates/clips/desktop/src-tauri/src/clips/mod.rs +249 -22
- package/corpus/templates/clips/desktop/src-tauri/src/config.rs +148 -1
- package/corpus/templates/clips/desktop/src-tauri/src/lib.rs +58 -4
- package/corpus/templates/clips/desktop/src-tauri/src/logfile.rs +13 -1
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen/custom_capture.rs +1505 -51
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen/live_upload.rs +124 -0
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +1006 -95
- package/corpus/templates/clips/desktop/src-tauri/src/rewind_capture_suspension.rs +165 -0
- package/corpus/templates/clips/desktop/src-tauri/src/rewind_chapters.rs +2434 -0
- package/corpus/templates/clips/desktop/src-tauri/src/rewind_clip.rs +1650 -0
- package/corpus/templates/clips/desktop/src-tauri/src/rewind_egress.rs +643 -0
- package/corpus/templates/clips/desktop/src-tauri/src/rewind_local_ask.rs +803 -0
- package/corpus/templates/clips/desktop/src-tauri/src/rewind_meeting_history.rs +595 -0
- package/corpus/templates/clips/desktop/src-tauri/src/screen_memory.rs +2900 -91
- package/corpus/templates/clips/desktop/src-tauri/src/screen_memory_ocr.rs +360 -0
- package/corpus/templates/clips/desktop/src-tauri/src/screen_memory_transcript.rs +408 -0
- package/corpus/templates/clips/desktop/src-tauri/src/shortcuts.rs +114 -33
- package/corpus/templates/clips/desktop/src-tauri/src/state.rs +2 -2
- package/corpus/templates/clips/desktop/src-tauri/src/system_audio.rs +13 -3
- package/corpus/templates/clips/desktop/src-tauri/src/tray.rs +4 -1
- package/corpus/templates/clips/desktop/src-tauri/src/util.rs +7 -13
- package/corpus/templates/clips/desktop/src-tauri/src/whisper_speech.rs +198 -11
- package/corpus/templates/clips/desktop/src-tauri/tauri.alpha.conf.json +17 -0
- package/dist/cli/mcp-config-writers.d.ts +2 -2
- package/dist/cli/mcp-config-writers.d.ts.map +1 -1
- package/dist/cli/mcp-config-writers.js +6 -6
- package/dist/cli/mcp-config-writers.js.map +1 -1
- package/dist/cli/mcp.d.ts +14 -0
- package/dist/cli/mcp.d.ts.map +1 -1
- package/dist/cli/mcp.js +79 -0
- package/dist/cli/mcp.js.map +1 -1
- package/dist/cli/skills-content/help.d.ts +1 -1
- package/dist/cli/skills-content/help.d.ts.map +1 -1
- package/dist/cli/skills-content/help.js +4 -3
- package/dist/cli/skills-content/help.js.map +1 -1
- package/dist/cli/skills-content/index.d.ts +1 -0
- package/dist/cli/skills-content/index.d.ts.map +1 -1
- package/dist/cli/skills-content/index.js +1 -0
- package/dist/cli/skills-content/index.js.map +1 -1
- package/dist/cli/skills-content/rewind-skill.d.ts +2 -0
- package/dist/cli/skills-content/rewind-skill.d.ts.map +1 -0
- package/dist/cli/skills-content/rewind-skill.js +53 -0
- package/dist/cli/skills-content/rewind-skill.js.map +1 -0
- package/dist/cli/skills.d.ts +6 -0
- package/dist/cli/skills.d.ts.map +1 -1
- package/dist/cli/skills.js +90 -14
- package/dist/cli/skills.js.map +1 -1
- package/dist/mcp/screen-memory-stdio.d.ts +365 -0
- package/dist/mcp/screen-memory-stdio.d.ts.map +1 -1
- package/dist/mcp/screen-memory-stdio.js +1014 -91
- package/dist/mcp/screen-memory-stdio.js.map +1 -1
- package/dist/mcp-client/index.d.ts +1 -1
- package/dist/mcp-client/index.d.ts.map +1 -1
- package/dist/mcp-client/index.js +1 -1
- package/dist/mcp-client/index.js.map +1 -1
- package/dist/mcp-client/screen-memory-local.d.ts +90 -0
- package/dist/mcp-client/screen-memory-local.d.ts.map +1 -1
- package/dist/mcp-client/screen-memory-local.js +590 -12
- package/dist/mcp-client/screen-memory-local.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +1 -1
- package/dist/provider-api/actions/provider-api.d.ts +4 -4
- package/dist/resources/handlers.d.ts +1 -1
- package/package.json +1 -1
- package/src/cli/mcp-config-writers.ts +6 -4
- package/src/cli/mcp.ts +124 -0
- package/src/cli/skills-content/help.ts +4 -3
- package/src/cli/skills-content/index.ts +1 -0
- package/src/cli/skills-content/rewind-skill.ts +52 -0
- package/src/cli/skills.ts +115 -13
- package/src/mcp/screen-memory-stdio.ts +1360 -104
- package/src/mcp-client/index.ts +9 -0
- package/src/mcp-client/screen-memory-local.ts +847 -13
|
@@ -1,6 +1,371 @@
|
|
|
1
|
+
export interface ScreenMemoryChapter {
|
|
2
|
+
id: string;
|
|
3
|
+
/** In v2, chapter identity survives later semantic refinements. */
|
|
4
|
+
revision: number;
|
|
5
|
+
aliases: string[];
|
|
6
|
+
startedAt: string;
|
|
7
|
+
endedAt: string;
|
|
8
|
+
durationMs: number;
|
|
9
|
+
label: string;
|
|
10
|
+
summary: string;
|
|
11
|
+
keywords: string[];
|
|
12
|
+
accessibilitySummary: string;
|
|
13
|
+
accessibilityKeywords: string[];
|
|
14
|
+
confidence: number;
|
|
15
|
+
segmentRefs: Array<{
|
|
16
|
+
id: string;
|
|
17
|
+
startedAt: string;
|
|
18
|
+
endedAt: string;
|
|
19
|
+
}>;
|
|
20
|
+
sceneRefs: Array<{
|
|
21
|
+
id: string;
|
|
22
|
+
startedAt?: string;
|
|
23
|
+
endedAt?: string;
|
|
24
|
+
}>;
|
|
25
|
+
evidenceRefs: Array<{
|
|
26
|
+
sourceType: string;
|
|
27
|
+
sourceKind?: string;
|
|
28
|
+
segmentId?: string;
|
|
29
|
+
offsetMs?: number;
|
|
30
|
+
capturedAt?: string;
|
|
31
|
+
keywords?: string[];
|
|
32
|
+
confidence?: number;
|
|
33
|
+
}>;
|
|
34
|
+
contexts: Array<{
|
|
35
|
+
appName?: string;
|
|
36
|
+
windowTitle?: string;
|
|
37
|
+
bundleId?: string;
|
|
38
|
+
}>;
|
|
39
|
+
representativeMoments: Array<{
|
|
40
|
+
momentId: string;
|
|
41
|
+
capturedAt: string;
|
|
42
|
+
segmentId: string;
|
|
43
|
+
offsetMs: number;
|
|
44
|
+
reason: string;
|
|
45
|
+
}>;
|
|
46
|
+
representativeCoverage?: string | {
|
|
47
|
+
coveredScenes: number;
|
|
48
|
+
totalScenes: number;
|
|
49
|
+
truncated: boolean;
|
|
50
|
+
};
|
|
51
|
+
ambiguityReasons: string[];
|
|
52
|
+
indexState: "pending" | "partial" | "ready";
|
|
53
|
+
}
|
|
54
|
+
export interface ScreenMemoryChaptersDocument {
|
|
55
|
+
schemaVersion: 1 | 2;
|
|
56
|
+
generatedAt: string;
|
|
57
|
+
state: string;
|
|
58
|
+
coverage: unknown;
|
|
59
|
+
chapters: ScreenMemoryChapter[];
|
|
60
|
+
}
|
|
61
|
+
export interface ScreenMemoryFrameDecoder {
|
|
62
|
+
(segmentPath: string, offsetMs: number): Buffer;
|
|
63
|
+
}
|
|
1
64
|
export interface RunScreenMemoryMCPStdioOptions {
|
|
2
65
|
storeDir?: string;
|
|
3
66
|
env?: NodeJS.ProcessEnv;
|
|
67
|
+
/** Test seam; production uses the local ffmpeg executable. */
|
|
68
|
+
decodeFrame?: ScreenMemoryFrameDecoder;
|
|
4
69
|
}
|
|
70
|
+
/** Reads only the native, retention-bound chapter manifest; malformed rows never escape. */
|
|
71
|
+
export declare function readScreenMemoryChapters(storeDir: string): ScreenMemoryChaptersDocument | null;
|
|
72
|
+
type MatchProvenance = {
|
|
73
|
+
sourceType: string;
|
|
74
|
+
sourceKind?: string;
|
|
75
|
+
confidence?: number;
|
|
76
|
+
matchedTerms: string[];
|
|
77
|
+
};
|
|
78
|
+
export declare function searchScreenMemoryChapters(document: ScreenMemoryChaptersDocument, query: string, limit?: number, clientHint?: string): Array<ScreenMemoryChapter & {
|
|
79
|
+
score: number;
|
|
80
|
+
matchReasons: string[];
|
|
81
|
+
matchProvenance: MatchProvenance[];
|
|
82
|
+
}>;
|
|
83
|
+
export declare function projectScreenMemoryChapterCandidate(chapter: ReturnType<typeof searchScreenMemoryChapters>[number]): {
|
|
84
|
+
id: string;
|
|
85
|
+
revision: number;
|
|
86
|
+
aliases: string[];
|
|
87
|
+
startedAt: string;
|
|
88
|
+
endedAt: string;
|
|
89
|
+
durationMs: number;
|
|
90
|
+
label: string;
|
|
91
|
+
summary: string;
|
|
92
|
+
keywords: string[];
|
|
93
|
+
confidence: number;
|
|
94
|
+
sceneCount: number;
|
|
95
|
+
evidenceSources: string[];
|
|
96
|
+
contexts: {
|
|
97
|
+
appName?: string;
|
|
98
|
+
windowTitle?: string;
|
|
99
|
+
bundleId?: string;
|
|
100
|
+
}[];
|
|
101
|
+
representativeMoments: {
|
|
102
|
+
momentId: string;
|
|
103
|
+
capturedAt: string;
|
|
104
|
+
reason: string;
|
|
105
|
+
}[];
|
|
106
|
+
representativeCoverage: string | {
|
|
107
|
+
coveredScenes: number;
|
|
108
|
+
totalScenes: number;
|
|
109
|
+
truncated: boolean;
|
|
110
|
+
};
|
|
111
|
+
ambiguityReasons: string[];
|
|
112
|
+
indexState: "partial" | "pending" | "ready";
|
|
113
|
+
score: number;
|
|
114
|
+
matchReasons: string[];
|
|
115
|
+
matchProvenance: MatchProvenance[];
|
|
116
|
+
};
|
|
117
|
+
export declare function readScreenMemoryFrame(storeDir: string, timestamp: string, decoder?: ScreenMemoryFrameDecoder): {
|
|
118
|
+
timestamp: string;
|
|
119
|
+
segmentId: string;
|
|
120
|
+
image: {
|
|
121
|
+
type: "image";
|
|
122
|
+
data: string;
|
|
123
|
+
mimeType: string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
export declare function selectContactSheetTimestamps(startAt: string, endAt: string, count: number, representative?: string[]): string[];
|
|
127
|
+
export declare function contactSheetRangeIsValid(durationMs: number, usesChapterMoments: boolean): boolean;
|
|
128
|
+
export declare function redactCredentialText(value: string): string;
|
|
129
|
+
export declare function appendLocalEvidenceReceipt(storeDir: string, operation: string, evidence: Array<{
|
|
130
|
+
timestamp: string;
|
|
131
|
+
segmentId: string;
|
|
132
|
+
}>): void;
|
|
133
|
+
export declare function screenMemoryMcpToolDefinitions(): ({
|
|
134
|
+
name: string;
|
|
135
|
+
description: string;
|
|
136
|
+
inputSchema: {
|
|
137
|
+
type: string;
|
|
138
|
+
properties: {
|
|
139
|
+
query?: undefined;
|
|
140
|
+
minutes?: undefined;
|
|
141
|
+
limit?: undefined;
|
|
142
|
+
clientHint?: undefined;
|
|
143
|
+
timestamp?: undefined;
|
|
144
|
+
chapterId?: undefined;
|
|
145
|
+
count?: undefined;
|
|
146
|
+
startAt?: undefined;
|
|
147
|
+
endAt?: undefined;
|
|
148
|
+
reason?: undefined;
|
|
149
|
+
includeMicrophone?: undefined;
|
|
150
|
+
includeSystemAudio?: undefined;
|
|
151
|
+
requestId?: undefined;
|
|
152
|
+
};
|
|
153
|
+
required?: undefined;
|
|
154
|
+
};
|
|
155
|
+
} | {
|
|
156
|
+
name: string;
|
|
157
|
+
description: string;
|
|
158
|
+
inputSchema: {
|
|
159
|
+
type: string;
|
|
160
|
+
properties: {
|
|
161
|
+
query: {
|
|
162
|
+
type: string;
|
|
163
|
+
description: string;
|
|
164
|
+
};
|
|
165
|
+
minutes: {
|
|
166
|
+
type: string;
|
|
167
|
+
description: string;
|
|
168
|
+
};
|
|
169
|
+
limit: {
|
|
170
|
+
type: string;
|
|
171
|
+
description: string;
|
|
172
|
+
};
|
|
173
|
+
clientHint?: undefined;
|
|
174
|
+
timestamp?: undefined;
|
|
175
|
+
chapterId?: undefined;
|
|
176
|
+
count?: undefined;
|
|
177
|
+
startAt?: undefined;
|
|
178
|
+
endAt?: undefined;
|
|
179
|
+
reason?: undefined;
|
|
180
|
+
includeMicrophone?: undefined;
|
|
181
|
+
includeSystemAudio?: undefined;
|
|
182
|
+
requestId?: undefined;
|
|
183
|
+
};
|
|
184
|
+
required?: undefined;
|
|
185
|
+
};
|
|
186
|
+
} | {
|
|
187
|
+
name: string;
|
|
188
|
+
description: string;
|
|
189
|
+
inputSchema: {
|
|
190
|
+
type: string;
|
|
191
|
+
properties: {
|
|
192
|
+
minutes: {
|
|
193
|
+
type: string;
|
|
194
|
+
description: string;
|
|
195
|
+
};
|
|
196
|
+
query?: undefined;
|
|
197
|
+
limit?: undefined;
|
|
198
|
+
clientHint?: undefined;
|
|
199
|
+
timestamp?: undefined;
|
|
200
|
+
chapterId?: undefined;
|
|
201
|
+
count?: undefined;
|
|
202
|
+
startAt?: undefined;
|
|
203
|
+
endAt?: undefined;
|
|
204
|
+
reason?: undefined;
|
|
205
|
+
includeMicrophone?: undefined;
|
|
206
|
+
includeSystemAudio?: undefined;
|
|
207
|
+
requestId?: undefined;
|
|
208
|
+
};
|
|
209
|
+
required?: undefined;
|
|
210
|
+
};
|
|
211
|
+
} | {
|
|
212
|
+
name: string;
|
|
213
|
+
description: string;
|
|
214
|
+
inputSchema: {
|
|
215
|
+
type: string;
|
|
216
|
+
required: string[];
|
|
217
|
+
properties: {
|
|
218
|
+
query: {
|
|
219
|
+
type: string;
|
|
220
|
+
description: string;
|
|
221
|
+
};
|
|
222
|
+
minutes: {
|
|
223
|
+
type: string;
|
|
224
|
+
description: string;
|
|
225
|
+
};
|
|
226
|
+
limit: {
|
|
227
|
+
type: string;
|
|
228
|
+
description: string;
|
|
229
|
+
};
|
|
230
|
+
clientHint: {
|
|
231
|
+
type: string;
|
|
232
|
+
description: string;
|
|
233
|
+
};
|
|
234
|
+
timestamp?: undefined;
|
|
235
|
+
chapterId?: undefined;
|
|
236
|
+
count?: undefined;
|
|
237
|
+
startAt?: undefined;
|
|
238
|
+
endAt?: undefined;
|
|
239
|
+
reason?: undefined;
|
|
240
|
+
includeMicrophone?: undefined;
|
|
241
|
+
includeSystemAudio?: undefined;
|
|
242
|
+
requestId?: undefined;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
} | {
|
|
246
|
+
name: string;
|
|
247
|
+
description: string;
|
|
248
|
+
inputSchema: {
|
|
249
|
+
type: string;
|
|
250
|
+
required: string[];
|
|
251
|
+
properties: {
|
|
252
|
+
query?: undefined;
|
|
253
|
+
minutes?: undefined;
|
|
254
|
+
limit?: undefined;
|
|
255
|
+
clientHint?: undefined;
|
|
256
|
+
timestamp: {
|
|
257
|
+
type: string;
|
|
258
|
+
description: string;
|
|
259
|
+
};
|
|
260
|
+
reason: {
|
|
261
|
+
type: string;
|
|
262
|
+
description: string;
|
|
263
|
+
};
|
|
264
|
+
chapterId?: undefined;
|
|
265
|
+
count?: undefined;
|
|
266
|
+
startAt?: undefined;
|
|
267
|
+
endAt?: undefined;
|
|
268
|
+
includeMicrophone?: undefined;
|
|
269
|
+
includeSystemAudio?: undefined;
|
|
270
|
+
requestId?: undefined;
|
|
271
|
+
};
|
|
272
|
+
};
|
|
273
|
+
} | {
|
|
274
|
+
name: string;
|
|
275
|
+
description: string;
|
|
276
|
+
inputSchema: {
|
|
277
|
+
type: string;
|
|
278
|
+
properties: {
|
|
279
|
+
query?: undefined;
|
|
280
|
+
minutes?: undefined;
|
|
281
|
+
limit?: undefined;
|
|
282
|
+
clientHint?: undefined;
|
|
283
|
+
timestamp?: undefined;
|
|
284
|
+
chapterId: {
|
|
285
|
+
type: string;
|
|
286
|
+
};
|
|
287
|
+
startAt: {
|
|
288
|
+
type: string;
|
|
289
|
+
description?: undefined;
|
|
290
|
+
};
|
|
291
|
+
endAt: {
|
|
292
|
+
type: string;
|
|
293
|
+
description?: undefined;
|
|
294
|
+
};
|
|
295
|
+
count: {
|
|
296
|
+
type: string;
|
|
297
|
+
description: string;
|
|
298
|
+
};
|
|
299
|
+
reason: {
|
|
300
|
+
type: string;
|
|
301
|
+
description?: undefined;
|
|
302
|
+
};
|
|
303
|
+
includeMicrophone?: undefined;
|
|
304
|
+
includeSystemAudio?: undefined;
|
|
305
|
+
requestId?: undefined;
|
|
306
|
+
};
|
|
307
|
+
required?: undefined;
|
|
308
|
+
};
|
|
309
|
+
} | {
|
|
310
|
+
name: string;
|
|
311
|
+
description: string;
|
|
312
|
+
inputSchema: {
|
|
313
|
+
type: string;
|
|
314
|
+
required: string[];
|
|
315
|
+
properties: {
|
|
316
|
+
query?: undefined;
|
|
317
|
+
minutes?: undefined;
|
|
318
|
+
limit?: undefined;
|
|
319
|
+
clientHint?: undefined;
|
|
320
|
+
timestamp?: undefined;
|
|
321
|
+
chapterId?: undefined;
|
|
322
|
+
count?: undefined;
|
|
323
|
+
startAt: {
|
|
324
|
+
type: string;
|
|
325
|
+
description: string;
|
|
326
|
+
};
|
|
327
|
+
endAt: {
|
|
328
|
+
type: string;
|
|
329
|
+
description: string;
|
|
330
|
+
};
|
|
331
|
+
reason: {
|
|
332
|
+
type: string;
|
|
333
|
+
description: string;
|
|
334
|
+
};
|
|
335
|
+
includeMicrophone: {
|
|
336
|
+
type: string;
|
|
337
|
+
};
|
|
338
|
+
includeSystemAudio: {
|
|
339
|
+
type: string;
|
|
340
|
+
};
|
|
341
|
+
requestId?: undefined;
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
} | {
|
|
345
|
+
name: string;
|
|
346
|
+
description: string;
|
|
347
|
+
inputSchema: {
|
|
348
|
+
type: string;
|
|
349
|
+
required: string[];
|
|
350
|
+
properties: {
|
|
351
|
+
query?: undefined;
|
|
352
|
+
minutes?: undefined;
|
|
353
|
+
limit?: undefined;
|
|
354
|
+
clientHint?: undefined;
|
|
355
|
+
timestamp?: undefined;
|
|
356
|
+
chapterId?: undefined;
|
|
357
|
+
count?: undefined;
|
|
358
|
+
startAt?: undefined;
|
|
359
|
+
endAt?: undefined;
|
|
360
|
+
reason?: undefined;
|
|
361
|
+
includeMicrophone?: undefined;
|
|
362
|
+
includeSystemAudio?: undefined;
|
|
363
|
+
requestId: {
|
|
364
|
+
type: string;
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
})[];
|
|
5
369
|
export declare function runScreenMemoryMCPStdio(opts?: RunScreenMemoryMCPStdioOptions): Promise<void>;
|
|
370
|
+
export {};
|
|
6
371
|
//# sourceMappingURL=screen-memory-stdio.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"screen-memory-stdio.d.ts","sourceRoot":"","sources":["../../src/mcp/screen-memory-stdio.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"screen-memory-stdio.d.ts","sourceRoot":"","sources":["../../src/mcp/screen-memory-stdio.ts"],"names":[],"mappings":"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"}
|