arcane-os 0.2.2 → 0.3.0
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/CHANGELOG.md +29 -0
- package/README.md +8 -8
- package/browser-runtime/ARCANE_SDK_BROWSER_RELEASE.json +29 -22
- package/browser-runtime/ai/ARCANE_AI_BROWSER_SPEECH_COMPONENTS.json +203 -0
- package/browser-runtime/ai/browser-kokoro-worker.mjs +11 -2
- package/browser-runtime/ai/browser-speech-artifacts.mjs +3230 -397
- package/browser-runtime/ai/browser-speech-providers.mjs +1141 -157
- package/browser-runtime/ai/browser-speech.mjs +2 -0
- package/browser-runtime/ai/browser-whisper-worker.mjs +11 -2
- package/browser-runtime/ai/model-controller.mjs +285 -95
- package/browser-runtime/ai/speech-worker-client.mjs +247 -32
- package/browser-runtime/ai/speech-worker-runtime.mjs +2310 -167
- package/browser-runtime/event-manager.mjs +1097 -1
- package/docs/architecture.md +2 -2
- package/docs/event-manager.md +155 -27
- package/docs/reference/README.md +27 -27
- package/docs/reference/ai/browser-speech-package-authority.json +835 -0
- package/docs/reference/ai/browser-speech.md +1162 -246
- package/docs/reference/ai/browser-wasm.md +18 -7
- package/docs/reference/availability-and-normalization.md +6 -3
- package/docs/reference/behavioral-testing.md +29 -6
- package/docs/reference/cli.md +117 -9
- package/docs/reference/core/arcane-ai-contracts.md +1 -1
- package/docs/reference/event-manager.md +577 -32
- package/docs/reference/inventory/package-api.json +478 -2
- package/docs/reference/inventory/runtime-components.json +108 -44
- package/docs/reference/inventory/runtime-modules.json +131 -53
- package/docs/reference/mail.md +316 -0
- package/docs/reference/protocols.md +157 -43
- package/docs/reference/runtime-components.md +258 -83
- package/docs/reference/runtime-modules.md +613 -77
- package/docs/reference/sdk-api.md +1014 -25
- package/package.json +5 -4
- package/runtime/ARCANE_RUNTIME_RELEASE.json +145 -140
- package/runtime/arcane/components/app-bar.html +34 -13
- package/runtime/arcane/components/assistant-panel.html +110 -57
- package/runtime/arcane/components/calculator.html +7 -4
- package/runtime/arcane/components/chart.html +58 -17
- package/runtime/arcane/components/chat.html +606 -136
- package/runtime/arcane/components/conversation-view.html +13 -6
- package/runtime/arcane/components/dashboard-config.html +96 -59
- package/runtime/arcane/components/data-maintenance.html +69 -14
- package/runtime/arcane/components/data-view.html +53 -7
- package/runtime/arcane/components/directory-picker.html +118 -32
- package/runtime/arcane/components/document-inspector.html +47 -10
- package/runtime/arcane/components/file-drop.html +81 -35
- package/runtime/arcane/components/file-inspector.html +72 -22
- package/runtime/arcane/components/file-manager.html +374 -79
- package/runtime/arcane/components/integration-settings.html +12 -5
- package/runtime/arcane/components/local-ai-status.html +48 -19
- package/runtime/arcane/components/markdown-document.html +161 -68
- package/runtime/arcane/components/markdown-editor.html +110 -33
- package/runtime/arcane/components/media-embed.html +8 -5
- package/runtime/arcane/components/modal.html +15 -5
- package/runtime/arcane/components/output-panel.html +28 -23
- package/runtime/arcane/components/preferences-form.html +22 -4
- package/runtime/arcane/components/record-timeline.html +18 -2
- package/runtime/arcane/components/relationship-board.html +23 -3
- package/runtime/arcane/components/screen-capture.html +10 -4
- package/runtime/arcane/components/source-code-viewer.html +76 -9
- package/runtime/arcane/components/source-explanation.html +23 -3
- package/runtime/arcane/components/speech.html +462 -384
- package/runtime/arcane/components/summary-strip.html +22 -11
- package/runtime/arcane/components/table.html +39 -21
- package/runtime/arcane/components/task-progress.html +79 -21
- package/runtime/arcane/components/terminal-workspace.html +7 -4
- package/runtime/arcane/components/theme-editor.html +7 -3
- package/runtime/arcane/components/unified-inbox.html +9 -4
- package/runtime/arcane/components/voice-transcription.html +639 -98
- package/runtime/arcane/components/weather-widget.html +5 -3
- package/runtime/arcane/components/web-navigator.html +48 -8
- package/runtime/arcane/entities/Chat.js +1 -1
- package/runtime/arcane/entities/User.js +110 -23
- package/runtime/arcane/modules/AI.js +2109 -130
- package/runtime/arcane/modules/AIProviderRuntime.js +720 -13
- package/runtime/arcane/modules/AIRuntimeState.js +109 -52
- package/runtime/arcane/modules/ApiModelDatabase.js +390 -17
- package/runtime/arcane/modules/BrowserTestSuite.js +205 -28
- package/runtime/arcane/modules/CalculatorEngine.js +63 -3
- package/runtime/arcane/modules/CommunicationAppController.js +588 -28
- package/runtime/arcane/modules/CommunicationHub.js +590 -10
- package/runtime/arcane/modules/ComponentContracts.js +470 -0
- package/runtime/arcane/modules/ConversationTimebox.js +152 -33
- package/runtime/arcane/modules/DBLS.js +40 -7
- package/runtime/arcane/modules/DBOPFS.js +35 -11
- package/runtime/arcane/modules/DataMaintenance.js +12 -2
- package/runtime/arcane/modules/Errors.js +65 -7
- package/runtime/arcane/modules/HTMLImport.js +198 -14
- package/runtime/arcane/modules/LocalAIReadinessController.js +208 -29
- package/runtime/arcane/modules/Mail.js +738 -115
- package/runtime/arcane/modules/MailOutbox.mjs +1395 -0
- package/runtime/arcane/modules/MailTransport.mjs +197 -39
- package/runtime/arcane/modules/Ollama.js +36 -1
- package/runtime/arcane/modules/OpenMeteoWeatherProvider.js +583 -7
- package/runtime/arcane/modules/PreferenceStore.js +367 -33
- package/runtime/arcane/modules/RecordReviewStore.js +322 -23
- package/runtime/arcane/modules/ScreenCapture.js +1397 -15
- package/runtime/arcane/modules/SpeechPlayback.js +438 -41
- package/runtime/arcane/modules/TerminalClient.js +277 -12
- package/runtime/arcane/modules/ThemeBootstrap.js +80 -6
- package/runtime/arcane/modules/ThemeManager.js +39 -7
- package/runtime/arcane/modules/TimeGuard.js +131 -20
- package/runtime/arcane/modules/WaitForComponent.js +386 -33
- package/schemas/arcane-lock.schema.json +2 -2
- package/src/cli/main.mjs +435 -9
- package/src/event-manager.mjs +1097 -1
- package/src/import-map.mjs +21 -3
- package/src/index.mjs +13 -0
- package/src/installed-sdk-runtime.mjs +112 -0
- package/src/mail-api.mjs +22 -0
- package/src/mail-credentials.mjs +667 -0
- package/src/mail-server.mjs +1769 -0
- package/src/mail.mjs +261 -0
- package/src/sdk-browser-runtime.mjs +85 -41
- package/src/testing-loader.mjs +7 -0
- package/src/toolchain.mjs +3 -0
- package/src/workspace.mjs +1 -1
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"source": {
|
|
4
4
|
"authority": "sdk-canonical",
|
|
5
5
|
"repository": "https://github.com/TheWizardNexus/arcane-os-sdk.git",
|
|
6
|
-
"commit": "
|
|
6
|
+
"commit": "75b01e7ddcd751f7970d8c1aaf18bfff05b706b7",
|
|
7
7
|
"path": "runtime/arcane/components",
|
|
8
|
-
"sdkVersion": "0.
|
|
8
|
+
"sdkVersion": "0.3.0",
|
|
9
9
|
"legacyProjection": {
|
|
10
10
|
"repository": "https://github.com/TheWizardNexus/ARCANE-OS.git",
|
|
11
11
|
"commit": "c540014afe69f14cf5ae60493b7295f36dbcec64",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"setNavigation()",
|
|
24
24
|
"setActiveRoute()",
|
|
25
25
|
"setStatus()",
|
|
26
|
-
"refresh()"
|
|
26
|
+
"refresh()",
|
|
27
|
+
"destroy()"
|
|
27
28
|
],
|
|
28
29
|
"events": [
|
|
29
30
|
"app-bar-ready"
|
|
@@ -52,10 +53,13 @@
|
|
|
52
53
|
"clear()",
|
|
53
54
|
"setState()",
|
|
54
55
|
"focusComposer()",
|
|
55
|
-
"scrollToEnd()"
|
|
56
|
+
"scrollToEnd()",
|
|
57
|
+
"destroy()"
|
|
56
58
|
],
|
|
57
59
|
"events": [
|
|
58
60
|
"assistant-ready",
|
|
61
|
+
"assistant-opened",
|
|
62
|
+
"assistant-closed",
|
|
59
63
|
"assistant-send",
|
|
60
64
|
"assistant-clear"
|
|
61
65
|
],
|
|
@@ -82,7 +86,8 @@
|
|
|
82
86
|
"name": "calculator.html",
|
|
83
87
|
"purpose": "Calculator keypad and result/error event surface backed by CalculatorEngine.",
|
|
84
88
|
"methods": [
|
|
85
|
-
"calculate()"
|
|
89
|
+
"calculate()",
|
|
90
|
+
"destroy()"
|
|
86
91
|
],
|
|
87
92
|
"events": [
|
|
88
93
|
"calculator-ready",
|
|
@@ -144,9 +149,12 @@
|
|
|
144
149
|
"chat-send-message",
|
|
145
150
|
"chat-send-error",
|
|
146
151
|
"chat-file-uploaded",
|
|
152
|
+
"chat-file-upload-error",
|
|
147
153
|
"chat-language-changed",
|
|
154
|
+
"chat-language-change-error",
|
|
148
155
|
"chat-ai-activation-request",
|
|
149
156
|
"chat-ai-activation-error",
|
|
157
|
+
"chat-speech-synthesis-error",
|
|
150
158
|
"conversation-timebox-error"
|
|
151
159
|
],
|
|
152
160
|
"slots": [],
|
|
@@ -168,7 +176,8 @@
|
|
|
168
176
|
"setConversation()",
|
|
169
177
|
"setBusy()",
|
|
170
178
|
"setStatus()",
|
|
171
|
-
"clearComposer()"
|
|
179
|
+
"clearComposer()",
|
|
180
|
+
"destroy()"
|
|
172
181
|
],
|
|
173
182
|
"events": [
|
|
174
183
|
"conversation-view-ready",
|
|
@@ -192,7 +201,8 @@
|
|
|
192
201
|
"getChartOptions()",
|
|
193
202
|
"getEffectiveVisibility()",
|
|
194
203
|
"open()",
|
|
195
|
-
"close()"
|
|
204
|
+
"close()",
|
|
205
|
+
"destroy()"
|
|
196
206
|
],
|
|
197
207
|
"events": [
|
|
198
208
|
"dashboard-config-ready",
|
|
@@ -214,7 +224,8 @@
|
|
|
214
224
|
"name": "data-maintenance.html",
|
|
215
225
|
"purpose": "Runs destructive cleanup of empty chats and memories inside the current app data scope.",
|
|
216
226
|
"methods": [
|
|
217
|
-
"open()"
|
|
227
|
+
"open()",
|
|
228
|
+
"destroy()"
|
|
218
229
|
],
|
|
219
230
|
"events": [
|
|
220
231
|
"data-maintenance-ready",
|
|
@@ -235,7 +246,8 @@
|
|
|
235
246
|
"purpose": "Opens a generic modal-style data view around an injected provider.",
|
|
236
247
|
"methods": [
|
|
237
248
|
"beforeOpen()",
|
|
238
|
-
"open()"
|
|
249
|
+
"open()",
|
|
250
|
+
"destroy()"
|
|
239
251
|
],
|
|
240
252
|
"events": [
|
|
241
253
|
"data-view-ready"
|
|
@@ -255,7 +267,8 @@
|
|
|
255
267
|
"methods": [
|
|
256
268
|
"configure()",
|
|
257
269
|
"focus()",
|
|
258
|
-
"select()"
|
|
270
|
+
"select()",
|
|
271
|
+
"destroy()"
|
|
259
272
|
],
|
|
260
273
|
"events": [
|
|
261
274
|
"directory-picker-ready",
|
|
@@ -278,7 +291,8 @@
|
|
|
278
291
|
"methods": [
|
|
279
292
|
"loadDocument()",
|
|
280
293
|
"selectView()",
|
|
281
|
-
"markSaved()"
|
|
294
|
+
"markSaved()",
|
|
295
|
+
"destroy()"
|
|
282
296
|
],
|
|
283
297
|
"events": [
|
|
284
298
|
"document-inspector-ready",
|
|
@@ -302,7 +316,8 @@
|
|
|
302
316
|
"clear()",
|
|
303
317
|
"setBusy()",
|
|
304
318
|
"setError()",
|
|
305
|
-
"setProgress()"
|
|
319
|
+
"setProgress()",
|
|
320
|
+
"destroy()"
|
|
306
321
|
],
|
|
307
322
|
"events": [
|
|
308
323
|
"file-drop-ready",
|
|
@@ -328,7 +343,8 @@
|
|
|
328
343
|
"setActions()",
|
|
329
344
|
"setBusy()",
|
|
330
345
|
"setError()",
|
|
331
|
-
"setPreview()"
|
|
346
|
+
"setPreview()",
|
|
347
|
+
"destroy()"
|
|
332
348
|
],
|
|
333
349
|
"events": [
|
|
334
350
|
"file-inspector-ready",
|
|
@@ -357,7 +373,8 @@
|
|
|
357
373
|
"loadAll()",
|
|
358
374
|
"setFilter()",
|
|
359
375
|
"select()",
|
|
360
|
-
"clearSelection()"
|
|
376
|
+
"clearSelection()",
|
|
377
|
+
"destroy()"
|
|
361
378
|
],
|
|
362
379
|
"events": [
|
|
363
380
|
"file-manager-ready",
|
|
@@ -394,7 +411,8 @@
|
|
|
394
411
|
"methods": [
|
|
395
412
|
"configure()",
|
|
396
413
|
"getValues()",
|
|
397
|
-
"setStatus()"
|
|
414
|
+
"setStatus()",
|
|
415
|
+
"destroy()"
|
|
398
416
|
],
|
|
399
417
|
"events": [
|
|
400
418
|
"integration-settings-ready",
|
|
@@ -415,7 +433,9 @@
|
|
|
415
433
|
"methods": [
|
|
416
434
|
"configure()",
|
|
417
435
|
"begin()",
|
|
418
|
-
"present()
|
|
436
|
+
"present()",
|
|
437
|
+
"destroy()",
|
|
438
|
+
"hidden property"
|
|
419
439
|
],
|
|
420
440
|
"events": [
|
|
421
441
|
"local-ai-status-ready",
|
|
@@ -441,11 +461,16 @@
|
|
|
441
461
|
"clear()",
|
|
442
462
|
"fail()",
|
|
443
463
|
"focus()",
|
|
444
|
-
"focusFragment()"
|
|
464
|
+
"focusFragment()",
|
|
465
|
+
"destroy()"
|
|
445
466
|
],
|
|
446
467
|
"events": [
|
|
447
468
|
"markdown-document-ready",
|
|
448
469
|
"markdown-document-state",
|
|
470
|
+
"markdown-document-loading",
|
|
471
|
+
"markdown-document-rendered",
|
|
472
|
+
"markdown-document-empty",
|
|
473
|
+
"markdown-document-error",
|
|
449
474
|
"markdown-document-navigate"
|
|
450
475
|
],
|
|
451
476
|
"slots": [],
|
|
@@ -464,7 +489,8 @@
|
|
|
464
489
|
"configure()",
|
|
465
490
|
"focus()",
|
|
466
491
|
"clear()",
|
|
467
|
-
"saveEntry()"
|
|
492
|
+
"saveEntry()",
|
|
493
|
+
"destroy()"
|
|
468
494
|
],
|
|
469
495
|
"events": [
|
|
470
496
|
"markdown-editor-ready",
|
|
@@ -486,7 +512,8 @@
|
|
|
486
512
|
"purpose": "Loads a validated YouTube video or playlist embed and exposes external-platform action.",
|
|
487
513
|
"methods": [
|
|
488
514
|
"configure()",
|
|
489
|
-
"load()"
|
|
515
|
+
"load()",
|
|
516
|
+
"destroy()"
|
|
490
517
|
],
|
|
491
518
|
"events": [
|
|
492
519
|
"media-embed-ready",
|
|
@@ -510,7 +537,8 @@
|
|
|
510
537
|
"populate()",
|
|
511
538
|
"open()",
|
|
512
539
|
"close()",
|
|
513
|
-
"runTasks()"
|
|
540
|
+
"runTasks()",
|
|
541
|
+
"destroy()"
|
|
514
542
|
],
|
|
515
543
|
"events": [
|
|
516
544
|
"modal-ready",
|
|
@@ -541,7 +569,8 @@
|
|
|
541
569
|
"setPending()",
|
|
542
570
|
"setStatus()",
|
|
543
571
|
"setError()",
|
|
544
|
-
"clear()"
|
|
572
|
+
"clear()",
|
|
573
|
+
"destroy()"
|
|
545
574
|
],
|
|
546
575
|
"events": [
|
|
547
576
|
"output-panel-ready",
|
|
@@ -572,7 +601,8 @@
|
|
|
572
601
|
"getValues()",
|
|
573
602
|
"setValues()",
|
|
574
603
|
"setBusy()",
|
|
575
|
-
"setStatus()"
|
|
604
|
+
"setStatus()",
|
|
605
|
+
"destroy()"
|
|
576
606
|
],
|
|
577
607
|
"events": [
|
|
578
608
|
"preferences-form-ready",
|
|
@@ -592,7 +622,8 @@
|
|
|
592
622
|
"purpose": "Displays chronological records/evidence and emits open actions.",
|
|
593
623
|
"methods": [
|
|
594
624
|
"setItems()",
|
|
595
|
-
"populate()"
|
|
625
|
+
"populate()",
|
|
626
|
+
"destroy()"
|
|
596
627
|
],
|
|
597
628
|
"events": [
|
|
598
629
|
"record-timeline-ready",
|
|
@@ -610,7 +641,8 @@
|
|
|
610
641
|
"purpose": "Displays normalized relationship nodes/edges in graph and list forms.",
|
|
611
642
|
"methods": [
|
|
612
643
|
"setGraph()",
|
|
613
|
-
"populate()"
|
|
644
|
+
"populate()",
|
|
645
|
+
"destroy()"
|
|
614
646
|
],
|
|
615
647
|
"events": [
|
|
616
648
|
"relationship-board-ready",
|
|
@@ -628,7 +660,8 @@
|
|
|
628
660
|
"name": "screen-capture.html",
|
|
629
661
|
"purpose": "Presents image, video, or GIF display-capture workflow.",
|
|
630
662
|
"methods": [
|
|
631
|
-
"capture()"
|
|
663
|
+
"capture property (ScreenCapture instance)",
|
|
664
|
+
"destroy()"
|
|
632
665
|
],
|
|
633
666
|
"events": [
|
|
634
667
|
"screen-capture-ready",
|
|
@@ -653,11 +686,16 @@
|
|
|
653
686
|
"clear()",
|
|
654
687
|
"fail()",
|
|
655
688
|
"focus()",
|
|
656
|
-
"focusLine()"
|
|
689
|
+
"focusLine()",
|
|
690
|
+
"destroy()"
|
|
657
691
|
],
|
|
658
692
|
"events": [
|
|
659
693
|
"source-code-viewer-ready",
|
|
660
|
-
"source-code-viewer-state"
|
|
694
|
+
"source-code-viewer-state",
|
|
695
|
+
"source-code-viewer-state-loading",
|
|
696
|
+
"source-code-viewer-state-ready",
|
|
697
|
+
"source-code-viewer-state-empty",
|
|
698
|
+
"source-code-viewer-state-error"
|
|
661
699
|
],
|
|
662
700
|
"slots": [],
|
|
663
701
|
"dependencies": [],
|
|
@@ -673,7 +711,8 @@
|
|
|
673
711
|
"showFinding()",
|
|
674
712
|
"populate()",
|
|
675
713
|
"selectSource()",
|
|
676
|
-
"markSaved()"
|
|
714
|
+
"markSaved()",
|
|
715
|
+
"destroy()"
|
|
677
716
|
],
|
|
678
717
|
"events": [
|
|
679
718
|
"source-explanation-ready",
|
|
@@ -689,28 +728,40 @@
|
|
|
689
728
|
{
|
|
690
729
|
"file": "runtime/arcane/components/speech.html",
|
|
691
730
|
"name": "speech.html",
|
|
692
|
-
"purpose": "Coordinates speech controls, transcription completion, mute state, and microphone availability.",
|
|
731
|
+
"purpose": "Coordinates explicit speech-to-text activation, request cancellation, speech controls, transcription completion, mute state, and microphone availability.",
|
|
693
732
|
"methods": [
|
|
694
733
|
"configure()",
|
|
695
734
|
"setAvailability()",
|
|
696
|
-
"setMuted()
|
|
735
|
+
"setMuted()",
|
|
736
|
+
"reportTTSError()",
|
|
737
|
+
"requestSTTActivation()",
|
|
738
|
+
"destroy()",
|
|
739
|
+
"availability",
|
|
697
740
|
"muted",
|
|
698
741
|
"initialMuted",
|
|
699
|
-
"componentReady
|
|
742
|
+
"componentReady"
|
|
700
743
|
],
|
|
701
744
|
"events": [
|
|
702
745
|
"speech-ready",
|
|
703
746
|
"speech-transcription-complete",
|
|
704
|
-
"speech-
|
|
747
|
+
"speech-transcription-error",
|
|
748
|
+
"speech-transcription-cancelled",
|
|
749
|
+
"speech-microphone-unavailable",
|
|
750
|
+
"speech-stt-activation-request",
|
|
751
|
+
"speech-stt-activation-error",
|
|
752
|
+
"speech-tts-lifecycle-error",
|
|
753
|
+
"speech-synthesis-error"
|
|
705
754
|
],
|
|
706
755
|
"slots": [],
|
|
707
756
|
"dependencies": [
|
|
708
757
|
"AI.js",
|
|
758
|
+
"AIRuntimeState.js",
|
|
759
|
+
"ComponentContracts.js",
|
|
709
760
|
"DBLS.js"
|
|
710
761
|
],
|
|
711
762
|
"availability": "Browser and supported native WebViews",
|
|
712
763
|
"transport": "HTMLImport + DOM; injected Arcane/provider modules where listed",
|
|
713
|
-
"normalization": "UI state normalized;
|
|
764
|
+
"normalization": "UI/runtime state, explicit STT activation intent, and request-owned cancellation are normalized; positive compatibility booleans cannot manufacture provider readiness; provider/model authority and media behavior remain external"
|
|
714
765
|
},
|
|
715
766
|
{
|
|
716
767
|
"file": "runtime/arcane/components/summary-strip.html",
|
|
@@ -720,7 +771,8 @@
|
|
|
720
771
|
"configure()",
|
|
721
772
|
"setItems()",
|
|
722
773
|
"updateItem()",
|
|
723
|
-
"clear()"
|
|
774
|
+
"clear()",
|
|
775
|
+
"destroy()"
|
|
724
776
|
],
|
|
725
777
|
"events": [
|
|
726
778
|
"summary-strip-ready",
|
|
@@ -739,7 +791,8 @@
|
|
|
739
791
|
"purpose": "Builds and updates a simple header/body table.",
|
|
740
792
|
"methods": [
|
|
741
793
|
"buildHeader()",
|
|
742
|
-
"buildTable()"
|
|
794
|
+
"buildTable()",
|
|
795
|
+
"destroy()"
|
|
743
796
|
],
|
|
744
797
|
"events": [
|
|
745
798
|
"table-ready",
|
|
@@ -761,7 +814,8 @@
|
|
|
761
814
|
"setTasks()",
|
|
762
815
|
"updateTask()",
|
|
763
816
|
"runTasks()",
|
|
764
|
-
"clear()"
|
|
817
|
+
"clear()",
|
|
818
|
+
"destroy()"
|
|
765
819
|
],
|
|
766
820
|
"events": [
|
|
767
821
|
"task-progress-ready",
|
|
@@ -789,7 +843,8 @@
|
|
|
789
843
|
"clear()",
|
|
790
844
|
"setState()",
|
|
791
845
|
"setTheme()",
|
|
792
|
-
"focus()"
|
|
846
|
+
"focus()",
|
|
847
|
+
"destroy()"
|
|
793
848
|
],
|
|
794
849
|
"events": [
|
|
795
850
|
"terminal-workspace-ready",
|
|
@@ -818,7 +873,8 @@
|
|
|
818
873
|
"getTheme()",
|
|
819
874
|
"setTheme()",
|
|
820
875
|
"setBusy()",
|
|
821
|
-
"setStatus()"
|
|
876
|
+
"setStatus()",
|
|
877
|
+
"destroy()"
|
|
822
878
|
],
|
|
823
879
|
"events": [
|
|
824
880
|
"theme-editor-ready",
|
|
@@ -859,7 +915,8 @@
|
|
|
859
915
|
"configure()",
|
|
860
916
|
"setThreads()",
|
|
861
917
|
"setActive()",
|
|
862
|
-
"setLoading()"
|
|
918
|
+
"setLoading()",
|
|
919
|
+
"destroy()"
|
|
863
920
|
],
|
|
864
921
|
"events": [
|
|
865
922
|
"unified-inbox-ready",
|
|
@@ -875,9 +932,10 @@
|
|
|
875
932
|
{
|
|
876
933
|
"file": "runtime/arcane/components/voice-transcription.html",
|
|
877
934
|
"name": "voice-transcription.html",
|
|
878
|
-
"purpose": "Records segmented microphone audio, transcribes, persists, and completes a combined transcript.",
|
|
935
|
+
"purpose": "Records segmented microphone audio only after authoritative STT admission, exposes explicit selected-STT activation, transcribes with cancellation, persists, and completes a combined transcript.",
|
|
879
936
|
"methods": [
|
|
880
937
|
"configure()",
|
|
938
|
+
"requestSTTActivation()",
|
|
881
939
|
"startRecording()",
|
|
882
940
|
"stopRecording()",
|
|
883
941
|
"save()",
|
|
@@ -892,17 +950,21 @@
|
|
|
892
950
|
"voice-transcription-segment",
|
|
893
951
|
"voice-transcription-change",
|
|
894
952
|
"voice-transcription-complete",
|
|
895
|
-
"speech-transcription-complete"
|
|
953
|
+
"speech-transcription-complete",
|
|
954
|
+
"speech-transcription-cancelled",
|
|
955
|
+
"speech-stt-activation-request",
|
|
956
|
+
"speech-stt-activation-error"
|
|
896
957
|
],
|
|
897
958
|
"slots": [],
|
|
898
959
|
"dependencies": [
|
|
899
960
|
"MD.js",
|
|
900
961
|
"ComponentContracts.js",
|
|
962
|
+
"AIRuntimeState.js",
|
|
901
963
|
"AI.js"
|
|
902
964
|
],
|
|
903
965
|
"availability": "Browser and supported native WebViews",
|
|
904
966
|
"transport": "HTMLImport + DOM; injected Arcane/provider modules where listed",
|
|
905
|
-
"normalization": "
|
|
967
|
+
"normalization": "Sticky runtime STT readiness, explicit activation, request cancellation, and state/text are normalized; media/provider behavior remains external"
|
|
906
968
|
},
|
|
907
969
|
{
|
|
908
970
|
"file": "runtime/arcane/components/weather-widget.html",
|
|
@@ -910,7 +972,8 @@
|
|
|
910
972
|
"purpose": "Displays normalized current and daily weather with refresh intent.",
|
|
911
973
|
"methods": [
|
|
912
974
|
"setWeather()",
|
|
913
|
-
"clear()"
|
|
975
|
+
"clear()",
|
|
976
|
+
"destroy()"
|
|
914
977
|
],
|
|
915
978
|
"events": [
|
|
916
979
|
"weather-widget-ready",
|
|
@@ -929,7 +992,8 @@
|
|
|
929
992
|
"methods": [
|
|
930
993
|
"configure()",
|
|
931
994
|
"navigate()",
|
|
932
|
-
"currentUrl()"
|
|
995
|
+
"currentUrl()",
|
|
996
|
+
"destroy()"
|
|
933
997
|
],
|
|
934
998
|
"events": [
|
|
935
999
|
"web-navigator-ready",
|