forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool-manifest.json
More file actions
6422 lines (6422 loc) · 217 KB
/
Copy pathtool-manifest.json
File metadata and controls
6422 lines (6422 loc) · 217 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "get_work_context",
"label": "Get Work Context",
"description": "Primary tool for recent-work questions and locating a document, URL, page, or file. Call get_work_context before semantic_search or execute_sql for requests such as 'what was I doing in X?' or 'where was that doc?'. It returns durable handles and is historical context, not current visual evidence.",
"promptSnippet": "get_work_context - Identify recent work by document/URL/file before screen-history search",
"promptGuidelines": [
"Call get_work_context first for recent work/activity history and document, URL, page, or file location; do not start with semantic_search or execute_sql. It is not for direct current-screen questions.",
"Read visits[].handles and briefs[].handles first: they name the actual document, URL, or file. Open or read that source rather than describing a screenshot of it.",
"Make one call with the defaults before any broader screen discovery. screen_now and timeline are empty by default and are fallback evidence only.",
"Pass include_screen=true solely when the handles cannot answer the question or the question is visual; it costs a video-frame decode.",
"Its screen_now and timeline fields are historical unless this turn separately attached a live image.",
"For current visual detail, use capture_screen when approval is available rather than answering from this tool."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"minutes": {
"type": "number",
"description": "Minutes of recent activity to summarize (default 10, max 120)"
},
"include_screen": {
"type": "boolean",
"description": "Also return the recent screenshot timeline and a screenshot_id (default false). Only set this when visits/briefs handles cannot answer the question, or the question is visual."
}
},
"required": [],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "swiftTool",
"executorName": "chatToolExecutor"
},
"intendedForAgents": true,
"runtimePreconditions": [
"Requires local Rewind database; raw screenshot pixels still require separate approval."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true,
"condition": "screenContext"
},
"local-agent-api": {
"advertised": true
}
},
"surfaces": [
"desktop_chat"
],
"capabilityDoc": {
"title": "Get Work Context",
"summary": "Identify the documents, URLs, and files the user was recently working in.",
"bullets": [
"Call this before semantic_search or execute_sql for \"where was that doc\", \"what was I doing in X\", and other recent-work questions.",
"Returns visits[].handles and briefs[].handles — the durable address of each source. Open or read that source; do not describe a screenshot of it.",
"Screenshot timeline and screenshot_id are fallback evidence: pass include_screen=true only when no handle answers the question.",
"For the live screen use capture_screen; this tool is history, not current visual evidence."
]
}
},
{
"name": "execute_sql",
"label": "Execute SQL",
"description": "Run exact structured or quantitative queries on the user's local omi.db SQLite database: counts, date ranges, aggregates, and narrow record inspection. For recent-work questions such as 'what was I doing in X?' or locating a document, URL, page, or file, call get_work_context first and do not query screenshots.ocrText. The durable work index is context_visits(handlesJson) joined to context_buckets. Raw ocrText columns are refused; use substr(ocrText, 1, 200) only for an explicit bounded preview. Read-only in agent adapters.",
"promptSnippet": "execute_sql - Query exact structured local stats and aggregates (SELECT only)",
"promptGuidelines": [
"Use execute_sql for quantitative queries (counts, sums, date ranges, aggregations).",
"For recent work/activity or document/page/file location, call get_work_context before execute_sql and do not select raw screenshots.ocrText.",
"Use context_visits(handlesJson) joined to context_buckets for work aggregates; use semantic_search only for fuzzy screen content after get_work_context cannot answer."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "SQL query to execute"
},
"parameters": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional positional values bound to ? placeholders in query. Use this instead of interpolating values into SQL literals."
}
},
"required": [
"query"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "swiftTool",
"executorName": "chatToolExecutor"
},
"intendedForAgents": true,
"runtimePreconditions": [
"SELECT-only in ask-mode and local-agent API projections."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
},
"local-agent-api": {
"advertised": true
}
},
"surfaces": [
"desktop_chat"
],
"capabilityDoc": {
"title": "Execute SQL",
"summary": "Run exact structured or quantitative queries on the local omi.db database.",
"bullets": [
"Supports SELECT, INSERT, UPDATE, DELETE.",
"Use for counts, date ranges, aggregates, and narrow structured inspection. get_work_context owns recent-work and document/page/file location questions.",
"The durable work index is context_visits(handlesJson) joined to context_buckets; use it instead of screenshots for work aggregates or diagnostics.",
"Raw screenshots.ocrText columns are refused. Use a bounded substr(ocrText, 1, 200) preview only for explicit low-level OCR inspection.",
"Supports FTS5 MATCH queries for keyword search; see the schema footer for FTS tables and patterns.",
"SELECT queries auto-limit to 200 rows. UPDATE/DELETE require WHERE. DROP/ALTER/CREATE are blocked.",
"Prefer semantic_search for fuzzy screen-content questions after get_work_context cannot identify the source, and backend task tools for creating/updating tasks."
]
}
},
{
"name": "semantic_search",
"label": "Semantic Search",
"description": "Vector similarity search on screen content. Use for fuzzy/conceptual content only after get_work_context cannot identify the document, URL, or file; get_work_context owns recent-work and location questions.",
"promptSnippet": "semantic_search - Search screen history by meaning",
"promptGuidelines": [
"For recent work or document/page/file location, call get_work_context before semantic_search.",
"Use semantic_search instead of execute_sql only for fuzzy or conceptual screen-content questions that handles cannot answer."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Natural language search query"
},
"days": {
"type": "number",
"description": "Days to search back (default 7)"
},
"app_filter": {
"type": "string",
"description": "Filter to a specific app"
}
},
"required": [
"query"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "swiftTool",
"executorName": "chatToolExecutor"
},
"aliases": [
"search_screen_history"
],
"intendedForAgents": true,
"runtimePreconditions": [
"Requires local Rewind screen-history data."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
},
"local-agent-api": {
"advertised": true,
"adapterName": "search_screen_history",
"aliases": [
"semantic_search"
]
}
},
"surfaces": [
"desktop_chat"
],
"capabilityDoc": {
"title": "Semantic Search",
"summary": "Vector similarity search on the user's screen history.",
"bullets": [
"Use for fuzzy/conceptual questions about screen content after get_work_context cannot identify the document, URL, or file.",
"Examples: \"reading about machine learning\", \"working on design mockups\".",
"Parameters: query (required), days (default 7), app_filter (optional)."
]
},
"aliasCapabilityDocs": {
"search_screen_history": {
"title": "Search Screen History",
"summary": "Search the user's on-screen history by meaning.",
"bullets": [
"Use for what the user saw, read, or worked on, including text they read on a page earlier (a riddle, a message, a document). Speak a short summary of the result.",
"Prefer this over conversation tools for anything that was displayed rather than spoken."
],
"surfaces": [
"realtime_voice"
]
}
},
"voice": {
"realtimeDescription": "Search the user's on-screen history — what they saw, read, or worked on — by meaning. Use for 'when was I looking at X', 'find where I read about Y', 'what was I doing in app Z', and for text they read on screen earlier ('the riddle on the first page', 'what did that message say'). Anything displayed rather than spoken lives here, not in conversations. Returns matching moments with the app, context, and an OCR text preview. Fast synchronous read. Speak the result."
}
},
{
"name": "get_daily_recap",
"label": "Daily Recap",
"description": "Pre-formatted daily activity recap: app usage, conversations, tasks, focus, memories, observations.",
"promptSnippet": "get_daily_recap - Get a daily activity summary",
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"days_ago": {
"type": "number",
"description": "0=today, 1=yesterday, 7=past week"
}
},
"required": [],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "swiftTool",
"executorName": "chatToolExecutor"
},
"intendedForAgents": true,
"runtimePreconditions": [
"Requires local Omi activity data."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
},
"local-agent-api": {
"advertised": true
}
},
"resultContract": {
"budgets": {
"desktop_chat": 8192,
"realtime_voice": 8192,
"onboarding": 8192,
"task_chat": 8192
},
"sections": [
"summary",
"apps",
"conversations",
"tasks",
"focus",
"memories",
"observations"
],
"ranking": "purpose_then_recency",
"maxItemsPerSection": 500
},
"surfaces": [
"desktop_chat",
"realtime_voice"
],
"capabilityDoc": {
"title": "Daily Recap",
"summary": "Pre-formatted activity recap: apps, conversations, tasks, focus, memories, and observations.",
"bullets": [
"Use for what the user did today/yesterday/this week; it is faster than composing many SQL queries.",
"Parameters: days_ago (0=today, 1=yesterday, 7=past week; default 1)."
]
},
"voice": {
"realtimeDescription": "Get a recap of what the user actually DID on their Mac — apps used (with minutes), conversations, tasks, focus sessions, and screen activity — for a day. First choice for 'what did I do yesterday', 'what did I do today', 'which apps did I use the most', 'how did I spend my time': one fast synchronous read, where searching conversations or spawning an agent would be slower and less complete. Speak a short summary of what it returns."
}
},
{
"name": "fill_cloud_connector_form",
"label": "Fill Cloud Connector Form",
"description": "Fill the currently visible ChatGPT or Claude custom MCP connector form using Omi's native macOS Accessibility automation. Use first for one-click cloud connector setup after opening the signed-in browser to the connector page.",
"promptSnippet": "fill_cloud_connector_form - Fill and optionally submit the visible ChatGPT/Claude MCP connector form",
"promptGuidelines": [
"Call this first for ChatGPT or Claude cloud MCP connector setup when the connector form is visible.",
"Do not install browser extensions before trying this tool.",
"If it reports missing Accessibility permission, missing form, or missing required fields, wait for the missing condition or use guarded screenshots before any keyboard automation."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"provider": {
"type": "string",
"enum": [
"claude",
"chatgpt"
],
"description": "Cloud platform whose connector form is visible."
},
"name": {
"type": "string",
"description": "Connector name, usually 'Omi Memory'."
},
"server_url": {
"type": "string",
"description": "Remote MCP server URL to paste into the connector form."
},
"oauth_client_id": {
"type": "string",
"description": "OAuth Client ID. Defaults to Omi's public ChatGPT/Claude connector client."
},
"oauth_client_secret": {
"type": "string",
"description": "OAuth Client Secret, only for confidential clients."
},
"authentication": {
"type": "string",
"description": "Authentication mode, usually 'OAuth'."
},
"token_auth_method": {
"type": "string",
"description": "OAuth token auth method. Use 'none' for Omi's public ChatGPT connector client."
},
"auth_url": {
"type": "string",
"description": "OAuth authorization URL when the form asks for it."
},
"token_url": {
"type": "string",
"description": "OAuth token URL when the form asks for it."
},
"submit": {
"type": "boolean",
"description": "Whether to press the visible Add/Connect/Create button after filling required fields."
}
},
"required": [
"provider",
"server_url"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": false,
"destructiveHint": false,
"openWorldHint": true
},
"timeoutClass": "normal",
"executor": {
"kind": "swiftTool",
"executorName": "chatToolExecutor"
},
"intendedForAgents": true,
"runtimePreconditions": [
"Requires a signed-in supported browser on the connector page.",
"Requires macOS Accessibility permission for Omi and the target browser."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
},
"local-agent-api": {
"advertised": true
}
},
"surfaces": [
"desktop_chat"
],
"capabilityDoc": {
"title": "Fill Cloud Connector Form",
"summary": "Fill the visible ChatGPT or Claude custom MCP connector form using Omi's native macOS Accessibility automation.",
"bullets": [
"Call this first for ChatGPT or Claude cloud MCP connector setup when the connector form is visible.",
"Do not install browser extensions before trying this tool."
]
}
},
{
"name": "list_agent_sessions",
"label": "List Agent Sessions",
"description": "List Omi-managed agent sessions from the local runtime kernel.\n\nUse when the user asks what Omi agents/subagents are active, recent, failed, or attached to a surface.\nReturns canonical session/run summaries plus task_agents and floating_agent_pills projections.",
"promptSnippet": "list_agent_sessions - List Omi-managed agent sessions and active runs",
"promptGuidelines": [
"Use for current or recent kernel-backed Omi agents/subagents across chat, PTT/realtime, task chat, and floating-bar pills.",
"Returns task_agents and floating_agent_pills alongside canonical session summaries.",
"For a prior child agent's final answer, do not infer run completion from session status or restrict discovery to status='open'. List recent sessions, then call get_agent_run with the returned runId and answer from run.finalText without exposing the internal id."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id to list. Defaults to the active signed-in owner."
},
"status": {
"type": "string",
"enum": [
"open",
"archived",
"closed"
]
},
"surfaceKind": {
"type": "string",
"description": "Optional surface hint. background_agent and delegated_agent discover recent child sessions across concrete surfaces.",
"enum": [
"main_chat",
"task_chat",
"realtime",
"delegated_agent",
"background_agent",
"floating_bar",
"floating_pill"
]
},
"limit": {
"type": "number",
"description": "Maximum sessions to return. Default 50, max 200."
},
"beforeUpdatedAtMs": {
"type": "number",
"description": "Pagination cursor: only sessions updated before this epoch-ms timestamp."
}
},
"required": [],
"additionalProperties": false
},
"mcpInputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id to list. Defaults to the active signed-in owner."
},
"status": {
"type": "string",
"enum": [
"open",
"archived",
"closed"
]
},
"surfaceKind": {
"type": "string",
"description": "Optional surface hint. background_agent and delegated_agent discover recent child sessions across concrete surfaces.",
"enum": [
"main_chat",
"task_chat",
"realtime",
"delegated_agent",
"background_agent",
"floating_bar",
"floating_pill"
]
},
"limit": {
"type": "number",
"description": "Maximum sessions to return. Default 50, max 200."
},
"beforeUpdatedAtMs": {
"type": "number",
"description": "Pagination cursor: only sessions updated before this epoch-ms timestamp."
}
},
"required": [],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "runtimeControl"
},
"surfaces": [
"desktop_chat",
"realtime_voice"
],
"capabilityDoc": {
"title": "List Agent Sessions",
"summary": "List Omi-managed agent sessions from the local runtime kernel.",
"bullets": [
"Use for current or recent kernel-backed Omi agents/subagents across chat, PTT/realtime, task chat, and floating-bar pills.",
"Returns task_agents and floating_agent_pills alongside canonical session summaries."
]
},
"voice": {
"realtimeDescription": "List canonical Omi-managed agents and subagents, including their sessions/runs, across chat, PTT/realtime, task chat, floating-bar pills, and migrated surfaces. For a prior child agent's final answer, omit status filters: session archive state is not run completion. List recent sessions, then answer from latestRun.finalText or inspect the returned run with get_agent_run. Keep internal ids out of the user-visible response.",
"schemaOverride": {
"type": "object",
"properties": {
"surfaceKind": {
"type": "string",
"enum": [
"main_chat",
"task_chat",
"realtime",
"delegated_agent",
"background_agent",
"floating_bar",
"floating_pill"
],
"description": "Optional surface hint. background_agent and delegated_agent discover recent child sessions across concrete surfaces."
},
"limit": {
"type": "number",
"description": "Maximum sessions to return. Default 50."
}
},
"required": [],
"additionalProperties": false
}
},
"intendedForAgents": true,
"runtimePreconditions": [
"Defaults ownerId to the active signed-in owner when omitted."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
}
}
},
{
"name": "get_agent_run",
"label": "Get Agent Run",
"description": "Inspect one canonical Omi agent run.\n\nUse a runId returned by list_agent_sessions or a correlated Omi response. Returns the run, session, attempts, adapter bindings, artifact metadata, and optionally events.",
"promptSnippet": "get_agent_run - Inspect one Omi agent run",
"promptGuidelines": [
"Use a runId from list_agent_sessions or a correlated Omi result.",
"Returns the run, attempts, adapter bindings, events, and artifact metadata.",
"For a completed child, use run.finalText to answer the user and keep the internal runId out of the user-visible response."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"runId": {
"type": "string",
"description": "Canonical Omi run_id."
},
"ownerId": {
"type": "string",
"description": "Owner guard. Defaults to the active signed-in owner."
},
"includeEvents": {
"type": "boolean",
"description": "Include ordered kernel events. Default true."
},
"eventLimit": {
"type": "number",
"description": "Maximum events to return. Default 100, max 500."
}
},
"required": [
"runId"
],
"additionalProperties": false
},
"mcpInputSchema": {
"type": "object",
"properties": {
"runId": {
"type": "string",
"description": "Canonical Omi run_id."
},
"ownerId": {
"type": "string",
"description": "Owner guard. Defaults to the active signed-in owner."
},
"includeEvents": {
"type": "boolean",
"description": "Include ordered kernel events. Default true."
},
"eventLimit": {
"type": "number",
"description": "Maximum events to return. Default 100, max 500."
}
},
"required": [
"runId"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "runtimeControl"
},
"surfaces": [
"desktop_chat",
"realtime_voice"
],
"capabilityDoc": {
"title": "Get Agent Run",
"summary": "Inspect one canonical Omi agent run.",
"bullets": [
"Use a runId from list_agent_sessions or a correlated Omi result.",
"Returns the run, attempts, adapter bindings, events, and artifact metadata."
]
},
"voice": {
"realtimeDescription": "Inspect one canonical Omi-managed agent run. Prefer an agentRef or runId from list_agent_sessions. For a completed child, answer from run.finalText and do not expose the internal id.",
"schemaOverride": {
"type": "object",
"properties": {
"agentRef": {
"type": "string",
"description": "Opaque agent handle from list_agent_sessions."
},
"runId": {
"type": "string",
"description": "Canonical Omi run id."
},
"includeEvents": {
"type": "boolean",
"description": "Include ordered kernel events. Default true."
},
"eventLimit": {
"type": "number",
"description": "Maximum events to return. Default 100."
}
},
"required": [],
"additionalProperties": false
}
},
"intendedForAgents": true,
"runtimePreconditions": [
"Requires a canonical Omi run_id.",
"Defaults ownerId to the active signed-in owner when omitted and rejects runs outside that owner."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
}
}
},
{
"name": "build_desktop_awareness_snapshot",
"label": "Build Desktop Awareness Snapshot",
"description": "Build a local coordinator snapshot from kernel sessions, runs, dispatches, deliveries, candidates, and runtime health.",
"promptSnippet": "build_desktop_awareness_snapshot - Inspect local coordinator state",
"promptGuidelines": [
"Use before routing new local work or summarizing open agent loops.",
"Returns metadata and local state summaries, not raw transcripts or screenshot bytes."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"limit": {
"type": "number",
"description": "Maximum rows per collection. Default 50, max 200."
}
},
"required": [],
"additionalProperties": false
},
"mcpInputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"limit": {
"type": "number",
"description": "Maximum rows per collection. Default 50, max 200."
}
},
"required": [],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "runtimeControl"
},
"surfaces": [
"desktop_chat",
"realtime_voice"
],
"capabilityDoc": {
"title": "Build Desktop Awareness Snapshot",
"summary": "Build a local coordinator snapshot from kernel sessions, runs, dispatches, deliveries, candidates, and runtime health.",
"bullets": [
"Use before routing new local work or summarizing open agent loops.",
"Returns metadata and local state summaries, not raw transcripts or screenshot bytes."
]
},
"intendedForAgents": true,
"runtimePreconditions": [
"Defaults ownerId to the active signed-in owner when omitted."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
}
}
},
{
"name": "list_desktop_action_queue",
"label": "List Desktop Action Queue",
"description": "Return the derived Desktop action queue from runs, dispatches, deliveries, candidates, legacy projections, and overrides.",
"promptSnippet": "list_desktop_action_queue - List pending local agent attention items",
"promptGuidelines": [
"Use for approvals, failed runs, artifact review, stale work, and candidate review.",
"The queue is derived and not persisted as authority."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"staleAfterMs": {
"type": "number",
"description": "Age after which active runs are considered stale."
},
"limit": {
"type": "number",
"description": "Maximum queue items. Default 50, max 200."
}
},
"required": [],
"additionalProperties": false
},
"mcpInputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"staleAfterMs": {
"type": "number",
"description": "Age after which active runs are considered stale."
},
"limit": {
"type": "number",
"description": "Maximum queue items. Default 50, max 200."
}
},
"required": [],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "runtimeControl"
},
"surfaces": [
"desktop_chat",
"realtime_voice"
],
"capabilityDoc": {
"title": "List Desktop Action Queue",
"summary": "Return the derived Desktop action queue from runs, dispatches, deliveries, candidates, legacy projections, and overrides.",
"bullets": [
"Use for approvals, failed runs, artifact review, stale work, and candidate review.",
"The queue is derived and not persisted as authority."
]
},
"intendedForAgents": true,
"runtimePreconditions": [
"Defaults ownerId to active owner. Does not persist queue rows."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
}
}
},
{
"name": "get_desktop_open_loops",
"label": "Get Desktop Open Loops",
"description": "Summarize unresolved local coordinator loops: blocking dispatches, failed/stale runs, undelivered artifacts, and candidate reviews.",
"promptSnippet": "get_desktop_open_loops - Summarize unresolved local agent work",
"promptGuidelines": [
"Use for quick status answers and voice status summaries."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"limit": {
"type": "number",
"description": "Maximum loops. Default 50, max 200."
}
},
"required": [],
"additionalProperties": false
},
"mcpInputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"limit": {
"type": "number",
"description": "Maximum loops. Default 50, max 200."
}
},
"required": [],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": false
},
"timeoutClass": "normal",
"executor": {
"kind": "runtimeControl"
},
"surfaces": [
"desktop_chat",
"realtime_voice"
],
"capabilityDoc": {
"title": "Get Desktop Open Loops",
"summary": "Summarize unresolved local coordinator loops: blocking dispatches, failed/stale runs, undelivered artifacts, and candidate reviews.",
"bullets": [
"Use for quick status answers and voice status summaries."
]
},
"intendedForAgents": true,
"runtimePreconditions": [
"Defaults ownerId to active owner."
],
"adapters": {
"pi-mono": {
"advertised": true
},
"omi-tools-stdio": {
"advertised": true
}
}
},
{
"name": "build_desktop_context_packet",
"label": "Build Desktop Context Packet",
"description": "Persist a minimized DesktopContextPacket plus context-access audit rows from explicit selected snippets.",
"promptSnippet": "build_desktop_context_packet - Build scoped context for a local worker run",
"promptGuidelines": [
"Use selected snippets with provenance, not full transcripts or screenshot image bytes.",
"Requires a positive TTL and writes context-access audit rows."
],
"latency": "fast local",
"inputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"sessionId": {
"type": "string",
"description": "Optional canonical session id scope."
},
"runId": {
"type": "string",
"description": "Optional canonical run id scope."
},
"surfaceKind": {
"type": "string",
"description": "Surface kind such as main_chat or task_chat."
},
"objective": {
"type": "string",
"description": "Worker objective."
},
"packetJson": {
"type": "object",
"description": "Selected context snippets and policy fields.",
"additionalProperties": true
},
"ttlMs": {
"type": "number",
"description": "Positive TTL in milliseconds."
},
"retentionClass": {
"type": "string",
"enum": [
"ephemeral",
"debug",
"core"
]
}
},
"required": [
"surfaceKind",
"objective",
"packetJson",
"ttlMs",
"retentionClass"
],
"additionalProperties": false
},
"mcpInputSchema": {
"type": "object",
"properties": {
"ownerId": {
"type": "string",
"description": "Owner id. Defaults to active owner."
},
"sessionId": {
"type": "string",
"description": "Optional canonical session id scope."
},
"runId": {
"type": "string",
"description": "Optional canonical run id scope."
},
"surfaceKind": {
"type": "string",
"description": "Surface kind such as main_chat or task_chat."
},
"objective": {
"type": "string",
"description": "Worker objective."
},