arcane-os 0.1.0-dev.5

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.
Files changed (248) hide show
  1. package/CHANGELOG.md +154 -0
  2. package/COMMERCIAL-LICENSE.md +13 -0
  3. package/LICENSE +661 -0
  4. package/NOTICE +70 -0
  5. package/README.md +448 -0
  6. package/bin/arcane-test.mjs +741 -0
  7. package/bin/arcane.mjs +5 -0
  8. package/docs/architecture.md +234 -0
  9. package/docs/compatibility.md +36 -0
  10. package/docs/event-manager.md +166 -0
  11. package/docs/platform-targets.md +108 -0
  12. package/docs/publishing.md +203 -0
  13. package/docs/reference/README.md +117 -0
  14. package/docs/reference/arcane-ollama.md +288 -0
  15. package/docs/reference/availability-and-normalization.md +123 -0
  16. package/docs/reference/behavioral-testing.md +86 -0
  17. package/docs/reference/cli.md +569 -0
  18. package/docs/reference/core/README.md +62 -0
  19. package/docs/reference/core/arcane-ai-contracts.md +873 -0
  20. package/docs/reference/core/arcane-api.md +601 -0
  21. package/docs/reference/core/arcane-entities.md +65 -0
  22. package/docs/reference/core/arcane-events.md +134 -0
  23. package/docs/reference/core/ollama-module.md +181 -0
  24. package/docs/reference/core/reference/arcane-api/ai-and-ollama.md +1909 -0
  25. package/docs/reference/core/reference/arcane-api/applications-terminal-capabilities.md +1057 -0
  26. package/docs/reference/core/reference/arcane-api/core-and-events.md +320 -0
  27. package/docs/reference/core/reference/arcane-api/filesystem-storage-preferences-appearance.md +610 -0
  28. package/docs/reference/core/reference/arcane-api/namespaces.md +1157 -0
  29. package/docs/reference/core/reference/arcane-api/platform-installation-users-system.md +1423 -0
  30. package/docs/reference/core/reference/arcane-api/session-provisioning-diagnostics-development.md +315 -0
  31. package/docs/reference/event-manager.md +957 -0
  32. package/docs/reference/inventory/package-api.json +2632 -0
  33. package/docs/reference/inventory/runtime-components.json +934 -0
  34. package/docs/reference/inventory/runtime-entities.json +26 -0
  35. package/docs/reference/inventory/runtime-modules.json +1249 -0
  36. package/docs/reference/protocols.md +242 -0
  37. package/docs/reference/runtime-components.md +1098 -0
  38. package/docs/reference/runtime-entities.md +303 -0
  39. package/docs/reference/runtime-modules.md +2010 -0
  40. package/docs/reference/sdk-api.md +4901 -0
  41. package/docs/roadmap.md +79 -0
  42. package/docs/work-amplification.md +124 -0
  43. package/node_modules/event-pubsub/CHANGELOG.md +55 -0
  44. package/node_modules/event-pubsub/MIGRATION.md +70 -0
  45. package/node_modules/event-pubsub/README.md +363 -0
  46. package/node_modules/event-pubsub/SECURITY.md +37 -0
  47. package/node_modules/event-pubsub/index.js +141 -0
  48. package/node_modules/event-pubsub/licence +21 -0
  49. package/node_modules/event-pubsub/package.json +59 -0
  50. package/node_modules/strong-type/README.md +408 -0
  51. package/node_modules/strong-type/assets/strong-type-header.png +0 -0
  52. package/node_modules/strong-type/index.js +1151 -0
  53. package/node_modules/strong-type/licence +21 -0
  54. package/node_modules/strong-type/node.js +125 -0
  55. package/node_modules/strong-type/package.json +61 -0
  56. package/package.json +95 -0
  57. package/runtime/ARCANE_RUNTIME_RELEASE.json +791 -0
  58. package/runtime/arcane/components/app-bar.html +468 -0
  59. package/runtime/arcane/components/assistant-panel.html +715 -0
  60. package/runtime/arcane/components/calculator.html +8 -0
  61. package/runtime/arcane/components/chart.html +655 -0
  62. package/runtime/arcane/components/chat.html +1225 -0
  63. package/runtime/arcane/components/conversation-view.html +13 -0
  64. package/runtime/arcane/components/dashboard-config.html +341 -0
  65. package/runtime/arcane/components/data-maintenance.html +112 -0
  66. package/runtime/arcane/components/data-view.html +92 -0
  67. package/runtime/arcane/components/directory-picker.html +197 -0
  68. package/runtime/arcane/components/document-inspector.html +252 -0
  69. package/runtime/arcane/components/file-drop.html +264 -0
  70. package/runtime/arcane/components/file-inspector.html +293 -0
  71. package/runtime/arcane/components/file-manager.html +1715 -0
  72. package/runtime/arcane/components/header.html +142 -0
  73. package/runtime/arcane/components/integration-settings.html +14 -0
  74. package/runtime/arcane/components/local-ai-status.html +360 -0
  75. package/runtime/arcane/components/markdown-document.html +1048 -0
  76. package/runtime/arcane/components/markdown-editor.html +360 -0
  77. package/runtime/arcane/components/media-embed.html +8 -0
  78. package/runtime/arcane/components/modal.html +402 -0
  79. package/runtime/arcane/components/output-panel.html +259 -0
  80. package/runtime/arcane/components/preferences-form.html +135 -0
  81. package/runtime/arcane/components/record-timeline.html +105 -0
  82. package/runtime/arcane/components/relationship-board.html +116 -0
  83. package/runtime/arcane/components/screen-capture.html +8 -0
  84. package/runtime/arcane/components/source-code-viewer.html +441 -0
  85. package/runtime/arcane/components/source-explanation.html +124 -0
  86. package/runtime/arcane/components/speech.html +365 -0
  87. package/runtime/arcane/components/summary-strip.html +177 -0
  88. package/runtime/arcane/components/table.html +77 -0
  89. package/runtime/arcane/components/task-progress.html +282 -0
  90. package/runtime/arcane/components/terminal-workspace.html +65 -0
  91. package/runtime/arcane/components/theme-editor.html +41 -0
  92. package/runtime/arcane/components/theme-switcher.html +46 -0
  93. package/runtime/arcane/components/unified-inbox.html +20 -0
  94. package/runtime/arcane/components/voice-transcription.html +476 -0
  95. package/runtime/arcane/components/weather-widget.html +8 -0
  96. package/runtime/arcane/components/web-navigator.html +239 -0
  97. package/runtime/arcane/css/communications.css +1 -0
  98. package/runtime/arcane/css/dashboard-config.css +45 -0
  99. package/runtime/arcane/css/document-site.css +981 -0
  100. package/runtime/arcane/css/layout.css +438 -0
  101. package/runtime/arcane/css/primitives.css +321 -0
  102. package/runtime/arcane/css/theme.css +112 -0
  103. package/runtime/arcane/css/utility-workspace.css +1 -0
  104. package/runtime/arcane/entities/ApiModelRecord.js +20 -0
  105. package/runtime/arcane/entities/Calculation.js +13 -0
  106. package/runtime/arcane/entities/Chat.js +581 -0
  107. package/runtime/arcane/entities/CommunicationMessage.js +29 -0
  108. package/runtime/arcane/entities/CommunicationThread.js +21 -0
  109. package/runtime/arcane/entities/Document.js +10 -0
  110. package/runtime/arcane/entities/File.js +143 -0
  111. package/runtime/arcane/entities/Image.js +135 -0
  112. package/runtime/arcane/entities/IntentEnvelope.js +834 -0
  113. package/runtime/arcane/entities/Preference.js +83 -0
  114. package/runtime/arcane/entities/TWiNPolicyDecision.js +1092 -0
  115. package/runtime/arcane/entities/TerminalSession.js +46 -0
  116. package/runtime/arcane/entities/Theme.js +107 -0
  117. package/runtime/arcane/entities/User.js +1046 -0
  118. package/runtime/arcane/entities/Weather.js +23 -0
  119. package/runtime/arcane/img/arcane-os-everywhere.png +0 -0
  120. package/runtime/arcane/img/arrow-left.png +0 -0
  121. package/runtime/arcane/img/arrow-right.png +0 -0
  122. package/runtime/arcane/img/doc.svg +5 -0
  123. package/runtime/arcane/img/folder.svg +4 -0
  124. package/runtime/arcane/img/image.svg +5 -0
  125. package/runtime/arcane/img/refresh.png +0 -0
  126. package/runtime/arcane/img/send.svg +9 -0
  127. package/runtime/arcane/img/trash.svg +5 -0
  128. package/runtime/arcane/img/upload.svg +5 -0
  129. package/runtime/arcane/modules/AI.js +2048 -0
  130. package/runtime/arcane/modules/AIPreferenceRuntime.js +32 -0
  131. package/runtime/arcane/modules/AIPreferenceTuple.js +92 -0
  132. package/runtime/arcane/modules/AIResponseLength.js +42 -0
  133. package/runtime/arcane/modules/AIResponseURLPolicy.js +626 -0
  134. package/runtime/arcane/modules/AnsiText.js +53 -0
  135. package/runtime/arcane/modules/ApiModelDatabase.js +25 -0
  136. package/runtime/arcane/modules/AppDataScope.js +245 -0
  137. package/runtime/arcane/modules/AppearancePreferences.js +28 -0
  138. package/runtime/arcane/modules/ArcaneCommunicationBridge.js +22 -0
  139. package/runtime/arcane/modules/ArcaneNavigationPolicy.js +135 -0
  140. package/runtime/arcane/modules/ArcaneNetworkPolicy.js +255 -0
  141. package/runtime/arcane/modules/AsyncBoundary.js +161 -0
  142. package/runtime/arcane/modules/BrowserTestSuite.js +326 -0
  143. package/runtime/arcane/modules/CalculatorEngine.js +20 -0
  144. package/runtime/arcane/modules/CaseEvidenceIndexer.js +134 -0
  145. package/runtime/arcane/modules/ChartLibrary.js +35 -0
  146. package/runtime/arcane/modules/ChatRecords.js +13 -0
  147. package/runtime/arcane/modules/CommunicationAppController.js +43 -0
  148. package/runtime/arcane/modules/CommunicationHub.js +16 -0
  149. package/runtime/arcane/modules/CommunicationPreferences.js +13 -0
  150. package/runtime/arcane/modules/CommunicationProviderRegistry.js +16 -0
  151. package/runtime/arcane/modules/ComponentContracts.js +586 -0
  152. package/runtime/arcane/modules/ConfiguredAIChatSession.js +288 -0
  153. package/runtime/arcane/modules/ConversationActionItems.js +488 -0
  154. package/runtime/arcane/modules/ConversationClosingReport.js +274 -0
  155. package/runtime/arcane/modules/ConversationTimebox.js +527 -0
  156. package/runtime/arcane/modules/CoreLocalModelCatalog.js +255 -0
  157. package/runtime/arcane/modules/DBLS.js +171 -0
  158. package/runtime/arcane/modules/DBOPFS.js +1154 -0
  159. package/runtime/arcane/modules/DBOPFSWorker.js +116 -0
  160. package/runtime/arcane/modules/DataMaintenance.js +91 -0
  161. package/runtime/arcane/modules/DevelopmentWorkspace.js +74 -0
  162. package/runtime/arcane/modules/DirectoryPicker.js +109 -0
  163. package/runtime/arcane/modules/DocumentNavigation.js +223 -0
  164. package/runtime/arcane/modules/Errors.js +1025 -0
  165. package/runtime/arcane/modules/GifEncoder.js +29 -0
  166. package/runtime/arcane/modules/HTMLImport.js +114 -0
  167. package/runtime/arcane/modules/InMemoryCommunicationProvider.js +14 -0
  168. package/runtime/arcane/modules/IsolatedModelQuestionRunner.js +275 -0
  169. package/runtime/arcane/modules/LocalAIReadiness.js +870 -0
  170. package/runtime/arcane/modules/LocalAIReadinessController.js +156 -0
  171. package/runtime/arcane/modules/MD.js +111 -0
  172. package/runtime/arcane/modules/Mail.js +352 -0
  173. package/runtime/arcane/modules/MailTransport.mjs +180 -0
  174. package/runtime/arcane/modules/Marked.min.js +71 -0
  175. package/runtime/arcane/modules/MemoryRecords.js +44 -0
  176. package/runtime/arcane/modules/MessageAdvisory.js +38 -0
  177. package/runtime/arcane/modules/ModelDefinition.js +189 -0
  178. package/runtime/arcane/modules/Ollama.js +74 -0
  179. package/runtime/arcane/modules/OllamaModelIdentifier.js +21 -0
  180. package/runtime/arcane/modules/OllamaSettings.js +24 -0
  181. package/runtime/arcane/modules/OpenMeteoWeatherProvider.js +14 -0
  182. package/runtime/arcane/modules/PreferenceStore.js +109 -0
  183. package/runtime/arcane/modules/QRCode.min.js +1 -0
  184. package/runtime/arcane/modules/Questionnaire.js +61 -0
  185. package/runtime/arcane/modules/RecordLinkIndex.js +24 -0
  186. package/runtime/arcane/modules/RecordPassageIndex.js +222 -0
  187. package/runtime/arcane/modules/RecordReviewStore.js +94 -0
  188. package/runtime/arcane/modules/RevocableProjectionLedger.js +1623 -0
  189. package/runtime/arcane/modules/RiskSignalAnalyzer.js +37 -0
  190. package/runtime/arcane/modules/ScamRiskPolicy.js +62 -0
  191. package/runtime/arcane/modules/ScopedOPFSCache.js +183 -0
  192. package/runtime/arcane/modules/ScreenCapture.js +20 -0
  193. package/runtime/arcane/modules/SpeechPlayback.js +581 -0
  194. package/runtime/arcane/modules/StaticDocumentCatalog.js +1248 -0
  195. package/runtime/arcane/modules/SystemAppearance.js +20 -0
  196. package/runtime/arcane/modules/SystemPlatformPresentation.js +51 -0
  197. package/runtime/arcane/modules/SystemToolRegistry.js +28 -0
  198. package/runtime/arcane/modules/TerminalClient.js +52 -0
  199. package/runtime/arcane/modules/TerminalCommandRegistry.js +50 -0
  200. package/runtime/arcane/modules/ThemeBootstrap.js +26 -0
  201. package/runtime/arcane/modules/ThemeManager.js +131 -0
  202. package/runtime/arcane/modules/TimeGuard.js +149 -0
  203. package/runtime/arcane/modules/ToolCallRouter.js +83 -0
  204. package/runtime/arcane/modules/WaitForComponent.js +102 -0
  205. package/runtime/arcane/modules/YouTubeMedia.js +16 -0
  206. package/runtime/arcane/modules/uPlot.LICENSE.txt +21 -0
  207. package/runtime/arcane/modules/uPlot.iife.min.js +2 -0
  208. package/runtime/arcane/modules/uPlot.min.css +1 -0
  209. package/runtime/arcane/security/arcane-network-policy.json +6 -0
  210. package/runtime/strong-type/index.js +352 -0
  211. package/runtime/strong-type/licence +21 -0
  212. package/runtime/strong-type/package.json +45 -0
  213. package/schemas/arcane-app-bundle.schema.json +125 -0
  214. package/schemas/arcane-app.schema.json +329 -0
  215. package/schemas/arcane-lock.schema.json +86 -0
  216. package/schemas/arcane-package.schema.json +224 -0
  217. package/schemas/cli-event.schema.json +122 -0
  218. package/schemas/event-stack.schema.json +152 -0
  219. package/schemas/native-build-plan.schema.json +176 -0
  220. package/schemas/target-adapter.schema.json +117 -0
  221. package/src/app-descriptor.mjs +500 -0
  222. package/src/cli/main.mjs +561 -0
  223. package/src/constants.mjs +31 -0
  224. package/src/dev-server.mjs +718 -0
  225. package/src/doctor.mjs +315 -0
  226. package/src/dom-event-instrumentation.mjs +594 -0
  227. package/src/errors.mjs +75 -0
  228. package/src/event-manager.mjs +1342 -0
  229. package/src/event-queue.mjs +138 -0
  230. package/src/events.mjs +219 -0
  231. package/src/index.mjs +177 -0
  232. package/src/integrated-provider-loader.mjs +432 -0
  233. package/src/native-plan.mjs +698 -0
  234. package/src/native-provider-loader.mjs +1126 -0
  235. package/src/packager/core.mjs +2691 -0
  236. package/src/process.mjs +353 -0
  237. package/src/release-bundle.mjs +2523 -0
  238. package/src/repository.mjs +90 -0
  239. package/src/runtime.mjs +452 -0
  240. package/src/scaffold.mjs +380 -0
  241. package/src/targets/index.mjs +436 -0
  242. package/src/templates/assets/app-icon.png +0 -0
  243. package/src/templates/workspace-template.mjs +388 -0
  244. package/src/testing-loader.mjs +9 -0
  245. package/src/testing.mjs +427 -0
  246. package/src/toolchain.mjs +1335 -0
  247. package/src/update-check.mjs +307 -0
  248. package/src/workspace.mjs +449 -0
@@ -0,0 +1,2632 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "sdkVersion": "0.1.0-dev.5",
4
+ "environment": {
5
+ "runtime": "Node.js",
6
+ "minimumVersion": "22.23.2",
7
+ "moduleSystem": "ESM"
8
+ },
9
+ "memberCount": 158,
10
+ "members": [
11
+ {
12
+ "id": "root:APP_BUNDLE_DESCRIPTOR_NAME",
13
+ "name": "APP_BUNDLE_DESCRIPTOR_NAME",
14
+ "displayName": "APP_BUNDLE_DESCRIPTOR_NAME",
15
+ "kind": "constant",
16
+ "signature": "const APP_BUNDLE_DESCRIPTOR_NAME",
17
+ "entrypoints": [
18
+ "arcane-os",
19
+ "arcane-os/release-bundle"
20
+ ],
21
+ "primaryImport": "arcane-os",
22
+ "group": "Packaging and release bundles",
23
+ "summary": "Canonical descriptor filename stored in an external application release bundle.",
24
+ "availability": "Node",
25
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
26
+ "normalization": "Exact immutable SDK value"
27
+ },
28
+ {
29
+ "id": "root:APP_BUNDLE_EXTENSION",
30
+ "name": "APP_BUNDLE_EXTENSION",
31
+ "displayName": "APP_BUNDLE_EXTENSION",
32
+ "kind": "constant",
33
+ "signature": "const APP_BUNDLE_EXTENSION",
34
+ "entrypoints": [
35
+ "arcane-os",
36
+ "arcane-os/release-bundle"
37
+ ],
38
+ "primaryImport": "arcane-os",
39
+ "group": "Packaging and release bundles",
40
+ "summary": "Required filename extension for deterministic external application release bundles.",
41
+ "availability": "Node",
42
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
43
+ "normalization": "Exact immutable SDK value"
44
+ },
45
+ {
46
+ "id": "root:APP_BUNDLE_FORMAT",
47
+ "name": "APP_BUNDLE_FORMAT",
48
+ "displayName": "APP_BUNDLE_FORMAT",
49
+ "kind": "constant",
50
+ "signature": "const APP_BUNDLE_FORMAT",
51
+ "entrypoints": [
52
+ "arcane-os",
53
+ "arcane-os/release-bundle"
54
+ ],
55
+ "primaryImport": "arcane-os",
56
+ "group": "Packaging and release bundles",
57
+ "summary": "Canonical archive encoding used by external application release bundles.",
58
+ "availability": "Node",
59
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
60
+ "normalization": "Exact immutable SDK value"
61
+ },
62
+ {
63
+ "id": "root:APP_BUNDLE_KIND",
64
+ "name": "APP_BUNDLE_KIND",
65
+ "displayName": "APP_BUNDLE_KIND",
66
+ "kind": "constant",
67
+ "signature": "const APP_BUNDLE_KIND",
68
+ "entrypoints": [
69
+ "arcane-os",
70
+ "arcane-os/release-bundle"
71
+ ],
72
+ "primaryImport": "arcane-os",
73
+ "group": "Packaging and release bundles",
74
+ "summary": "Stable manifest kind identifying an Arcane application release bundle.",
75
+ "availability": "Node",
76
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
77
+ "normalization": "Exact immutable SDK value"
78
+ },
79
+ {
80
+ "id": "root:APP_BUNDLE_LIMITS",
81
+ "name": "APP_BUNDLE_LIMITS",
82
+ "displayName": "APP_BUNDLE_LIMITS",
83
+ "kind": "constant",
84
+ "signature": "const APP_BUNDLE_LIMITS",
85
+ "entrypoints": [
86
+ "arcane-os",
87
+ "arcane-os/release-bundle"
88
+ ],
89
+ "primaryImport": "arcane-os",
90
+ "group": "Packaging and release bundles",
91
+ "summary": "Frozen compressed-size, expanded-size, entry-count, and path limits enforced by bundle creation and verification.",
92
+ "availability": "Node",
93
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
94
+ "normalization": "Exact immutable SDK value"
95
+ },
96
+ {
97
+ "id": "root:APP_BUNDLE_MANIFEST_NAME",
98
+ "name": "APP_BUNDLE_MANIFEST_NAME",
99
+ "displayName": "APP_BUNDLE_MANIFEST_NAME",
100
+ "kind": "constant",
101
+ "signature": "const APP_BUNDLE_MANIFEST_NAME",
102
+ "entrypoints": [
103
+ "arcane-os",
104
+ "arcane-os/release-bundle"
105
+ ],
106
+ "primaryImport": "arcane-os",
107
+ "group": "Packaging and release bundles",
108
+ "summary": "Canonical bundle-envelope manifest filename.",
109
+ "availability": "Node",
110
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
111
+ "normalization": "Exact immutable SDK value"
112
+ },
113
+ {
114
+ "id": "root:APP_BUNDLE_RELEASE_PATH",
115
+ "name": "APP_BUNDLE_RELEASE_PATH",
116
+ "displayName": "APP_BUNDLE_RELEASE_PATH",
117
+ "kind": "constant",
118
+ "signature": "const APP_BUNDLE_RELEASE_PATH",
119
+ "entrypoints": [
120
+ "arcane-os",
121
+ "arcane-os/release-bundle"
122
+ ],
123
+ "primaryImport": "arcane-os",
124
+ "group": "Packaging and release bundles",
125
+ "summary": "Canonical path of the packaged release manifest inside a bundle payload.",
126
+ "availability": "Node",
127
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
128
+ "normalization": "Exact immutable SDK value"
129
+ },
130
+ {
131
+ "id": "root:APP_BUNDLE_SCHEMA_VERSION",
132
+ "name": "APP_BUNDLE_SCHEMA_VERSION",
133
+ "displayName": "APP_BUNDLE_SCHEMA_VERSION",
134
+ "kind": "constant",
135
+ "signature": "const APP_BUNDLE_SCHEMA_VERSION",
136
+ "entrypoints": [
137
+ "arcane-os",
138
+ "arcane-os/release-bundle"
139
+ ],
140
+ "primaryImport": "arcane-os",
141
+ "group": "Packaging and release bundles",
142
+ "summary": "Current immutable bundle-envelope schema version.",
143
+ "availability": "Node",
144
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
145
+ "normalization": "Exact immutable SDK value"
146
+ },
147
+ {
148
+ "id": "root:APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
149
+ "name": "APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
150
+ "displayName": "APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
151
+ "kind": "constant",
152
+ "signature": "const APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
153
+ "entrypoints": [
154
+ "arcane-os/release-bundle"
155
+ ],
156
+ "primaryImport": "arcane-os/release-bundle",
157
+ "group": "Packaging and release bundles",
158
+ "summary": "Exact SDK generations accepted by this bundle verifier.",
159
+ "availability": "Node",
160
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
161
+ "normalization": "Exact immutable SDK value"
162
+ },
163
+ {
164
+ "id": "root:APP_CONFIG_NAME",
165
+ "name": "APP_CONFIG_NAME",
166
+ "displayName": "APP_CONFIG_NAME",
167
+ "kind": "constant",
168
+ "signature": "const APP_CONFIG_NAME",
169
+ "entrypoints": [
170
+ "arcane-os/packager"
171
+ ],
172
+ "primaryImport": "arcane-os/packager",
173
+ "group": "Packaging and release bundles",
174
+ "summary": "Canonical schema-1 application package configuration filename used by the packager.",
175
+ "availability": "Node",
176
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
177
+ "normalization": "Exact immutable SDK value"
178
+ },
179
+ {
180
+ "id": "root:APP_DESCRIPTOR_NAME",
181
+ "name": "APP_DESCRIPTOR_NAME",
182
+ "displayName": "APP_DESCRIPTOR_NAME",
183
+ "kind": "constant",
184
+ "signature": "const APP_DESCRIPTOR_NAME",
185
+ "entrypoints": [
186
+ "arcane-os"
187
+ ],
188
+ "primaryImport": "arcane-os",
189
+ "group": "Runtime and app descriptors",
190
+ "summary": "Canonical schema-2 application descriptor filename.",
191
+ "availability": "Node",
192
+ "protocol": "Node ESM",
193
+ "normalization": "Exact immutable SDK value"
194
+ },
195
+ {
196
+ "id": "root:APP_DESCRIPTOR_SCHEMA_VERSION",
197
+ "name": "APP_DESCRIPTOR_SCHEMA_VERSION",
198
+ "displayName": "APP_DESCRIPTOR_SCHEMA_VERSION",
199
+ "kind": "constant",
200
+ "signature": "const APP_DESCRIPTOR_SCHEMA_VERSION",
201
+ "entrypoints": [
202
+ "arcane-os"
203
+ ],
204
+ "primaryImport": "arcane-os",
205
+ "group": "Runtime and app descriptors",
206
+ "summary": "Current authored application descriptor schema version.",
207
+ "availability": "Node",
208
+ "protocol": "Node ESM",
209
+ "normalization": "Exact immutable SDK value"
210
+ },
211
+ {
212
+ "id": "root:appDescriptorSha256",
213
+ "name": "appDescriptorSha256",
214
+ "displayName": "appDescriptorSha256()",
215
+ "kind": "function",
216
+ "signature": "appDescriptorSha256(descriptor)",
217
+ "entrypoints": [
218
+ "arcane-os"
219
+ ],
220
+ "primaryImport": "arcane-os",
221
+ "group": "Runtime and app descriptors",
222
+ "summary": "Returns the SHA-256 digest of the canonical validated schema-2 application descriptor.",
223
+ "availability": "Node",
224
+ "protocol": "Node ESM",
225
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
226
+ },
227
+ {
228
+ "id": "root:ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
229
+ "name": "ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
230
+ "displayName": "ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
231
+ "kind": "constant",
232
+ "signature": "const ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
233
+ "entrypoints": [
234
+ "arcane-os",
235
+ "arcane-os/integrated-provider"
236
+ ],
237
+ "primaryImport": "arcane-os",
238
+ "group": "Targets, native plans, and providers",
239
+ "summary": "Frozen repository-relative path of Arcane OS's integrated shared-development provider.",
240
+ "availability": "Node; selected browser/native target or provider as documented",
241
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
242
+ "normalization": "Exact immutable SDK value"
243
+ },
244
+ {
245
+ "id": "root:ARCANE_MACHINE_BUNDLE_VERSION",
246
+ "name": "ARCANE_MACHINE_BUNDLE_VERSION",
247
+ "displayName": "ARCANE_MACHINE_BUNDLE_VERSION",
248
+ "kind": "constant",
249
+ "signature": "const ARCANE_MACHINE_BUNDLE_VERSION",
250
+ "entrypoints": [
251
+ "arcane-os"
252
+ ],
253
+ "primaryImport": "arcane-os",
254
+ "group": "Identity and protocol constants",
255
+ "summary": "Exact Arcane machine-bundle generation paired with this SDK runtime.",
256
+ "availability": "Node",
257
+ "protocol": "Node ESM",
258
+ "normalization": "Exact immutable SDK value"
259
+ },
260
+ {
261
+ "id": "root:ARCANE_NATIVE_PROVIDER_PATHS",
262
+ "name": "ARCANE_NATIVE_PROVIDER_PATHS",
263
+ "displayName": "ARCANE_NATIVE_PROVIDER_PATHS",
264
+ "kind": "constant",
265
+ "signature": "const ARCANE_NATIVE_PROVIDER_PATHS",
266
+ "entrypoints": [
267
+ "arcane-os",
268
+ "arcane-os/native-provider"
269
+ ],
270
+ "primaryImport": "arcane-os",
271
+ "group": "Targets, native plans, and providers",
272
+ "summary": "Frozen target-to-provider path registry for native development providers.",
273
+ "availability": "Node; selected browser/native target or provider as documented",
274
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
275
+ "normalization": "Exact immutable SDK value"
276
+ },
277
+ {
278
+ "id": "root:ARCANE_PORTABLE_PROVIDER_PATH",
279
+ "name": "ARCANE_PORTABLE_PROVIDER_PATH",
280
+ "displayName": "ARCANE_PORTABLE_PROVIDER_PATH",
281
+ "kind": "constant",
282
+ "signature": "const ARCANE_PORTABLE_PROVIDER_PATH",
283
+ "entrypoints": [
284
+ "arcane-os",
285
+ "arcane-os/native-provider"
286
+ ],
287
+ "primaryImport": "arcane-os",
288
+ "group": "Targets, native plans, and providers",
289
+ "summary": "Compatibility alias for the portable provider path.",
290
+ "availability": "Node; selected browser/native target or provider as documented",
291
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
292
+ "normalization": "Exact immutable SDK value"
293
+ },
294
+ {
295
+ "id": "root:ARCANE_PROTOCOL",
296
+ "name": "ARCANE_PROTOCOL",
297
+ "displayName": "ARCANE_PROTOCOL",
298
+ "kind": "constant",
299
+ "signature": "const ARCANE_PROTOCOL",
300
+ "entrypoints": [
301
+ "arcane-os"
302
+ ],
303
+ "primaryImport": "arcane-os",
304
+ "group": "Identity and protocol constants",
305
+ "summary": "Application-facing Arcane bridge protocol required by this SDK.",
306
+ "availability": "Node",
307
+ "protocol": "Node ESM",
308
+ "normalization": "Exact immutable SDK value"
309
+ },
310
+ {
311
+ "id": "root:ARCANE_UPSTREAM_COMMIT",
312
+ "name": "ARCANE_UPSTREAM_COMMIT",
313
+ "displayName": "ARCANE_UPSTREAM_COMMIT",
314
+ "kind": "constant",
315
+ "signature": "const ARCANE_UPSTREAM_COMMIT",
316
+ "entrypoints": [
317
+ "arcane-os"
318
+ ],
319
+ "primaryImport": "arcane-os",
320
+ "group": "Identity and protocol constants",
321
+ "summary": "Exact Arcane OS source commit from which the synchronized runtime was built.",
322
+ "availability": "Node",
323
+ "protocol": "Node ESM",
324
+ "normalization": "Exact immutable SDK value"
325
+ },
326
+ {
327
+ "id": "root:ARCANE_UPSTREAM_REPOSITORY",
328
+ "name": "ARCANE_UPSTREAM_REPOSITORY",
329
+ "displayName": "ARCANE_UPSTREAM_REPOSITORY",
330
+ "kind": "constant",
331
+ "signature": "const ARCANE_UPSTREAM_REPOSITORY",
332
+ "entrypoints": [
333
+ "arcane-os"
334
+ ],
335
+ "primaryImport": "arcane-os",
336
+ "group": "Identity and protocol constants",
337
+ "summary": "Canonical upstream Arcane OS repository URL.",
338
+ "availability": "Node",
339
+ "protocol": "Node ESM",
340
+ "normalization": "Exact immutable SDK value"
341
+ },
342
+ {
343
+ "id": "root:ArcaneError",
344
+ "name": "ArcaneError",
345
+ "displayName": "ArcaneError",
346
+ "kind": "class",
347
+ "signature": "new ArcaneError(code, message, {details, cause, exitCode}={})",
348
+ "entrypoints": [
349
+ "arcane-os"
350
+ ],
351
+ "primaryImport": "arcane-os",
352
+ "group": "Errors",
353
+ "summary": "Normalized SDK error class carrying a stable code, human message, optional resolution details, cause, and exit status.",
354
+ "availability": "Node",
355
+ "protocol": "Node ESM",
356
+ "normalization": "ArcaneError and JSON-safe error normalization"
357
+ },
358
+ {
359
+ "id": "root:assertIntegratedNativeToolchain",
360
+ "name": "assertIntegratedNativeToolchain",
361
+ "displayName": "assertIntegratedNativeToolchain()",
362
+ "kind": "function",
363
+ "signature": "assertIntegratedNativeToolchain({workspaceMode, workspaceRoot, toolchainRoot, target}={})",
364
+ "entrypoints": [
365
+ "arcane-os",
366
+ "arcane-os/toolchain"
367
+ ],
368
+ "primaryImport": "arcane-os",
369
+ "group": "Targets, native plans, and providers",
370
+ "summary": "Requires an integrated workspace and selected native toolchain root to resolve to the same canonical Arcane checkout.",
371
+ "availability": "Node; selected browser/native target or provider as documented",
372
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
373
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
374
+ },
375
+ {
376
+ "id": "root:assertIntegratedPortableToolchain",
377
+ "name": "assertIntegratedPortableToolchain",
378
+ "displayName": "assertIntegratedPortableToolchain()",
379
+ "kind": "function",
380
+ "signature": "assertIntegratedPortableToolchain(options={})",
381
+ "entrypoints": [
382
+ "arcane-os",
383
+ "arcane-os/toolchain"
384
+ ],
385
+ "primaryImport": "arcane-os",
386
+ "group": "Targets, native plans, and providers",
387
+ "summary": "Portable-target compatibility wrapper for the integrated native checkout assertion.",
388
+ "availability": "Node; selected browser/native target or provider as documented",
389
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
390
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
391
+ },
392
+ {
393
+ "id": "root:assertNativeApplicationToolchainCompatibility",
394
+ "name": "assertNativeApplicationToolchainCompatibility",
395
+ "displayName": "assertNativeApplicationToolchainCompatibility()",
396
+ "kind": "function",
397
+ "signature": "assertNativeApplicationToolchainCompatibility({prepared, toolchainReceipt}={})",
398
+ "entrypoints": [
399
+ "arcane-os",
400
+ "arcane-os/toolchain"
401
+ ],
402
+ "primaryImport": "arcane-os",
403
+ "group": "Targets, native plans, and providers",
404
+ "summary": "Checks a prepared native toolchain receipt against the selected application's declared Core requirements.",
405
+ "availability": "Node; selected browser/native target or provider as documented",
406
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
407
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
408
+ },
409
+ {
410
+ "id": "root:assertNativeToolchainCompatibility",
411
+ "name": "assertNativeToolchainCompatibility",
412
+ "displayName": "assertNativeToolchainCompatibility()",
413
+ "kind": "function",
414
+ "signature": "assertNativeToolchainCompatibility({ appDescriptor, toolchainReceipt, minimumCoreVersion }={})",
415
+ "entrypoints": [
416
+ "arcane-os",
417
+ "arcane-os/native"
418
+ ],
419
+ "primaryImport": "arcane-os",
420
+ "group": "Targets, native plans, and providers",
421
+ "summary": "Validates that a toolchain receipt provides the required Core version, protocol, features, capabilities, and methods.",
422
+ "availability": "Node; selected browser/native target or provider as documented",
423
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
424
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
425
+ },
426
+ {
427
+ "id": "root:assertPortableToolchainCompatibility",
428
+ "name": "assertPortableToolchainCompatibility",
429
+ "displayName": "assertPortableToolchainCompatibility()",
430
+ "kind": "function",
431
+ "signature": "assertPortableToolchainCompatibility(options={})",
432
+ "entrypoints": [
433
+ "arcane-os",
434
+ "arcane-os/toolchain"
435
+ ],
436
+ "primaryImport": "arcane-os",
437
+ "group": "Targets, native plans, and providers",
438
+ "summary": "Portable-target compatibility wrapper for native application/toolchain admission.",
439
+ "availability": "Node; selected browser/native target or provider as documented",
440
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
441
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
442
+ },
443
+ {
444
+ "id": "root:assessArcaneOllama",
445
+ "name": "assessArcaneOllama",
446
+ "displayName": "assessArcaneOllama()",
447
+ "kind": "function",
448
+ "signature": "async assessArcaneOllama({ signal, onEvent, platform=process.platform, run=runProcess, fileExists=exists }={})",
449
+ "entrypoints": [
450
+ "arcane-os"
451
+ ],
452
+ "primaryImport": "arcane-os",
453
+ "group": "Workspace, doctor, repository, and server",
454
+ "summary": "Performs a read-only Microsoft NT assessment of the managed ArcaneOllama service and reports unsupported hosts honestly.",
455
+ "availability": "Node; Microsoft NT managed-service assessment",
456
+ "protocol": "Node ESM",
457
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
458
+ },
459
+ {
460
+ "id": "root:authenticateAppReleaseAuthority",
461
+ "name": "authenticateAppReleaseAuthority",
462
+ "displayName": "authenticateAppReleaseAuthority()",
463
+ "kind": "function",
464
+ "signature": "async authenticateAppReleaseAuthority(receipt, { releaseRoot, expectedPackageConfig, expectedDescriptor, signal }={})",
465
+ "entrypoints": [
466
+ "arcane-os",
467
+ "arcane-os/packager"
468
+ ],
469
+ "primaryImport": "arcane-os",
470
+ "group": "Packaging and release bundles",
471
+ "summary": "Authenticates that a same-process app release receipt also carries authored descriptor authority for external delivery.",
472
+ "availability": "Node",
473
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
474
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
475
+ },
476
+ {
477
+ "id": "root:authenticateAppReleaseReceipt",
478
+ "name": "authenticateAppReleaseReceipt",
479
+ "displayName": "authenticateAppReleaseReceipt()",
480
+ "kind": "function",
481
+ "signature": "async authenticateAppReleaseReceipt(receipt, options={})",
482
+ "entrypoints": [
483
+ "arcane-os",
484
+ "arcane-os/packager"
485
+ ],
486
+ "primaryImport": "arcane-os",
487
+ "group": "Packaging and release bundles",
488
+ "summary": "Authenticates a same-process verified application release receipt against its exact current filesystem state.",
489
+ "availability": "Node",
490
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
491
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
492
+ },
493
+ {
494
+ "id": "root:authenticateNativeBuildPlan",
495
+ "name": "authenticateNativeBuildPlan",
496
+ "displayName": "authenticateNativeBuildPlan()",
497
+ "kind": "function",
498
+ "signature": "async authenticateNativeBuildPlan(plan, { expectedNativeBuilder, expectedTarget, signal, onEvent }={})",
499
+ "entrypoints": [
500
+ "arcane-os",
501
+ "arcane-os/native"
502
+ ],
503
+ "primaryImport": "arcane-os",
504
+ "group": "Targets, native plans, and providers",
505
+ "summary": "Authenticates an immutable same-process native build plan and its bound receipts before execution.",
506
+ "availability": "Node; selected browser/native target or provider as documented",
507
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
508
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
509
+ },
510
+ {
511
+ "id": "root:authenticateRuntimeReceipt",
512
+ "name": "authenticateRuntimeReceipt",
513
+ "displayName": "authenticateRuntimeReceipt()",
514
+ "kind": "function",
515
+ "signature": "async authenticateRuntimeReceipt(receipt, { runtimeRoot=path.join(sdkRoot, 'runtime'), signal }={})",
516
+ "entrypoints": [
517
+ "arcane-os"
518
+ ],
519
+ "primaryImport": "arcane-os",
520
+ "group": "Runtime and app descriptors",
521
+ "summary": "Authenticates a same-process runtime receipt against the exact runtime root and current file identities.",
522
+ "availability": "Node",
523
+ "protocol": "Node ESM",
524
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
525
+ },
526
+ {
527
+ "id": "root:authenticateSharedPayloadSnapshot",
528
+ "name": "authenticateSharedPayloadSnapshot",
529
+ "displayName": "authenticateSharedPayloadSnapshot()",
530
+ "kind": "function",
531
+ "signature": "async authenticateSharedPayloadSnapshot(receipt, options={})",
532
+ "entrypoints": [
533
+ "arcane-os",
534
+ "arcane-os/packager"
535
+ ],
536
+ "primaryImport": "arcane-os",
537
+ "group": "Packaging and release bundles",
538
+ "summary": "Authenticates the same-process immutable shared-payload snapshot consumed by app packaging.",
539
+ "availability": "Node",
540
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
541
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
542
+ },
543
+ {
544
+ "id": "root:buildApplication",
545
+ "name": "buildApplication",
546
+ "displayName": "buildApplication()",
547
+ "kind": "function",
548
+ "signature": "async buildApplication(options={})",
549
+ "entrypoints": [
550
+ "arcane-os",
551
+ "arcane-os/toolchain"
552
+ ],
553
+ "primaryImport": "arcane-os",
554
+ "group": "Headless toolchain operations",
555
+ "summary": "Builds and retained-verifies one explicitly selected native target through one paired provider.",
556
+ "availability": "Node; selected operation may produce browser or native output",
557
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
558
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
559
+ },
560
+ {
561
+ "id": "root:buildTarget",
562
+ "name": "buildTarget",
563
+ "displayName": "buildTarget()",
564
+ "kind": "function",
565
+ "signature": "async buildTarget(options={})",
566
+ "entrypoints": [
567
+ "arcane-os",
568
+ "arcane-os/targets"
569
+ ],
570
+ "primaryImport": "arcane-os",
571
+ "group": "Targets, native plans, and providers",
572
+ "summary": "Invokes one target adapter build with explicit app, target, and artifact inputs.",
573
+ "availability": "Node; selected browser/native target or provider as documented",
574
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
575
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
576
+ },
577
+ {
578
+ "id": "root:bumpVersion",
579
+ "name": "bumpVersion",
580
+ "displayName": "bumpVersion()",
581
+ "kind": "function",
582
+ "signature": "async bumpVersion(options)",
583
+ "entrypoints": [
584
+ "arcane-os/packager"
585
+ ],
586
+ "primaryImport": "arcane-os/packager",
587
+ "group": "Packaging and release bundles",
588
+ "summary": "Updates one selected app version with a validated semantic-version bump through the packager boundary.",
589
+ "availability": "Node",
590
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
591
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
592
+ },
593
+ {
594
+ "id": "root:bundleApplication",
595
+ "name": "bundleApplication",
596
+ "displayName": "bundleApplication()",
597
+ "kind": "function",
598
+ "signature": "async bundleApplication(options={})",
599
+ "entrypoints": [
600
+ "arcane-os",
601
+ "arcane-os/toolchain"
602
+ ],
603
+ "primaryImport": "arcane-os",
604
+ "group": "Headless toolchain operations",
605
+ "summary": "Creates one deterministic external application bundle from one authenticated packaged release.",
606
+ "availability": "Node; selected operation may produce browser or native output",
607
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
608
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
609
+ },
610
+ {
611
+ "id": "root:checkApplication",
612
+ "name": "checkApplication",
613
+ "displayName": "checkApplication()",
614
+ "kind": "function",
615
+ "signature": "async checkApplication(options={})",
616
+ "entrypoints": [
617
+ "arcane-os",
618
+ "arcane-os/toolchain"
619
+ ],
620
+ "primaryImport": "arcane-os",
621
+ "group": "Headless toolchain operations",
622
+ "summary": "Runs the selected application or integrated shared validation boundary.",
623
+ "availability": "Node; selected operation may produce browser or native output",
624
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
625
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
626
+ },
627
+ {
628
+ "id": "root:CLI_EVENT_PROTOCOL",
629
+ "name": "CLI_EVENT_PROTOCOL",
630
+ "displayName": "CLI_EVENT_PROTOCOL",
631
+ "kind": "constant",
632
+ "signature": "const CLI_EVENT_PROTOCOL",
633
+ "entrypoints": [
634
+ "arcane-os"
635
+ ],
636
+ "primaryImport": "arcane-os",
637
+ "group": "Identity and protocol constants",
638
+ "summary": "Version identifier for normalized CLI JSON and NDJSON event envelopes.",
639
+ "availability": "Node",
640
+ "protocol": "Node ESM",
641
+ "normalization": "Exact immutable SDK value"
642
+ },
643
+ {
644
+ "id": "root:CLI_NAME",
645
+ "name": "CLI_NAME",
646
+ "displayName": "CLI_NAME",
647
+ "kind": "constant",
648
+ "signature": "const CLI_NAME",
649
+ "entrypoints": [
650
+ "arcane-os"
651
+ ],
652
+ "primaryImport": "arcane-os",
653
+ "group": "Identity and protocol constants",
654
+ "summary": "Primary command name presented by the SDK.",
655
+ "availability": "Node",
656
+ "protocol": "Node ESM",
657
+ "normalization": "Exact immutable SDK value"
658
+ },
659
+ {
660
+ "id": "root:createApplication",
661
+ "name": "createApplication",
662
+ "displayName": "createApplication()",
663
+ "kind": "function",
664
+ "signature": "async createApplication(options={})",
665
+ "entrypoints": [
666
+ "arcane-os",
667
+ "arcane-os/toolchain"
668
+ ],
669
+ "primaryImport": "arcane-os",
670
+ "group": "Headless toolchain operations",
671
+ "summary": "Creates one new external application workspace through the shared headless toolchain.",
672
+ "availability": "Node; selected operation may produce browser or native output",
673
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
674
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
675
+ },
676
+ {
677
+ "id": "root:createAppReleaseBundle",
678
+ "name": "createAppReleaseBundle",
679
+ "displayName": "createAppReleaseBundle()",
680
+ "kind": "function",
681
+ "signature": "async createAppReleaseBundle({ receipt, releaseRoot, outputPath, overwrite=false, signal, onEvent }={})",
682
+ "entrypoints": [
683
+ "arcane-os",
684
+ "arcane-os/release-bundle"
685
+ ],
686
+ "primaryImport": "arcane-os",
687
+ "group": "Packaging and release bundles",
688
+ "summary": "Writes one deterministic USTAR+gzip external application bundle from an authenticated authored release receipt.",
689
+ "availability": "Node",
690
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
691
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
692
+ },
693
+ {
694
+ "id": "root:createCanonicalUstarHeader",
695
+ "name": "createCanonicalUstarHeader",
696
+ "displayName": "createCanonicalUstarHeader()",
697
+ "kind": "function",
698
+ "signature": "createCanonicalUstarHeader(entryPath, size)",
699
+ "entrypoints": [
700
+ "arcane-os",
701
+ "arcane-os/release-bundle"
702
+ ],
703
+ "primaryImport": "arcane-os",
704
+ "group": "Packaging and release bundles",
705
+ "summary": "Builds the exact 512-byte canonical USTAR header for one validated bundle entry.",
706
+ "availability": "Node",
707
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
708
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
709
+ },
710
+ {
711
+ "id": "root:createNativeBuildPlan",
712
+ "name": "createNativeBuildPlan",
713
+ "displayName": "createNativeBuildPlan()",
714
+ "kind": "function",
715
+ "signature": "async createNativeBuildPlan({ nativeBuilder, toolchainRoot, toolchainReceipt, appReleaseRoot, appReleaseReceipt, appDescriptor, dependencyReleases=[], providerGeneration, minimumCoreVersion, protectedRoots=[], outputRoot, targetRequest, signal, onEvent }={})",
716
+ "entrypoints": [
717
+ "arcane-os",
718
+ "arcane-os/native"
719
+ ],
720
+ "primaryImport": "arcane-os",
721
+ "group": "Targets, native plans, and providers",
722
+ "summary": "Creates one immutable, authenticated, single-attempt native plan binding app, dependencies, toolchain, request, and output roots.",
723
+ "availability": "Node; selected browser/native target or provider as documented",
724
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
725
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
726
+ },
727
+ {
728
+ "id": "root:createNativeTargetAdapter",
729
+ "name": "createNativeTargetAdapter",
730
+ "displayName": "createNativeTargetAdapter()",
731
+ "kind": "function",
732
+ "signature": "createNativeTargetAdapter({targetId, nativeBuilder}={})",
733
+ "entrypoints": [
734
+ "arcane-os",
735
+ "arcane-os/targets"
736
+ ],
737
+ "primaryImport": "arcane-os",
738
+ "group": "Targets, native plans, and providers",
739
+ "summary": "Adapts one validated native builder to the common target-adapter contract.",
740
+ "availability": "Node; selected browser/native target or provider as documented",
741
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
742
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
743
+ },
744
+ {
745
+ "id": "root:createReporter",
746
+ "name": "createReporter",
747
+ "displayName": "createReporter()",
748
+ "kind": "function",
749
+ "signature": "createReporter({ command, output='human', stdout=process.stdout, stderr=process.stderr, operationId=randomUUID(), clock=()=>new Date() }={})",
750
+ "entrypoints": [
751
+ "arcane-os",
752
+ "arcane-os/events"
753
+ ],
754
+ "primaryImport": "arcane-os",
755
+ "group": "Events, processes, and testing",
756
+ "summary": "Creates the ordered CLI reporter that normalizes accepted, progress, terminal, JSON, and NDJSON event delivery.",
757
+ "availability": "Node",
758
+ "protocol": "arcane-cli-events/1",
759
+ "normalization": "SDK event/error/report normalization"
760
+ },
761
+ {
762
+ "id": "root:createToolchain",
763
+ "name": "createToolchain",
764
+ "displayName": "createToolchain()",
765
+ "kind": "function",
766
+ "signature": "createToolchain(defaults={})",
767
+ "entrypoints": [
768
+ "arcane-os",
769
+ "arcane-os/toolchain"
770
+ ],
771
+ "primaryImport": "arcane-os",
772
+ "group": "Headless toolchain operations",
773
+ "summary": "Returns a frozen convenience object that applies shared defaults to every headless application operation.",
774
+ "availability": "Node; selected operation may produce browser or native output",
775
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
776
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
777
+ },
778
+ {
779
+ "id": "root:createWorkspace",
780
+ "name": "createWorkspace",
781
+ "displayName": "createWorkspace()",
782
+ "kind": "function",
783
+ "signature": "async createWorkspace({ targetPath, appId, displayName, target='browser', initializeGit=false, signal, onEvent })",
784
+ "entrypoints": [
785
+ "arcane-os"
786
+ ],
787
+ "primaryImport": "arcane-os",
788
+ "group": "Workspace, doctor, repository, and server",
789
+ "summary": "Scaffolds one new external repository-shaped workspace and one selected application.",
790
+ "availability": "Node",
791
+ "protocol": "Node ESM",
792
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
793
+ },
794
+ {
795
+ "id": "root:default",
796
+ "name": "default",
797
+ "displayName": "default()",
798
+ "kind": "function",
799
+ "signature": "default(name, optionsOrCallback, maybeCallback)",
800
+ "entrypoints": [
801
+ "arcane-os/testing"
802
+ ],
803
+ "primaryImport": "arcane-os/testing",
804
+ "group": "Events, processes, and testing",
805
+ "summary": "Default-export alias of the public `test` registration function.",
806
+ "availability": "Node",
807
+ "protocol": "Node ESM / owned process or test lifecycle",
808
+ "normalization": "SDK event/error/report normalization"
809
+ },
810
+ {
811
+ "id": "root:DEFAULT_TEST_TIMEOUT_MS",
812
+ "name": "DEFAULT_TEST_TIMEOUT_MS",
813
+ "displayName": "DEFAULT_TEST_TIMEOUT_MS",
814
+ "kind": "constant",
815
+ "signature": "const DEFAULT_TEST_TIMEOUT_MS",
816
+ "entrypoints": [
817
+ "arcane-os",
818
+ "arcane-os/testing"
819
+ ],
820
+ "primaryImport": "arcane-os",
821
+ "group": "Events, processes, and testing",
822
+ "summary": "Default timeout applied by the public isolated test API.",
823
+ "availability": "Node",
824
+ "protocol": "Node ESM / owned process or test lifecycle",
825
+ "normalization": "Exact immutable SDK value"
826
+ },
827
+ {
828
+ "id": "root:describeTargets",
829
+ "name": "describeTargets",
830
+ "displayName": "describeTargets()",
831
+ "kind": "function",
832
+ "signature": "async describeTargets(options={})",
833
+ "entrypoints": [
834
+ "arcane-os",
835
+ "arcane-os/toolchain"
836
+ ],
837
+ "primaryImport": "arcane-os",
838
+ "group": "Headless toolchain operations",
839
+ "summary": "Returns the normalized target catalog through the headless operation lifecycle.",
840
+ "availability": "Node; selected operation may produce browser or native output",
841
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
842
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
843
+ },
844
+ {
845
+ "id": "root:developApplication",
846
+ "name": "developApplication",
847
+ "displayName": "developApplication()",
848
+ "kind": "function",
849
+ "signature": "async developApplication(options={})",
850
+ "entrypoints": [
851
+ "arcane-os",
852
+ "arcane-os/toolchain"
853
+ ],
854
+ "primaryImport": "arcane-os",
855
+ "group": "Headless toolchain operations",
856
+ "summary": "Starts one owned browser development server for the selected application.",
857
+ "availability": "Node; selected operation may produce browser or native output",
858
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
859
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
860
+ },
861
+ {
862
+ "id": "root:discoverPackagerApps",
863
+ "name": "discoverPackagerApps",
864
+ "displayName": "discoverPackagerApps()",
865
+ "kind": "function",
866
+ "signature": "async discoverPackagerApps({workspaceRoot:requestedWorkspaceRoot})",
867
+ "entrypoints": [
868
+ "arcane-os"
869
+ ],
870
+ "primaryImport": "arcane-os",
871
+ "group": "Packaging and release bundles",
872
+ "summary": "Root-entry alias for the packager-specific application discovery function.",
873
+ "availability": "Node",
874
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
875
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
876
+ },
877
+ {
878
+ "id": "root:doctorApplication",
879
+ "name": "doctorApplication",
880
+ "displayName": "doctorApplication()",
881
+ "kind": "function",
882
+ "signature": "async doctorApplication(options={})",
883
+ "entrypoints": [
884
+ "arcane-os",
885
+ "arcane-os/toolchain"
886
+ ],
887
+ "primaryImport": "arcane-os",
888
+ "group": "Workspace, doctor, repository, and server",
889
+ "summary": "Runs the read-only SDK/runtime/workspace and optional local-AI diagnostic operation.",
890
+ "availability": "Node",
891
+ "protocol": "Node ESM",
892
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
893
+ },
894
+ {
895
+ "id": "root:doctorNativeTarget",
896
+ "name": "doctorNativeTarget",
897
+ "displayName": "doctorNativeTarget()",
898
+ "kind": "function",
899
+ "signature": "async doctorNativeTarget(options={})",
900
+ "entrypoints": [
901
+ "arcane-os",
902
+ "arcane-os/toolchain"
903
+ ],
904
+ "primaryImport": "arcane-os",
905
+ "group": "Targets, native plans, and providers",
906
+ "summary": "Loads and diagnoses one explicit native provider and target without building an application.",
907
+ "availability": "Node; selected browser/native target or provider as documented",
908
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
909
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
910
+ },
911
+ {
912
+ "id": "root:ERROR_CODES",
913
+ "name": "ERROR_CODES",
914
+ "displayName": "ERROR_CODES",
915
+ "kind": "constant",
916
+ "signature": "const ERROR_CODES",
917
+ "entrypoints": [
918
+ "arcane-os"
919
+ ],
920
+ "primaryImport": "arcane-os",
921
+ "group": "Errors",
922
+ "summary": "Frozen registry of stable SDK error-code strings.",
923
+ "availability": "Node",
924
+ "protocol": "Node ESM",
925
+ "normalization": "Exact immutable SDK value"
926
+ },
927
+ {
928
+ "id": "root:errorRecord",
929
+ "name": "errorRecord",
930
+ "displayName": "errorRecord()",
931
+ "kind": "function",
932
+ "signature": "errorRecord(error)",
933
+ "entrypoints": [
934
+ "arcane-os"
935
+ ],
936
+ "primaryImport": "arcane-os",
937
+ "group": "Errors",
938
+ "summary": "Projects an error into the JSON-safe normalized public error record.",
939
+ "availability": "Node",
940
+ "protocol": "Node ESM",
941
+ "normalization": "ArcaneError and JSON-safe error normalization"
942
+ },
943
+ {
944
+ "id": "root:executeNativeBuildPlan",
945
+ "name": "executeNativeBuildPlan",
946
+ "displayName": "executeNativeBuildPlan()",
947
+ "kind": "function",
948
+ "signature": "async executeNativeBuildPlan(plan, { expectedNativeBuilder, expectedTarget, signal, onEvent }={})",
949
+ "entrypoints": [
950
+ "arcane-os",
951
+ "arcane-os/native"
952
+ ],
953
+ "primaryImport": "arcane-os",
954
+ "group": "Targets, native plans, and providers",
955
+ "summary": "Consumes one authenticated single-attempt native plan through its bound builder and event/cancellation lifecycle.",
956
+ "availability": "Node; selected browser/native target or provider as documented",
957
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
958
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
959
+ },
960
+ {
961
+ "id": "root:executeOperation",
962
+ "name": "executeOperation",
963
+ "displayName": "executeOperation()",
964
+ "kind": "function",
965
+ "signature": "async executeOperation(command, options={})",
966
+ "entrypoints": [
967
+ "arcane-os",
968
+ "arcane-os/toolchain"
969
+ ],
970
+ "primaryImport": "arcane-os",
971
+ "group": "Headless toolchain operations",
972
+ "summary": "Dispatches one named headless SDK operation with normalized acceptance, events, cancellation, and failure.",
973
+ "availability": "Node; selected operation may produce browser or native output",
974
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
975
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
976
+ },
977
+ {
978
+ "id": "root:fail",
979
+ "name": "fail",
980
+ "displayName": "fail()",
981
+ "kind": "function",
982
+ "signature": "fail(code, message, options)",
983
+ "entrypoints": [
984
+ "arcane-os"
985
+ ],
986
+ "primaryImport": "arcane-os",
987
+ "group": "Errors",
988
+ "summary": "Throws a normalized `ArcaneError` with the supplied code and context.",
989
+ "availability": "Node",
990
+ "protocol": "Node ESM",
991
+ "normalization": "ArcaneError and JSON-safe error normalization"
992
+ },
993
+ {
994
+ "id": "root:getSdkRoot",
995
+ "name": "getSdkRoot",
996
+ "displayName": "getSdkRoot()",
997
+ "kind": "function",
998
+ "signature": "getSdkRoot()",
999
+ "entrypoints": [
1000
+ "arcane-os"
1001
+ ],
1002
+ "primaryImport": "arcane-os",
1003
+ "group": "Runtime and app descriptors",
1004
+ "summary": "Returns the absolute installed SDK package root.",
1005
+ "availability": "Node",
1006
+ "protocol": "Node ESM",
1007
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1008
+ },
1009
+ {
1010
+ "id": "root:getTargetAdapter",
1011
+ "name": "getTargetAdapter",
1012
+ "displayName": "getTargetAdapter()",
1013
+ "kind": "function",
1014
+ "signature": "getTargetAdapter(targetId)",
1015
+ "entrypoints": [
1016
+ "arcane-os",
1017
+ "arcane-os/targets"
1018
+ ],
1019
+ "primaryImport": "arcane-os",
1020
+ "group": "Targets, native plans, and providers",
1021
+ "summary": "Returns the registered adapter for one exact target id or fails for an unknown target.",
1022
+ "availability": "Node; selected browser/native target or provider as documented",
1023
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1024
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1025
+ },
1026
+ {
1027
+ "id": "root:incrementSemver",
1028
+ "name": "incrementSemver",
1029
+ "displayName": "incrementSemver()",
1030
+ "kind": "function",
1031
+ "signature": "incrementSemver(value, bump, preid)",
1032
+ "entrypoints": [
1033
+ "arcane-os/packager"
1034
+ ],
1035
+ "primaryImport": "arcane-os/packager",
1036
+ "group": "Packaging and release bundles",
1037
+ "summary": "Returns a validated semantic version incremented by the requested bump and optional prerelease id.",
1038
+ "availability": "Node",
1039
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1040
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1041
+ },
1042
+ {
1043
+ "id": "root:initializeApplication",
1044
+ "name": "initializeApplication",
1045
+ "displayName": "initializeApplication()",
1046
+ "kind": "function",
1047
+ "signature": "async initializeApplication(options={})",
1048
+ "entrypoints": [
1049
+ "arcane-os",
1050
+ "arcane-os/toolchain"
1051
+ ],
1052
+ "primaryImport": "arcane-os",
1053
+ "group": "Workspace, doctor, repository, and server",
1054
+ "summary": "Initializes missing Arcane files for one app in an existing external or integrated workspace.",
1055
+ "availability": "Node",
1056
+ "protocol": "Node ESM",
1057
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1058
+ },
1059
+ {
1060
+ "id": "root:initWorkspace",
1061
+ "name": "initWorkspace",
1062
+ "displayName": "initWorkspace()",
1063
+ "kind": "function",
1064
+ "signature": "async initWorkspace({ workspaceRoot=process.cwd(), appId, displayName, target='browser', signal, onEvent })",
1065
+ "entrypoints": [
1066
+ "arcane-os"
1067
+ ],
1068
+ "primaryImport": "arcane-os",
1069
+ "group": "Workspace, doctor, repository, and server",
1070
+ "summary": "Adds one application scaffold to an existing workspace without overwriting incompatible files.",
1071
+ "availability": "Node",
1072
+ "protocol": "Node ESM",
1073
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1074
+ },
1075
+ {
1076
+ "id": "root:inspectApp",
1077
+ "name": "inspectApp",
1078
+ "displayName": "inspectApp()",
1079
+ "kind": "function",
1080
+ "signature": "async inspectApp({workspaceRoot, appId})",
1081
+ "entrypoints": [
1082
+ "arcane-os",
1083
+ "arcane-os/packager"
1084
+ ],
1085
+ "primaryImport": "arcane-os",
1086
+ "group": "Packaging and release bundles",
1087
+ "summary": "Loads and validates one packager app configuration, shared mappings, descriptor, and release inputs.",
1088
+ "availability": "Node",
1089
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1090
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1091
+ },
1092
+ {
1093
+ "id": "root:inspectWorkspaceProfile",
1094
+ "name": "inspectWorkspaceProfile",
1095
+ "displayName": "inspectWorkspaceProfile()",
1096
+ "kind": "function",
1097
+ "signature": "async inspectWorkspaceProfile(workspaceRoot=process.cwd())",
1098
+ "entrypoints": [
1099
+ "arcane-os"
1100
+ ],
1101
+ "primaryImport": "arcane-os",
1102
+ "group": "Workspace, doctor, repository, and server",
1103
+ "summary": "Classifies one canonical workspace as external or integrated and reports its fixed layout.",
1104
+ "availability": "Node",
1105
+ "protocol": "Node ESM",
1106
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1107
+ },
1108
+ {
1109
+ "id": "root:INTEGRATED_TOOLCHAIN_PROTOCOL",
1110
+ "name": "INTEGRATED_TOOLCHAIN_PROTOCOL",
1111
+ "displayName": "INTEGRATED_TOOLCHAIN_PROTOCOL",
1112
+ "kind": "constant",
1113
+ "signature": "const INTEGRATED_TOOLCHAIN_PROTOCOL",
1114
+ "entrypoints": [
1115
+ "arcane-os",
1116
+ "arcane-os/integrated-provider"
1117
+ ],
1118
+ "primaryImport": "arcane-os",
1119
+ "group": "Targets, native plans, and providers",
1120
+ "summary": "Protocol required from the fixed integrated shared-development provider.",
1121
+ "availability": "Node; selected browser/native target or provider as documented",
1122
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1123
+ "normalization": "Exact immutable SDK value"
1124
+ },
1125
+ {
1126
+ "id": "root:listTargets",
1127
+ "name": "listTargets",
1128
+ "displayName": "listTargets()",
1129
+ "kind": "function",
1130
+ "signature": "listTargets()",
1131
+ "entrypoints": [
1132
+ "arcane-os",
1133
+ "arcane-os/targets"
1134
+ ],
1135
+ "primaryImport": "arcane-os",
1136
+ "group": "Targets, native plans, and providers",
1137
+ "summary": "Returns the frozen target descriptors without running an operation lifecycle.",
1138
+ "availability": "Node; selected browser/native target or provider as documented",
1139
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1140
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1141
+ },
1142
+ {
1143
+ "id": "root:loadAppDescriptor",
1144
+ "name": "loadAppDescriptor",
1145
+ "displayName": "loadAppDescriptor()",
1146
+ "kind": "function",
1147
+ "signature": "async loadAppDescriptor({workspaceRoot, appRoot, appId, packageManifest})",
1148
+ "entrypoints": [
1149
+ "arcane-os"
1150
+ ],
1151
+ "primaryImport": "arcane-os",
1152
+ "group": "Runtime and app descriptors",
1153
+ "summary": "Loads an authored schema-2 descriptor or a bounded legacy projection with explicit provenance.",
1154
+ "availability": "Node",
1155
+ "protocol": "Node ESM",
1156
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1157
+ },
1158
+ {
1159
+ "id": "root:loadArcaneIntegratedProvider",
1160
+ "name": "loadArcaneIntegratedProvider",
1161
+ "displayName": "loadArcaneIntegratedProvider()",
1162
+ "kind": "function",
1163
+ "signature": "loadArcaneIntegratedProvider({ arcaneRoot, signal, onEvent, run=runProcess }={})",
1164
+ "entrypoints": [
1165
+ "arcane-os",
1166
+ "arcane-os/integrated-provider"
1167
+ ],
1168
+ "primaryImport": "arcane-os",
1169
+ "group": "Targets, native plans, and providers",
1170
+ "summary": "Loads and authenticates the fixed Arcane-owned integrated development provider generation.",
1171
+ "availability": "Node; selected browser/native target or provider as documented",
1172
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1173
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1174
+ },
1175
+ {
1176
+ "id": "root:loadArcaneNativeProvider",
1177
+ "name": "loadArcaneNativeProvider",
1178
+ "displayName": "loadArcaneNativeProvider()",
1179
+ "kind": "function",
1180
+ "signature": "loadArcaneNativeProvider({ arcaneRoot, target, inspect=lstat, canonicalize=realpath, readModule=readFile, importModule=specifier=>import(specifier), generationCache=providerGenerationCache, signal, onEvent }={})",
1181
+ "entrypoints": [
1182
+ "arcane-os",
1183
+ "arcane-os/native-provider"
1184
+ ],
1185
+ "primaryImport": "arcane-os",
1186
+ "group": "Targets, native plans, and providers",
1187
+ "summary": "Loads the fixed provider for one target from an explicitly selected Arcane OS checkout and authenticates that provider generation for the current SDK process.",
1188
+ "availability": "Node; selected browser/native target or provider as documented",
1189
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1190
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1191
+ },
1192
+ {
1193
+ "id": "root:loadArcanePortableProvider",
1194
+ "name": "loadArcanePortableProvider",
1195
+ "displayName": "loadArcanePortableProvider()",
1196
+ "kind": "function",
1197
+ "signature": "loadArcanePortableProvider(options={})",
1198
+ "entrypoints": [
1199
+ "arcane-os",
1200
+ "arcane-os/native-provider"
1201
+ ],
1202
+ "primaryImport": "arcane-os",
1203
+ "group": "Targets, native plans, and providers",
1204
+ "summary": "Compatibility wrapper that loads the portable native provider.",
1205
+ "availability": "Node; selected browser/native target or provider as documented",
1206
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1207
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1208
+ },
1209
+ {
1210
+ "id": "root:loadRuntimeRelease",
1211
+ "name": "loadRuntimeRelease",
1212
+ "displayName": "loadRuntimeRelease()",
1213
+ "kind": "function",
1214
+ "signature": "async loadRuntimeRelease({runtimeRoot=path.join(sdkRoot, 'runtime')}={})",
1215
+ "entrypoints": [
1216
+ "arcane-os"
1217
+ ],
1218
+ "primaryImport": "arcane-os",
1219
+ "group": "Runtime and app descriptors",
1220
+ "summary": "Reads and structurally validates the synchronized runtime release manifest.",
1221
+ "availability": "Node",
1222
+ "protocol": "Node ESM",
1223
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1224
+ },
1225
+ {
1226
+ "id": "root:NATIVE_BUILD_PLAN_PROTOCOL",
1227
+ "name": "NATIVE_BUILD_PLAN_PROTOCOL",
1228
+ "displayName": "NATIVE_BUILD_PLAN_PROTOCOL",
1229
+ "kind": "constant",
1230
+ "signature": "const NATIVE_BUILD_PLAN_PROTOCOL",
1231
+ "entrypoints": [
1232
+ "arcane-os",
1233
+ "arcane-os/native"
1234
+ ],
1235
+ "primaryImport": "arcane-os",
1236
+ "group": "Targets, native plans, and providers",
1237
+ "summary": "Protocol identifier for immutable authenticated native build plans.",
1238
+ "availability": "Node; selected browser/native target or provider as documented",
1239
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1240
+ "normalization": "Exact immutable SDK value"
1241
+ },
1242
+ {
1243
+ "id": "root:NATIVE_BUILDER_PROTOCOL",
1244
+ "name": "NATIVE_BUILDER_PROTOCOL",
1245
+ "displayName": "NATIVE_BUILDER_PROTOCOL",
1246
+ "kind": "constant",
1247
+ "signature": "const NATIVE_BUILDER_PROTOCOL",
1248
+ "entrypoints": [
1249
+ "arcane-os",
1250
+ "arcane-os/native"
1251
+ ],
1252
+ "primaryImport": "arcane-os",
1253
+ "group": "Targets, native plans, and providers",
1254
+ "summary": "Protocol identifier required from injected native builders.",
1255
+ "availability": "Node; selected browser/native target or provider as documented",
1256
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1257
+ "normalization": "Exact immutable SDK value"
1258
+ },
1259
+ {
1260
+ "id": "root:normalizeError",
1261
+ "name": "normalizeError",
1262
+ "displayName": "normalizeError()",
1263
+ "kind": "function",
1264
+ "signature": "normalizeError(error, fallbackCode=ERROR_CODES.operationFailed)",
1265
+ "entrypoints": [
1266
+ "arcane-os"
1267
+ ],
1268
+ "primaryImport": "arcane-os",
1269
+ "group": "Errors",
1270
+ "summary": "Converts an unknown thrown value into an `ArcaneError` while preserving an existing normalized error.",
1271
+ "availability": "Node",
1272
+ "protocol": "Node ESM",
1273
+ "normalization": "ArcaneError and JSON-safe error normalization"
1274
+ },
1275
+ {
1276
+ "id": "root:normalizeRelativePath",
1277
+ "name": "normalizeRelativePath",
1278
+ "displayName": "normalizeRelativePath()",
1279
+ "kind": "function",
1280
+ "signature": "normalizeRelativePath(value, label='path')",
1281
+ "entrypoints": [
1282
+ "arcane-os/packager"
1283
+ ],
1284
+ "primaryImport": "arcane-os/packager",
1285
+ "group": "Packaging and release bundles",
1286
+ "summary": "Normalizes one portable repository-relative path and rejects traversal, aliases, links, and unsafe names.",
1287
+ "availability": "Node",
1288
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1289
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1290
+ },
1291
+ {
1292
+ "id": "root:OUTPUT_MODES",
1293
+ "name": "OUTPUT_MODES",
1294
+ "displayName": "OUTPUT_MODES",
1295
+ "kind": "constant",
1296
+ "signature": "const OUTPUT_MODES",
1297
+ "entrypoints": [
1298
+ "arcane-os"
1299
+ ],
1300
+ "primaryImport": "arcane-os",
1301
+ "group": "Identity and protocol constants",
1302
+ "summary": "Frozen supported CLI output modes: human, JSON, and NDJSON.",
1303
+ "availability": "Node",
1304
+ "protocol": "Node ESM",
1305
+ "normalization": "Exact immutable SDK value"
1306
+ },
1307
+ {
1308
+ "id": "root:packageApp",
1309
+ "name": "packageApp",
1310
+ "displayName": "packageApp()",
1311
+ "kind": "function",
1312
+ "signature": "async packageApp(options)",
1313
+ "entrypoints": [
1314
+ "arcane-os",
1315
+ "arcane-os/packager"
1316
+ ],
1317
+ "primaryImport": "arcane-os",
1318
+ "group": "Packaging and release bundles",
1319
+ "summary": "Builds and authenticates one browser application release through the low-level packager API.",
1320
+ "availability": "Node",
1321
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1322
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1323
+ },
1324
+ {
1325
+ "id": "root:packageApplication",
1326
+ "name": "packageApplication",
1327
+ "displayName": "packageApplication()",
1328
+ "kind": "function",
1329
+ "signature": "async packageApplication(options={})",
1330
+ "entrypoints": [
1331
+ "arcane-os",
1332
+ "arcane-os/toolchain"
1333
+ ],
1334
+ "primaryImport": "arcane-os",
1335
+ "group": "Headless toolchain operations",
1336
+ "summary": "Runs the high-level package operation for one selected application.",
1337
+ "availability": "Node; selected operation may produce browser or native output",
1338
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
1339
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1340
+ },
1341
+ {
1342
+ "id": "root:PACKAGER_VERSION",
1343
+ "name": "PACKAGER_VERSION",
1344
+ "displayName": "PACKAGER_VERSION",
1345
+ "kind": "constant",
1346
+ "signature": "const PACKAGER_VERSION",
1347
+ "entrypoints": [
1348
+ "arcane-os/packager"
1349
+ ],
1350
+ "primaryImport": "arcane-os/packager",
1351
+ "group": "Packaging and release bundles",
1352
+ "summary": "Builder identity written into schema-1 application release manifests.",
1353
+ "availability": "Node",
1354
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1355
+ "normalization": "Exact immutable SDK value"
1356
+ },
1357
+ {
1358
+ "id": "packager:discoverApps",
1359
+ "name": "discoverApps",
1360
+ "displayName": "packager.discoverApps()",
1361
+ "kind": "function",
1362
+ "signature": "async discoverApps({workspaceRoot:requestedWorkspaceRoot})",
1363
+ "entrypoints": [
1364
+ "arcane-os/packager"
1365
+ ],
1366
+ "primaryImport": "arcane-os/packager",
1367
+ "group": "Packaging and release bundles",
1368
+ "summary": "Discovers packager application configurations and release boundaries beneath one workspace root.",
1369
+ "availability": "Node",
1370
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1371
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1372
+ },
1373
+ {
1374
+ "id": "root:parseSemver",
1375
+ "name": "parseSemver",
1376
+ "displayName": "parseSemver()",
1377
+ "kind": "function",
1378
+ "signature": "parseSemver(value)",
1379
+ "entrypoints": [
1380
+ "arcane-os/packager"
1381
+ ],
1382
+ "primaryImport": "arcane-os/packager",
1383
+ "group": "Packaging and release bundles",
1384
+ "summary": "Parses one strict three-part semantic version with optional prerelease metadata.",
1385
+ "availability": "Node",
1386
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1387
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1388
+ },
1389
+ {
1390
+ "id": "root:planApplication",
1391
+ "name": "planApplication",
1392
+ "displayName": "planApplication()",
1393
+ "kind": "function",
1394
+ "signature": "async planApplication(options={})",
1395
+ "entrypoints": [
1396
+ "arcane-os",
1397
+ "arcane-os/toolchain"
1398
+ ],
1399
+ "primaryImport": "arcane-os",
1400
+ "group": "Headless toolchain operations",
1401
+ "summary": "Creates one authenticated native build plan without executing the provider build.",
1402
+ "availability": "Node; selected operation may produce browser or native output",
1403
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
1404
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1405
+ },
1406
+ {
1407
+ "id": "root:prepareNativeTarget",
1408
+ "name": "prepareNativeTarget",
1409
+ "displayName": "prepareNativeTarget()",
1410
+ "kind": "function",
1411
+ "signature": "async prepareNativeTarget(options={})",
1412
+ "entrypoints": [
1413
+ "arcane-os",
1414
+ "arcane-os/toolchain"
1415
+ ],
1416
+ "primaryImport": "arcane-os",
1417
+ "group": "Targets, native plans, and providers",
1418
+ "summary": "Runs one provider toolchain preparation and returns its authenticated process-owned receipt.",
1419
+ "availability": "Node; selected browser/native target or provider as documented",
1420
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1421
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1422
+ },
1423
+ {
1424
+ "id": "root:prepareSharedPayloadSnapshot",
1425
+ "name": "prepareSharedPayloadSnapshot",
1426
+ "displayName": "prepareSharedPayloadSnapshot()",
1427
+ "kind": "function",
1428
+ "signature": "async prepareSharedPayloadSnapshot({ workspaceRoot:requestedWorkspaceRoot, sharedPayloadIds, signal, onEvent }={})",
1429
+ "entrypoints": [
1430
+ "arcane-os",
1431
+ "arcane-os/packager"
1432
+ ],
1433
+ "primaryImport": "arcane-os",
1434
+ "group": "Packaging and release bundles",
1435
+ "summary": "Verifies and snapshots the shared runtime/dependency payload once for reuse by one packaging generation.",
1436
+ "availability": "Node",
1437
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1438
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1439
+ },
1440
+ {
1441
+ "id": "root:projectNativeDescriptor",
1442
+ "name": "projectNativeDescriptor",
1443
+ "displayName": "projectNativeDescriptor()",
1444
+ "kind": "function",
1445
+ "signature": "projectNativeDescriptor(descriptor, {source}={})",
1446
+ "entrypoints": [
1447
+ "arcane-os"
1448
+ ],
1449
+ "primaryImport": "arcane-os",
1450
+ "group": "Runtime and app descriptors",
1451
+ "summary": "Projects the canonical app descriptor into the native registry shape consumed by paired builders.",
1452
+ "availability": "Node",
1453
+ "protocol": "Node ESM",
1454
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1455
+ },
1456
+ {
1457
+ "id": "root:projectPackageManifest",
1458
+ "name": "projectPackageManifest",
1459
+ "displayName": "projectPackageManifest()",
1460
+ "kind": "function",
1461
+ "signature": "projectPackageManifest(descriptor)",
1462
+ "entrypoints": [
1463
+ "arcane-os"
1464
+ ],
1465
+ "primaryImport": "arcane-os",
1466
+ "group": "Runtime and app descriptors",
1467
+ "summary": "Projects a schema-2 descriptor into the compatible schema-1 application package contract.",
1468
+ "availability": "Node",
1469
+ "protocol": "Node ESM",
1470
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1471
+ },
1472
+ {
1473
+ "id": "root:readVerifiedAppReleaseFile",
1474
+ "name": "readVerifiedAppReleaseFile",
1475
+ "displayName": "readVerifiedAppReleaseFile()",
1476
+ "kind": "function",
1477
+ "signature": "async readVerifiedAppReleaseFile(receipt, { releaseRoot, relativePath, signal }={})",
1478
+ "entrypoints": [
1479
+ "arcane-os",
1480
+ "arcane-os/packager"
1481
+ ],
1482
+ "primaryImport": "arcane-os",
1483
+ "group": "Packaging and release bundles",
1484
+ "summary": "Reads one bounded file through an authenticated app-release receipt and rechecks its identity and digest.",
1485
+ "availability": "Node",
1486
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1487
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1488
+ },
1489
+ {
1490
+ "id": "root:readVerifiedRuntimeFile",
1491
+ "name": "readVerifiedRuntimeFile",
1492
+ "displayName": "readVerifiedRuntimeFile()",
1493
+ "kind": "function",
1494
+ "signature": "async readVerifiedRuntimeFile(receipt, { runtimeRoot=path.join(sdkRoot, 'runtime'), relativePath, signal }={})",
1495
+ "entrypoints": [
1496
+ "arcane-os"
1497
+ ],
1498
+ "primaryImport": "arcane-os",
1499
+ "group": "Runtime and app descriptors",
1500
+ "summary": "Reads one bounded runtime file through an authenticated runtime receipt and rechecks its identity and digest.",
1501
+ "availability": "Node",
1502
+ "protocol": "Node ESM",
1503
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1504
+ },
1505
+ {
1506
+ "id": "root:registeredTestCount",
1507
+ "name": "registeredTestCount",
1508
+ "displayName": "registeredTestCount()",
1509
+ "kind": "function",
1510
+ "signature": "registeredTestCount()",
1511
+ "entrypoints": [
1512
+ "arcane-os",
1513
+ "arcane-os/testing"
1514
+ ],
1515
+ "primaryImport": "arcane-os",
1516
+ "group": "Events, processes, and testing",
1517
+ "summary": "Returns the number of tests registered in the current isolated test realm.",
1518
+ "availability": "Node",
1519
+ "protocol": "Node ESM / owned process or test lifecycle",
1520
+ "normalization": "SDK event/error/report normalization"
1521
+ },
1522
+ {
1523
+ "id": "root:RELEASE_MANIFEST_NAME",
1524
+ "name": "RELEASE_MANIFEST_NAME",
1525
+ "displayName": "RELEASE_MANIFEST_NAME",
1526
+ "kind": "constant",
1527
+ "signature": "const RELEASE_MANIFEST_NAME",
1528
+ "entrypoints": [
1529
+ "arcane-os/packager"
1530
+ ],
1531
+ "primaryImport": "arcane-os/packager",
1532
+ "group": "Packaging and release bundles",
1533
+ "summary": "Canonical packaged application release manifest filename.",
1534
+ "availability": "Node",
1535
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1536
+ "normalization": "Exact immutable SDK value"
1537
+ },
1538
+ {
1539
+ "id": "root:repositoryApplication",
1540
+ "name": "repositoryApplication",
1541
+ "displayName": "repositoryApplication()",
1542
+ "kind": "function",
1543
+ "signature": "async repositoryApplication(options={})",
1544
+ "entrypoints": [
1545
+ "arcane-os",
1546
+ "arcane-os/toolchain"
1547
+ ],
1548
+ "primaryImport": "arcane-os",
1549
+ "group": "Headless toolchain operations",
1550
+ "summary": "Dispatches one selected repository status, pull, or push operation through the headless lifecycle.",
1551
+ "availability": "Node; selected operation may produce browser or native output",
1552
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
1553
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1554
+ },
1555
+ {
1556
+ "id": "root:repositoryPull",
1557
+ "name": "repositoryPull",
1558
+ "displayName": "repositoryPull()",
1559
+ "kind": "function",
1560
+ "signature": "async repositoryPull({ workspaceRoot=process.cwd(), signal, onEvent, run=runProcess }={})",
1561
+ "entrypoints": [
1562
+ "arcane-os"
1563
+ ],
1564
+ "primaryImport": "arcane-os",
1565
+ "group": "Workspace, doctor, repository, and server",
1566
+ "summary": "Runs one fast-forward-only pull after proving the selected repository worktree is clean.",
1567
+ "availability": "Node; network-assisted Git",
1568
+ "protocol": "Node ESM",
1569
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1570
+ },
1571
+ {
1572
+ "id": "root:repositoryPush",
1573
+ "name": "repositoryPush",
1574
+ "displayName": "repositoryPush()",
1575
+ "kind": "function",
1576
+ "signature": "async repositoryPush({ workspaceRoot=process.cwd(), signal, onEvent, run=runProcess }={})",
1577
+ "entrypoints": [
1578
+ "arcane-os"
1579
+ ],
1580
+ "primaryImport": "arcane-os",
1581
+ "group": "Workspace, doctor, repository, and server",
1582
+ "summary": "Pushes the selected attached branch through the repository's configured remote and credentials.",
1583
+ "availability": "Node; network-assisted Git",
1584
+ "protocol": "Node ESM",
1585
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1586
+ },
1587
+ {
1588
+ "id": "root:repositoryStatus",
1589
+ "name": "repositoryStatus",
1590
+ "displayName": "repositoryStatus()",
1591
+ "kind": "function",
1592
+ "signature": "async repositoryStatus({ workspaceRoot=process.cwd(), signal, onEvent, run=runProcess }={})",
1593
+ "entrypoints": [
1594
+ "arcane-os"
1595
+ ],
1596
+ "primaryImport": "arcane-os",
1597
+ "group": "Workspace, doctor, repository, and server",
1598
+ "summary": "Reads one repository's branch and short worktree status through an owned child process.",
1599
+ "availability": "Node",
1600
+ "protocol": "Node ESM",
1601
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1602
+ },
1603
+ {
1604
+ "id": "root:resolveNativeBuildOutputRoot",
1605
+ "name": "resolveNativeBuildOutputRoot",
1606
+ "displayName": "resolveNativeBuildOutputRoot()",
1607
+ "kind": "function",
1608
+ "signature": "resolveNativeBuildOutputRoot({target, workspaceMode, workspaceRoot, outputRoot}={})",
1609
+ "entrypoints": [
1610
+ "arcane-os",
1611
+ "arcane-os/toolchain"
1612
+ ],
1613
+ "primaryImport": "arcane-os",
1614
+ "group": "Targets, native plans, and providers",
1615
+ "summary": "Resolves and validates one native output root, including integrated-checkout non-overlap.",
1616
+ "availability": "Node; selected browser/native target or provider as documented",
1617
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1618
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1619
+ },
1620
+ {
1621
+ "id": "root:resolvePortableBuildOutputRoot",
1622
+ "name": "resolvePortableBuildOutputRoot",
1623
+ "displayName": "resolvePortableBuildOutputRoot()",
1624
+ "kind": "function",
1625
+ "signature": "resolvePortableBuildOutputRoot(options={})",
1626
+ "entrypoints": [
1627
+ "arcane-os",
1628
+ "arcane-os/toolchain"
1629
+ ],
1630
+ "primaryImport": "arcane-os",
1631
+ "group": "Targets, native plans, and providers",
1632
+ "summary": "Portable-target compatibility wrapper for native output-root resolution.",
1633
+ "availability": "Node; selected browser/native target or provider as documented",
1634
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1635
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1636
+ },
1637
+ {
1638
+ "id": "root:resolveWorkspace",
1639
+ "name": "resolveWorkspace",
1640
+ "displayName": "resolveWorkspace()",
1641
+ "kind": "function",
1642
+ "signature": "async resolveWorkspace({workspaceRoot=process.cwd(), appId}={})",
1643
+ "entrypoints": [
1644
+ "arcane-os"
1645
+ ],
1646
+ "primaryImport": "arcane-os",
1647
+ "group": "Workspace, doctor, repository, and server",
1648
+ "summary": "Resolves one workspace profile and selected app into canonical SDK paths.",
1649
+ "availability": "Node",
1650
+ "protocol": "Node ESM",
1651
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1652
+ },
1653
+ {
1654
+ "id": "root:ROOT_CONFIG_NAME",
1655
+ "name": "ROOT_CONFIG_NAME",
1656
+ "displayName": "ROOT_CONFIG_NAME",
1657
+ "kind": "constant",
1658
+ "signature": "const ROOT_CONFIG_NAME",
1659
+ "entrypoints": [
1660
+ "arcane-os/packager"
1661
+ ],
1662
+ "primaryImport": "arcane-os/packager",
1663
+ "group": "Packaging and release bundles",
1664
+ "summary": "Canonical root packager configuration filename.",
1665
+ "availability": "Node",
1666
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1667
+ "normalization": "Exact immutable SDK value"
1668
+ },
1669
+ {
1670
+ "id": "root:discoverApps",
1671
+ "name": "discoverApps",
1672
+ "displayName": "discoverApps()",
1673
+ "kind": "function",
1674
+ "signature": "async discoverApps(workspaceRoot=process.cwd())",
1675
+ "entrypoints": [
1676
+ "arcane-os"
1677
+ ],
1678
+ "primaryImport": "arcane-os",
1679
+ "group": "Workspace, doctor, repository, and server",
1680
+ "summary": "Discovers application ids in one external or integrated workspace without selecting one.",
1681
+ "availability": "Node",
1682
+ "protocol": "Node ESM",
1683
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1684
+ },
1685
+ {
1686
+ "id": "root:runApplication",
1687
+ "name": "runApplication",
1688
+ "displayName": "runApplication()",
1689
+ "kind": "function",
1690
+ "signature": "async runApplication(options={})",
1691
+ "entrypoints": [
1692
+ "arcane-os",
1693
+ "arcane-os/toolchain"
1694
+ ],
1695
+ "primaryImport": "arcane-os",
1696
+ "group": "Headless toolchain operations",
1697
+ "summary": "Runs a browser app or performs the retained native build/verify/launch lifecycle for one target.",
1698
+ "availability": "Node; selected operation may produce browser or native output",
1699
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
1700
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1701
+ },
1702
+ {
1703
+ "id": "root:runDoctor",
1704
+ "name": "runDoctor",
1705
+ "displayName": "runDoctor()",
1706
+ "kind": "function",
1707
+ "signature": "async runDoctor({ workspaceRoot, appId, arcaneRoot, requireLocalAI=false, signal, onEvent, platform=process.platform, run=runProcess }={})",
1708
+ "entrypoints": [
1709
+ "arcane-os"
1710
+ ],
1711
+ "primaryImport": "arcane-os",
1712
+ "group": "Workspace, doctor, repository, and server",
1713
+ "summary": "Runs the underlying read-only doctor checks and returns their normalized report.",
1714
+ "availability": "Node",
1715
+ "protocol": "Node ESM",
1716
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1717
+ },
1718
+ {
1719
+ "id": "root:runProcess",
1720
+ "name": "runProcess",
1721
+ "displayName": "runProcess()",
1722
+ "kind": "function",
1723
+ "signature": "async runProcess(command, args=[], { cwd, env, signal, onEvent, heartbeatMs=5000, terminationGraceMs=DEFAULT_TERMINATION_GRACE_MS, allowNonzero=false, input }={})",
1724
+ "entrypoints": [
1725
+ "arcane-os"
1726
+ ],
1727
+ "primaryImport": "arcane-os",
1728
+ "group": "Events, processes, and testing",
1729
+ "summary": "Runs one shell-free child command with bounded output tails, ordered stream events, heartbeats, and process-tree cancellation.",
1730
+ "availability": "Node",
1731
+ "protocol": "Node ESM / owned process or test lifecycle",
1732
+ "normalization": "SDK event/error/report normalization"
1733
+ },
1734
+ {
1735
+ "id": "root:runRegisteredTests",
1736
+ "name": "runRegisteredTests",
1737
+ "displayName": "runRegisteredTests()",
1738
+ "kind": "function",
1739
+ "signature": "async runRegisteredTests({signal, requireTests=true, onPhase}={})",
1740
+ "entrypoints": [
1741
+ "arcane-os",
1742
+ "arcane-os/testing"
1743
+ ],
1744
+ "primaryImport": "arcane-os",
1745
+ "group": "Events, processes, and testing",
1746
+ "summary": "Executes the current isolated realm's registered tests once and returns the normalized Vanilla Test report.",
1747
+ "availability": "Node",
1748
+ "protocol": "Node ESM / owned process or test lifecycle",
1749
+ "normalization": "SDK event/error/report normalization"
1750
+ },
1751
+ {
1752
+ "id": "root:runRepositoryAction",
1753
+ "name": "runRepositoryAction",
1754
+ "displayName": "runRepositoryAction()",
1755
+ "kind": "function",
1756
+ "signature": "async runRepositoryAction(action, options={})",
1757
+ "entrypoints": [
1758
+ "arcane-os"
1759
+ ],
1760
+ "primaryImport": "arcane-os",
1761
+ "group": "Workspace, doctor, repository, and server",
1762
+ "summary": "Selects and runs one repository action by name.",
1763
+ "availability": "Node",
1764
+ "protocol": "Node ESM",
1765
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1766
+ },
1767
+ {
1768
+ "id": "root:runTarget",
1769
+ "name": "runTarget",
1770
+ "displayName": "runTarget()",
1771
+ "kind": "function",
1772
+ "signature": "async runTarget(options={})",
1773
+ "entrypoints": [
1774
+ "arcane-os",
1775
+ "arcane-os/targets"
1776
+ ],
1777
+ "primaryImport": "arcane-os",
1778
+ "group": "Targets, native plans, and providers",
1779
+ "summary": "Invokes one target adapter run method and fails honestly when the artifact kind is not runnable.",
1780
+ "availability": "Node; selected browser/native target or provider as documented",
1781
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1782
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
1783
+ },
1784
+ {
1785
+ "id": "root:RUNTIME_ROOT",
1786
+ "name": "RUNTIME_ROOT",
1787
+ "displayName": "RUNTIME_ROOT",
1788
+ "kind": "constant",
1789
+ "signature": "const RUNTIME_ROOT",
1790
+ "entrypoints": [
1791
+ "arcane-os"
1792
+ ],
1793
+ "primaryImport": "arcane-os",
1794
+ "group": "Identity and protocol constants",
1795
+ "summary": "Absolute installed SDK runtime directory for the current process.",
1796
+ "availability": "Node",
1797
+ "protocol": "Node ESM",
1798
+ "normalization": "Exact immutable SDK value"
1799
+ },
1800
+ {
1801
+ "id": "root:SDK_NAME",
1802
+ "name": "SDK_NAME",
1803
+ "displayName": "SDK_NAME",
1804
+ "kind": "constant",
1805
+ "signature": "const SDK_NAME",
1806
+ "entrypoints": [
1807
+ "arcane-os"
1808
+ ],
1809
+ "primaryImport": "arcane-os",
1810
+ "group": "Identity and protocol constants",
1811
+ "summary": "Published npm package name.",
1812
+ "availability": "Node",
1813
+ "protocol": "Node ESM",
1814
+ "normalization": "Exact immutable SDK value"
1815
+ },
1816
+ {
1817
+ "id": "root:SDK_ROOT",
1818
+ "name": "SDK_ROOT",
1819
+ "displayName": "SDK_ROOT",
1820
+ "kind": "constant",
1821
+ "signature": "const SDK_ROOT",
1822
+ "entrypoints": [
1823
+ "arcane-os"
1824
+ ],
1825
+ "primaryImport": "arcane-os",
1826
+ "group": "Identity and protocol constants",
1827
+ "summary": "Absolute installed package root for the current process.",
1828
+ "availability": "Node",
1829
+ "protocol": "Node ESM",
1830
+ "normalization": "Exact immutable SDK value"
1831
+ },
1832
+ {
1833
+ "id": "root:SDK_VERSION",
1834
+ "name": "SDK_VERSION",
1835
+ "displayName": "SDK_VERSION",
1836
+ "kind": "constant",
1837
+ "signature": "const SDK_VERSION",
1838
+ "entrypoints": [
1839
+ "arcane-os"
1840
+ ],
1841
+ "primaryImport": "arcane-os",
1842
+ "group": "Identity and protocol constants",
1843
+ "summary": "Exact SDK package version.",
1844
+ "availability": "Node",
1845
+ "protocol": "Node ESM",
1846
+ "normalization": "Exact immutable SDK value"
1847
+ },
1848
+ {
1849
+ "id": "root:selectApp",
1850
+ "name": "selectApp",
1851
+ "displayName": "selectApp()",
1852
+ "kind": "function",
1853
+ "signature": "async selectApp(workspaceRoot=process.cwd(), appId)",
1854
+ "entrypoints": [
1855
+ "arcane-os"
1856
+ ],
1857
+ "primaryImport": "arcane-os",
1858
+ "group": "Workspace, doctor, repository, and server",
1859
+ "summary": "Selects one exact app id, or requires an unambiguous single discovered application.",
1860
+ "availability": "Node",
1861
+ "protocol": "Node ESM",
1862
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1863
+ },
1864
+ {
1865
+ "id": "root:startDevServer",
1866
+ "name": "startDevServer",
1867
+ "displayName": "startDevServer()",
1868
+ "kind": "function",
1869
+ "signature": "async startDevServer(options={})",
1870
+ "entrypoints": [
1871
+ "arcane-os"
1872
+ ],
1873
+ "primaryImport": "arcane-os",
1874
+ "group": "Workspace, doctor, repository, and server",
1875
+ "summary": "Starts one bounded browser development server with exact runtime/app route mappings and an unguessable session capability.",
1876
+ "availability": "Node control plane; browser data plane",
1877
+ "protocol": "Node ESM",
1878
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1879
+ },
1880
+ {
1881
+ "id": "root:TARGET_ADAPTER_PROTOCOL",
1882
+ "name": "TARGET_ADAPTER_PROTOCOL",
1883
+ "displayName": "TARGET_ADAPTER_PROTOCOL",
1884
+ "kind": "constant",
1885
+ "signature": "const TARGET_ADAPTER_PROTOCOL",
1886
+ "entrypoints": [
1887
+ "arcane-os"
1888
+ ],
1889
+ "primaryImport": "arcane-os",
1890
+ "group": "Targets, native plans, and providers",
1891
+ "summary": "Protocol required from target adapter descriptors and implementations.",
1892
+ "availability": "Node; selected browser/native target or provider as documented",
1893
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1894
+ "normalization": "Exact immutable SDK value"
1895
+ },
1896
+ {
1897
+ "id": "root:TARGET_IDS",
1898
+ "name": "TARGET_IDS",
1899
+ "displayName": "TARGET_IDS",
1900
+ "kind": "constant",
1901
+ "signature": "const TARGET_IDS",
1902
+ "entrypoints": [
1903
+ "arcane-os"
1904
+ ],
1905
+ "primaryImport": "arcane-os",
1906
+ "group": "Targets, native plans, and providers",
1907
+ "summary": "Frozen list of currently exposed target identifiers.",
1908
+ "availability": "Node; selected browser/native target or provider as documented",
1909
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
1910
+ "normalization": "Exact immutable SDK value"
1911
+ },
1912
+ {
1913
+ "id": "root:test",
1914
+ "name": "test",
1915
+ "displayName": "test()",
1916
+ "kind": "function",
1917
+ "signature": "test(name, optionsOrCallback, maybeCallback)",
1918
+ "entrypoints": [
1919
+ "arcane-os",
1920
+ "arcane-os/testing"
1921
+ ],
1922
+ "primaryImport": "arcane-os",
1923
+ "group": "Events, processes, and testing",
1924
+ "summary": "Registers one public test, optional timeout, callback, nested cases, and FIFO cleanup in the isolated runner.",
1925
+ "availability": "Node",
1926
+ "protocol": "Node ESM / owned process or test lifecycle",
1927
+ "normalization": "SDK event/error/report normalization"
1928
+ },
1929
+ {
1930
+ "id": "root:testApplication",
1931
+ "name": "testApplication",
1932
+ "displayName": "testApplication()",
1933
+ "kind": "function",
1934
+ "signature": "async testApplication(options={})",
1935
+ "entrypoints": [
1936
+ "arcane-os",
1937
+ "arcane-os/toolchain"
1938
+ ],
1939
+ "primaryImport": "arcane-os",
1940
+ "group": "Headless toolchain operations",
1941
+ "summary": "Runs the selected application's exact test boundary or one integrated shared test.",
1942
+ "availability": "Node; selected operation may produce browser or native output",
1943
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
1944
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
1945
+ },
1946
+ {
1947
+ "id": "root:throwIfAborted",
1948
+ "name": "throwIfAborted",
1949
+ "displayName": "throwIfAborted()",
1950
+ "kind": "function",
1951
+ "signature": "throwIfAborted(signal)",
1952
+ "entrypoints": [
1953
+ "arcane-os"
1954
+ ],
1955
+ "primaryImport": "arcane-os",
1956
+ "group": "Errors",
1957
+ "summary": "Throws the signal reason or a normalized cancellation error when an AbortSignal is already aborted.",
1958
+ "availability": "Node",
1959
+ "protocol": "Node ESM",
1960
+ "normalization": "ArcaneError and JSON-safe error normalization"
1961
+ },
1962
+ {
1963
+ "id": "root:validateAppBundlePath",
1964
+ "name": "validateAppBundlePath",
1965
+ "displayName": "validateAppBundlePath()",
1966
+ "kind": "function",
1967
+ "signature": "validateAppBundlePath(value, label='bundle path')",
1968
+ "entrypoints": [
1969
+ "arcane-os",
1970
+ "arcane-os/release-bundle"
1971
+ ],
1972
+ "primaryImport": "arcane-os",
1973
+ "group": "Packaging and release bundles",
1974
+ "summary": "Validates and normalizes one portable path admitted inside an external app bundle.",
1975
+ "availability": "Node",
1976
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1977
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1978
+ },
1979
+ {
1980
+ "id": "root:validateAppConfig",
1981
+ "name": "validateAppConfig",
1982
+ "displayName": "validateAppConfig()",
1983
+ "kind": "function",
1984
+ "signature": "validateAppConfig(value, appId, rootConfig, configPath=`apps/${appId}/${APP_CONFIG_NAME}`)",
1985
+ "entrypoints": [
1986
+ "arcane-os/packager"
1987
+ ],
1988
+ "primaryImport": "arcane-os/packager",
1989
+ "group": "Packaging and release bundles",
1990
+ "summary": "Validates one schema-1 packager app configuration and its relationship to the root config.",
1991
+ "availability": "Node",
1992
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
1993
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
1994
+ },
1995
+ {
1996
+ "id": "root:validateAppDescriptor",
1997
+ "name": "validateAppDescriptor",
1998
+ "displayName": "validateAppDescriptor()",
1999
+ "kind": "function",
2000
+ "signature": "validateAppDescriptor(value, {appId}={})",
2001
+ "entrypoints": [
2002
+ "arcane-os"
2003
+ ],
2004
+ "primaryImport": "arcane-os",
2005
+ "group": "Runtime and app descriptors",
2006
+ "summary": "Strictly validates and freezes one schema-2 app descriptor, including runtime-only cross-field rules.",
2007
+ "availability": "Node",
2008
+ "protocol": "Node ESM",
2009
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
2010
+ },
2011
+ {
2012
+ "id": "root:validateNativeBuilder",
2013
+ "name": "validateNativeBuilder",
2014
+ "displayName": "validateNativeBuilder()",
2015
+ "kind": "function",
2016
+ "signature": "validateNativeBuilder(provider)",
2017
+ "entrypoints": [
2018
+ "arcane-os",
2019
+ "arcane-os/native"
2020
+ ],
2021
+ "primaryImport": "arcane-os",
2022
+ "group": "Targets, native plans, and providers",
2023
+ "summary": "Validates a native builder's protocol and required describe/doctor/prepare/build/verify/run methods.",
2024
+ "availability": "Node; selected browser/native target or provider as documented",
2025
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
2026
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
2027
+ },
2028
+ {
2029
+ "id": "root:validateRootConfig",
2030
+ "name": "validateRootConfig",
2031
+ "displayName": "validateRootConfig()",
2032
+ "kind": "function",
2033
+ "signature": "validateRootConfig(value, configPath=ROOT_CONFIG_NAME)",
2034
+ "entrypoints": [
2035
+ "arcane-os/packager"
2036
+ ],
2037
+ "primaryImport": "arcane-os/packager",
2038
+ "group": "Packaging and release bundles",
2039
+ "summary": "Validates one root packager mapping and its fixed shared-route boundaries.",
2040
+ "availability": "Node",
2041
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
2042
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
2043
+ },
2044
+ {
2045
+ "id": "root:validateWorkspace",
2046
+ "name": "validateWorkspace",
2047
+ "displayName": "validateWorkspace()",
2048
+ "kind": "function",
2049
+ "signature": "async validateWorkspace({workspaceRoot=process.cwd(), appId, signal, onEvent}={})",
2050
+ "entrypoints": [
2051
+ "arcane-os"
2052
+ ],
2053
+ "primaryImport": "arcane-os",
2054
+ "group": "Workspace, doctor, repository, and server",
2055
+ "summary": "Runs canonical workspace, runtime, descriptor, and selected-app validation with progress events.",
2056
+ "availability": "Node",
2057
+ "protocol": "Node ESM",
2058
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
2059
+ },
2060
+ {
2061
+ "id": "root:verifyApp",
2062
+ "name": "verifyApp",
2063
+ "displayName": "verifyApp()",
2064
+ "kind": "function",
2065
+ "signature": "async verifyApp({workspaceRoot, appId, signal, onEvent})",
2066
+ "entrypoints": [
2067
+ "arcane-os",
2068
+ "arcane-os/packager"
2069
+ ],
2070
+ "primaryImport": "arcane-os",
2071
+ "group": "Packaging and release bundles",
2072
+ "summary": "Authenticates one existing browser app release through the low-level packager API.",
2073
+ "availability": "Node",
2074
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
2075
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
2076
+ },
2077
+ {
2078
+ "id": "root:verifyApplication",
2079
+ "name": "verifyApplication",
2080
+ "displayName": "verifyApplication()",
2081
+ "kind": "function",
2082
+ "signature": "async verifyApplication(options={})",
2083
+ "entrypoints": [
2084
+ "arcane-os",
2085
+ "arcane-os/toolchain"
2086
+ ],
2087
+ "primaryImport": "arcane-os",
2088
+ "group": "Headless toolchain operations",
2089
+ "summary": "Runs the high-level verification operation for one selected browser release.",
2090
+ "availability": "Node; selected operation may produce browser or native output",
2091
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
2092
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
2093
+ },
2094
+ {
2095
+ "id": "root:verifyAppReleaseBundle",
2096
+ "name": "verifyAppReleaseBundle",
2097
+ "displayName": "verifyAppReleaseBundle()",
2098
+ "kind": "function",
2099
+ "signature": "async verifyAppReleaseBundle({bundlePath, signal, onEvent}={})",
2100
+ "entrypoints": [
2101
+ "arcane-os",
2102
+ "arcane-os/release-bundle"
2103
+ ],
2104
+ "primaryImport": "arcane-os",
2105
+ "group": "Packaging and release bundles",
2106
+ "summary": "Parses and authenticates one deterministic app bundle without extraction.",
2107
+ "availability": "Node",
2108
+ "protocol": "SDK packager, receipt, or deterministic bundle contract",
2109
+ "normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
2110
+ },
2111
+ {
2112
+ "id": "root:verifyBundleApplication",
2113
+ "name": "verifyBundleApplication",
2114
+ "displayName": "verifyBundleApplication()",
2115
+ "kind": "function",
2116
+ "signature": "async verifyBundleApplication(options={})",
2117
+ "entrypoints": [
2118
+ "arcane-os",
2119
+ "arcane-os/toolchain"
2120
+ ],
2121
+ "primaryImport": "arcane-os",
2122
+ "group": "Headless toolchain operations",
2123
+ "summary": "Runs the high-level external bundle verification operation.",
2124
+ "availability": "Node; selected operation may produce browser or native output",
2125
+ "protocol": "Shared headless operation API + arcane-cli-events/1",
2126
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
2127
+ },
2128
+ {
2129
+ "id": "root:verifyNativeArtifact",
2130
+ "name": "verifyNativeArtifact",
2131
+ "displayName": "verifyNativeArtifact()",
2132
+ "kind": "function",
2133
+ "signature": "async verifyNativeArtifact(options={})",
2134
+ "entrypoints": [
2135
+ "arcane-os",
2136
+ "arcane-os/toolchain"
2137
+ ],
2138
+ "primaryImport": "arcane-os",
2139
+ "group": "Targets, native plans, and providers",
2140
+ "summary": "Authenticates one target artifact through the exact prepared provider/toolchain receipt.",
2141
+ "availability": "Node; selected browser/native target or provider as documented",
2142
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
2143
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
2144
+ },
2145
+ {
2146
+ "id": "root:verifyRuntime",
2147
+ "name": "verifyRuntime",
2148
+ "displayName": "verifyRuntime()",
2149
+ "kind": "function",
2150
+ "signature": "async verifyRuntime({ runtimeRoot=path.join(sdkRoot, 'runtime'), signal, onEvent }={})",
2151
+ "entrypoints": [
2152
+ "arcane-os"
2153
+ ],
2154
+ "primaryImport": "arcane-os",
2155
+ "group": "Runtime and app descriptors",
2156
+ "summary": "Verifies every synchronized runtime file and returns a deeply frozen same-process receipt.",
2157
+ "availability": "Node",
2158
+ "protocol": "Node ESM",
2159
+ "normalization": "SDK-normalized inputs, errors, events, and documented result"
2160
+ },
2161
+ {
2162
+ "id": "root:verifyTarget",
2163
+ "name": "verifyTarget",
2164
+ "displayName": "verifyTarget()",
2165
+ "kind": "function",
2166
+ "signature": "async verifyTarget(options={})",
2167
+ "entrypoints": [
2168
+ "arcane-os",
2169
+ "arcane-os/targets"
2170
+ ],
2171
+ "primaryImport": "arcane-os",
2172
+ "group": "Targets, native plans, and providers",
2173
+ "summary": "Invokes one target adapter's artifact verification boundary.",
2174
+ "availability": "Node; selected browser/native target or provider as documented",
2175
+ "protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
2176
+ "normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
2177
+ },
2178
+ {
2179
+ "id": "root:ARCANE_EVENT_STACK_PROTOCOL",
2180
+ "name": "ARCANE_EVENT_STACK_PROTOCOL",
2181
+ "displayName": "ARCANE_EVENT_STACK_PROTOCOL",
2182
+ "kind": "constant",
2183
+ "signature": "const ARCANE_EVENT_STACK_PROTOCOL",
2184
+ "entrypoints": [
2185
+ "arcane-os",
2186
+ "arcane-os/event-manager"
2187
+ ],
2188
+ "primaryImport": "arcane-os/event-manager",
2189
+ "group": "Central events, time travel, and DOM instrumentation",
2190
+ "summary": "Identifies strict serialized event-stack documents and records as arcane-event-stack/1.",
2191
+ "availability": "Node and browser/bundler",
2192
+ "protocol": "arcane-event-stack/1",
2193
+ "normalization": "Exact protocol discriminator; no transport or host authority"
2194
+ },
2195
+ {
2196
+ "id": "root:DEFAULT_DOM_EVENT_TYPES",
2197
+ "name": "DEFAULT_DOM_EVENT_TYPES",
2198
+ "displayName": "DEFAULT_DOM_EVENT_TYPES",
2199
+ "kind": "constant",
2200
+ "signature": "const DEFAULT_DOM_EVENT_TYPES",
2201
+ "entrypoints": [
2202
+ "arcane-os",
2203
+ "arcane-os/event-manager"
2204
+ ],
2205
+ "primaryImport": "arcane-os/event-manager",
2206
+ "group": "Central events, time travel, and DOM instrumentation",
2207
+ "summary": "Frozen default set of 48 capture-phase DOM interaction event names.",
2208
+ "availability": "Node and browser/bundler; meaningful to browser DOM instrumentation",
2209
+ "protocol": "Synchronous DOM observation projected into arcane-event-stack/1 records",
2210
+ "normalization": "Exact frozen event-name list; host event objects are not retained"
2211
+ },
2212
+ {
2213
+ "id": "root:DOM_INTERACTION_EVENT",
2214
+ "name": "DOM_INTERACTION_EVENT",
2215
+ "displayName": "DOM_INTERACTION_EVENT",
2216
+ "kind": "constant",
2217
+ "signature": "const DOM_INTERACTION_EVENT",
2218
+ "entrypoints": [
2219
+ "arcane-os",
2220
+ "arcane-os/event-manager"
2221
+ ],
2222
+ "primaryImport": "arcane-os/event-manager",
2223
+ "group": "Central events, time travel, and DOM instrumentation",
2224
+ "summary": "Event type emitted for a redacted, bounded DOM interaction diagnostic.",
2225
+ "availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
2226
+ "protocol": "In-process event-pubsub; optional arcane-event-stack/1 recording",
2227
+ "normalization": "Normalized target, path, flags, and bounded details; sensitive content redacted"
2228
+ },
2229
+ {
2230
+ "id": "root:DOM_MUTATION_EVENT",
2231
+ "name": "DOM_MUTATION_EVENT",
2232
+ "displayName": "DOM_MUTATION_EVENT",
2233
+ "kind": "constant",
2234
+ "signature": "const DOM_MUTATION_EVENT",
2235
+ "entrypoints": [
2236
+ "arcane-os",
2237
+ "arcane-os/event-manager"
2238
+ ],
2239
+ "primaryImport": "arcane-os/event-manager",
2240
+ "group": "Central events, time travel, and DOM instrumentation",
2241
+ "summary": "Event type emitted for a redacted, bounded DOM mutation diagnostic.",
2242
+ "availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
2243
+ "protocol": "MutationObserver projected through in-process events and optional arcane-event-stack/1 recording",
2244
+ "normalization": "Normalized attribute, character-data, or child-list diagnostic; sensitive content redacted"
2245
+ },
2246
+ {
2247
+ "id": "root:DOM_OBSERVATION_STARTED_EVENT",
2248
+ "name": "DOM_OBSERVATION_STARTED_EVENT",
2249
+ "displayName": "DOM_OBSERVATION_STARTED_EVENT",
2250
+ "kind": "constant",
2251
+ "signature": "const DOM_OBSERVATION_STARTED_EVENT",
2252
+ "entrypoints": [
2253
+ "arcane-os",
2254
+ "arcane-os/event-manager"
2255
+ ],
2256
+ "primaryImport": "arcane-os/event-manager",
2257
+ "group": "Central events, time travel, and DOM instrumentation",
2258
+ "summary": "Lifecycle event emitted after DOM instrumentation starts successfully.",
2259
+ "availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
2260
+ "protocol": "In-process event-pubsub; optional arcane-event-stack/1 recording",
2261
+ "normalization": "Normalized root and capture-option diagnostic"
2262
+ },
2263
+ {
2264
+ "id": "root:DOM_OBSERVATION_STOPPED_EVENT",
2265
+ "name": "DOM_OBSERVATION_STOPPED_EVENT",
2266
+ "displayName": "DOM_OBSERVATION_STOPPED_EVENT",
2267
+ "kind": "constant",
2268
+ "signature": "const DOM_OBSERVATION_STOPPED_EVENT",
2269
+ "entrypoints": [
2270
+ "arcane-os",
2271
+ "arcane-os/event-manager"
2272
+ ],
2273
+ "primaryImport": "arcane-os/event-manager",
2274
+ "group": "Central events, time travel, and DOM instrumentation",
2275
+ "summary": "Lifecycle event emitted when active DOM instrumentation stops normally.",
2276
+ "availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
2277
+ "protocol": "In-process event-pubsub; optional arcane-event-stack/1 recording",
2278
+ "normalization": "Normalized root diagnostic; overflow shutdown intentionally suppresses this lifecycle record"
2279
+ },
2280
+ {
2281
+ "id": "root:EventManager",
2282
+ "name": "EventManager",
2283
+ "displayName": "EventManager",
2284
+ "kind": "class",
2285
+ "signature": "new EventManager(options={})",
2286
+ "entrypoints": [
2287
+ "arcane-os",
2288
+ "arcane-os/event-manager"
2289
+ ],
2290
+ "primaryImport": "arcane-os/event-manager",
2291
+ "group": "Central events, time travel, and DOM instrumentation",
2292
+ "summary": "Runs synchronous pub/sub with optional bounded, immutable time-travel history and DOM instrumentation.",
2293
+ "availability": "Node and browser/bundler; DOM capture requires a browser DOM or compatible host",
2294
+ "protocol": "Synchronous event-pubsub plus optional arcane-event-stack/1 export/import",
2295
+ "normalization": "Live listener arguments retain identity; recorded payloads and metadata are bounded, redacted, deeply frozen snapshots"
2296
+ },
2297
+ {
2298
+ "id": "root:PLAYBACK_CANCELLED_EVENT",
2299
+ "name": "PLAYBACK_CANCELLED_EVENT",
2300
+ "displayName": "PLAYBACK_CANCELLED_EVENT",
2301
+ "kind": "constant",
2302
+ "signature": "const PLAYBACK_CANCELLED_EVENT",
2303
+ "entrypoints": [
2304
+ "arcane-os",
2305
+ "arcane-os/event-manager"
2306
+ ],
2307
+ "primaryImport": "arcane-os/event-manager",
2308
+ "group": "Central events, time travel, and DOM instrumentation",
2309
+ "summary": "Lifecycle event emitted when an AbortSignal cancels event-stack playback.",
2310
+ "availability": "Node and browser/bundler",
2311
+ "protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
2312
+ "normalization": "Frozen summary with session, delivered count, cursor, completion flag, and redacted error snapshot"
2313
+ },
2314
+ {
2315
+ "id": "root:PLAYBACK_COMPLETED_EVENT",
2316
+ "name": "PLAYBACK_COMPLETED_EVENT",
2317
+ "displayName": "PLAYBACK_COMPLETED_EVENT",
2318
+ "kind": "constant",
2319
+ "signature": "const PLAYBACK_COMPLETED_EVENT",
2320
+ "entrypoints": [
2321
+ "arcane-os",
2322
+ "arcane-os/event-manager"
2323
+ ],
2324
+ "primaryImport": "arcane-os/event-manager",
2325
+ "group": "Central events, time travel, and DOM instrumentation",
2326
+ "summary": "Lifecycle event emitted after selected event-stack records finish playback.",
2327
+ "availability": "Node and browser/bundler",
2328
+ "protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
2329
+ "normalization": "Frozen summary with session, delivered count, cursor, and completed=true"
2330
+ },
2331
+ {
2332
+ "id": "root:PLAYBACK_FAILED_EVENT",
2333
+ "name": "PLAYBACK_FAILED_EVENT",
2334
+ "displayName": "PLAYBACK_FAILED_EVENT",
2335
+ "kind": "constant",
2336
+ "signature": "const PLAYBACK_FAILED_EVENT",
2337
+ "entrypoints": [
2338
+ "arcane-os",
2339
+ "arcane-os/event-manager"
2340
+ ],
2341
+ "primaryImport": "arcane-os/event-manager",
2342
+ "group": "Central events, time travel, and DOM instrumentation",
2343
+ "summary": "Lifecycle event emitted when event-stack playback fails for a reason other than signal cancellation.",
2344
+ "availability": "Node and browser/bundler",
2345
+ "protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
2346
+ "normalization": "Frozen summary with session, delivered count, cursor, completion flag, and redacted error snapshot"
2347
+ },
2348
+ {
2349
+ "id": "root:PLAYBACK_RECORD_EVENT",
2350
+ "name": "PLAYBACK_RECORD_EVENT",
2351
+ "displayName": "PLAYBACK_RECORD_EVENT",
2352
+ "kind": "constant",
2353
+ "signature": "const PLAYBACK_RECORD_EVENT",
2354
+ "entrypoints": [
2355
+ "arcane-os",
2356
+ "arcane-os/event-manager"
2357
+ ],
2358
+ "primaryImport": "arcane-os/event-manager",
2359
+ "group": "Central events, time travel, and DOM instrumentation",
2360
+ "summary": "Review-mode event that presents one validated immutable record without re-emitting its original type.",
2361
+ "availability": "Node and browser/bundler",
2362
+ "protocol": "In-process review projection of arcane-event-stack/1",
2363
+ "normalization": "Validated immutable event-stack record"
2364
+ },
2365
+ {
2366
+ "id": "root:PLAYBACK_STARTED_EVENT",
2367
+ "name": "PLAYBACK_STARTED_EVENT",
2368
+ "displayName": "PLAYBACK_STARTED_EVENT",
2369
+ "kind": "constant",
2370
+ "signature": "const PLAYBACK_STARTED_EVENT",
2371
+ "entrypoints": [
2372
+ "arcane-os",
2373
+ "arcane-os/event-manager"
2374
+ ],
2375
+ "primaryImport": "arcane-os/event-manager",
2376
+ "group": "Central events, time travel, and DOM instrumentation",
2377
+ "summary": "Lifecycle event emitted before the selected playback range is delivered.",
2378
+ "availability": "Node and browser/bundler",
2379
+ "protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
2380
+ "normalization": "Normalized session, range, count, speed, and mode summary"
2381
+ },
2382
+ {
2383
+ "id": "root:TIME_TRAVEL_OVERFLOW_EVENT",
2384
+ "name": "TIME_TRAVEL_OVERFLOW_EVENT",
2385
+ "displayName": "TIME_TRAVEL_OVERFLOW_EVENT",
2386
+ "kind": "constant",
2387
+ "signature": "const TIME_TRAVEL_OVERFLOW_EVENT",
2388
+ "entrypoints": [
2389
+ "arcane-os",
2390
+ "arcane-os/event-manager"
2391
+ ],
2392
+ "primaryImport": "arcane-os/event-manager",
2393
+ "group": "Central events, time travel, and DOM instrumentation",
2394
+ "summary": "Terminal marker appended when bounded history reaches maxEvents and recording shuts down.",
2395
+ "availability": "Node and browser/bundler",
2396
+ "protocol": "Terminal arcane-event-stack/1 record type; the overflow marker is not dispatched on the live bus",
2397
+ "normalization": "Fixed event-manager source/category with exact retention evidence; history may contain maxEvents plus this marker"
2398
+ },
2399
+ {
2400
+ "id": "root:TIME_TRAVEL_SEEK_EVENT",
2401
+ "name": "TIME_TRAVEL_SEEK_EVENT",
2402
+ "displayName": "TIME_TRAVEL_SEEK_EVENT",
2403
+ "kind": "constant",
2404
+ "signature": "const TIME_TRAVEL_SEEK_EVENT",
2405
+ "entrypoints": [
2406
+ "arcane-os",
2407
+ "arcane-os/event-manager"
2408
+ ],
2409
+ "primaryImport": "arcane-os/event-manager",
2410
+ "group": "Central events, time travel, and DOM instrumentation",
2411
+ "summary": "Event emitted when the review cursor seeks to sequence zero or a retained sequence.",
2412
+ "availability": "Node and browser/bundler",
2413
+ "protocol": "In-process review cursor event; the retained stack remains unchanged",
2414
+ "normalization": "Normalized sessionId, requested sequence, and immutable matching record or null"
2415
+ },
2416
+ {
2417
+ "id": "root:arcaneEvents",
2418
+ "name": "arcaneEvents",
2419
+ "displayName": "arcaneEvents",
2420
+ "kind": "singleton",
2421
+ "signature": "const arcaneEvents",
2422
+ "entrypoints": [
2423
+ "arcane-os",
2424
+ "arcane-os/event-manager"
2425
+ ],
2426
+ "primaryImport": "arcane-os/event-manager",
2427
+ "group": "Central events, time travel, and DOM instrumentation",
2428
+ "summary": "Package-scoped EventManager singleton for applications that want one shared event bus.",
2429
+ "availability": "Node and browser/bundler; DOM capture requires a compatible DOM",
2430
+ "protocol": "Synchronous event-pubsub plus opt-in arcane-event-stack/1 recording",
2431
+ "normalization": "Same module singleton through root and focused subpath; time travel starts disabled"
2432
+ },
2433
+ {
2434
+ "id": "root:createDOMInstrumentation",
2435
+ "name": "createDOMInstrumentation",
2436
+ "displayName": "createDOMInstrumentation()",
2437
+ "kind": "function",
2438
+ "signature": "createDOMInstrumentation(options={})",
2439
+ "entrypoints": [
2440
+ "arcane-os",
2441
+ "arcane-os/event-manager"
2442
+ ],
2443
+ "primaryImport": "arcane-os/event-manager",
2444
+ "group": "Central events, time travel, and DOM instrumentation",
2445
+ "summary": "Creates a start/stop controller that projects DOM interactions and mutations into an EventManager.",
2446
+ "availability": "Browser DOM or a DOM-compatible test host",
2447
+ "protocol": "Capture-phase DOM events and MutationObserver projected to in-process EventManager events",
2448
+ "normalization": "Produces bounded diagnostic descriptors, redacts sensitive values and URLs, and never reconstructs DOM state"
2449
+ },
2450
+ {
2451
+ "id": "root:createEventManager",
2452
+ "name": "createEventManager",
2453
+ "displayName": "createEventManager()",
2454
+ "kind": "function",
2455
+ "signature": "createEventManager(options)",
2456
+ "entrypoints": [
2457
+ "arcane-os",
2458
+ "arcane-os/event-manager"
2459
+ ],
2460
+ "primaryImport": "arcane-os/event-manager",
2461
+ "group": "Central events, time travel, and DOM instrumentation",
2462
+ "summary": "Constructs and returns an independent EventManager instance.",
2463
+ "availability": "Node and browser/bundler; DOM capture requires a compatible DOM",
2464
+ "protocol": "Synchronous event-pubsub plus optional arcane-event-stack/1",
2465
+ "normalization": "Equivalent constructor behavior without sharing the arcaneEvents singleton"
2466
+ },
2467
+ {
2468
+ "id": "root:describeDOMTarget",
2469
+ "name": "describeDOMTarget",
2470
+ "displayName": "describeDOMTarget()",
2471
+ "kind": "function",
2472
+ "signature": "describeDOMTarget(target, root)",
2473
+ "entrypoints": [
2474
+ "arcane-os",
2475
+ "arcane-os/event-manager"
2476
+ ],
2477
+ "primaryImport": "arcane-os/event-manager",
2478
+ "group": "Central events, time travel, and DOM instrumentation",
2479
+ "summary": "Returns a frozen, content-free diagnostic descriptor for a DOM target.",
2480
+ "availability": "Browser DOM or DOM-compatible objects; importable in Node",
2481
+ "protocol": "Local DOM diagnostic helper",
2482
+ "normalization": "Normalizes document, shadow root, text, element, global, and generic event targets without retaining nodes"
2483
+ },
2484
+ {
2485
+ "id": "root:domSelector",
2486
+ "name": "domSelector",
2487
+ "displayName": "domSelector()",
2488
+ "kind": "function",
2489
+ "signature": "domSelector(target, root)",
2490
+ "entrypoints": [
2491
+ "arcane-os",
2492
+ "arcane-os/event-manager"
2493
+ ],
2494
+ "primaryImport": "arcane-os/event-manager",
2495
+ "group": "Central events, time travel, and DOM instrumentation",
2496
+ "summary": "Builds a diagnostic selector across light DOM and open shadow-root boundaries.",
2497
+ "availability": "Browser DOM or DOM-compatible objects; importable in Node",
2498
+ "protocol": "Local DOM diagnostic helper",
2499
+ "normalization": "Returns a best-effort selector or null; triple-chevron separates open shadow boundaries"
2500
+ },
2501
+ {
2502
+ "id": "root:parseEventStack",
2503
+ "name": "parseEventStack",
2504
+ "displayName": "parseEventStack()",
2505
+ "kind": "function",
2506
+ "signature": "parseEventStack(source, options={})",
2507
+ "entrypoints": [
2508
+ "arcane-os",
2509
+ "arcane-os/event-manager"
2510
+ ],
2511
+ "primaryImport": "arcane-os/event-manager",
2512
+ "group": "Central events, time travel, and DOM instrumentation",
2513
+ "summary": "Strictly parses and validates an event-stack object or JSON string into a canonical frozen document.",
2514
+ "availability": "Node and browser/bundler",
2515
+ "protocol": "arcane-event-stack/1",
2516
+ "normalization": "Rejects extra keys, invalid bounds, malformed nesting, unsafe values, and nonterminal overflow; returns a deeply frozen canonical document"
2517
+ },
2518
+ {
2519
+ "id": "root:SDK_UPDATE_REGISTRY",
2520
+ "name": "SDK_UPDATE_REGISTRY",
2521
+ "displayName": "SDK_UPDATE_REGISTRY",
2522
+ "kind": "constant",
2523
+ "signature": "const SDK_UPDATE_REGISTRY",
2524
+ "entrypoints": [
2525
+ "arcane-os"
2526
+ ],
2527
+ "primaryImport": "arcane-os",
2528
+ "group": "Explicit SDK update checks",
2529
+ "summary": "Approved default npm registry origin for the on-demand SDK update check.",
2530
+ "availability": "Node; on-demand CLI or maintainer check only",
2531
+ "protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
2532
+ "normalization": "Exact immutable HTTPS origin string"
2533
+ },
2534
+ {
2535
+ "id": "root:SDK_UPDATE_TIMEOUT_MS",
2536
+ "name": "SDK_UPDATE_TIMEOUT_MS",
2537
+ "displayName": "SDK_UPDATE_TIMEOUT_MS",
2538
+ "kind": "constant",
2539
+ "signature": "const SDK_UPDATE_TIMEOUT_MS",
2540
+ "entrypoints": [
2541
+ "arcane-os"
2542
+ ],
2543
+ "primaryImport": "arcane-os",
2544
+ "group": "Explicit SDK update checks",
2545
+ "summary": "Default per-request timeout for one explicit SDK registry check.",
2546
+ "availability": "Node; on-demand CLI or maintainer check only",
2547
+ "protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
2548
+ "normalization": "Exact immutable millisecond integer"
2549
+ },
2550
+ {
2551
+ "id": "root:checkForSdkUpdate",
2552
+ "name": "checkForSdkUpdate",
2553
+ "displayName": "checkForSdkUpdate()",
2554
+ "kind": "function",
2555
+ "signature": "async checkForSdkUpdate({ packageName=SDK_NAME, currentVersion=SDK_VERSION, registry=SDK_UPDATE_REGISTRY, allowedRegistryHosts, timeoutMs=SDK_UPDATE_TIMEOUT_MS, fetchImpl=globalThis.fetch, signal, onEvent, clock=()=>new Date() }={})",
2556
+ "entrypoints": [
2557
+ "arcane-os"
2558
+ ],
2559
+ "primaryImport": "arcane-os",
2560
+ "group": "Explicit SDK update checks",
2561
+ "summary": "Performs one bounded credential-free registry read and reports whether the selected npm dist-tag is newer than the installed SDK.",
2562
+ "availability": "Node; on-demand CLI or maintainer check only",
2563
+ "protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
2564
+ "normalization": "Frozen current, ahead, or update-available result; bounded registry data and normalized update-check failures"
2565
+ },
2566
+ {
2567
+ "id": "root:checkSdkUpdate",
2568
+ "name": "checkSdkUpdate",
2569
+ "displayName": "checkSdkUpdate()",
2570
+ "kind": "function",
2571
+ "signature": "async checkSdkUpdate(options={})",
2572
+ "entrypoints": [
2573
+ "arcane-os",
2574
+ "arcane-os/toolchain"
2575
+ ],
2576
+ "primaryImport": "arcane-os",
2577
+ "group": "Explicit SDK update checks",
2578
+ "summary": "Toolchain and CLI wrapper for exactly one checkForSdkUpdate invocation.",
2579
+ "availability": "Node; on-demand CLI or maintainer check only",
2580
+ "protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
2581
+ "normalization": "Preserves the direct check result, events, cancellation, and errors without scheduling another check"
2582
+ },
2583
+ {
2584
+ "id": "root:compareSdkVersions",
2585
+ "name": "compareSdkVersions",
2586
+ "displayName": "compareSdkVersions()",
2587
+ "kind": "function",
2588
+ "signature": "compareSdkVersions(leftValue, rightValue)",
2589
+ "entrypoints": [
2590
+ "arcane-os"
2591
+ ],
2592
+ "primaryImport": "arcane-os",
2593
+ "group": "Explicit SDK update checks",
2594
+ "summary": "Compares two strict semantic SDK versions without performing a registry request.",
2595
+ "availability": "Node; on-demand CLI or maintainer check only",
2596
+ "protocol": "In-process semantic-version comparison",
2597
+ "normalization": "Returns -1, 0, or 1; build metadata does not affect precedence"
2598
+ },
2599
+ {
2600
+ "id": "root:updateTagForVersion",
2601
+ "name": "updateTagForVersion",
2602
+ "displayName": "updateTagForVersion()",
2603
+ "kind": "function",
2604
+ "signature": "updateTagForVersion(value)",
2605
+ "entrypoints": [
2606
+ "arcane-os"
2607
+ ],
2608
+ "primaryImport": "arcane-os",
2609
+ "group": "Explicit SDK update checks",
2610
+ "summary": "Selects npm dev for a prerelease SDK version and latest for a stable version.",
2611
+ "availability": "Node; on-demand CLI or maintainer check only",
2612
+ "protocol": "In-process npm dist-tag selection",
2613
+ "normalization": "Exact dev or latest tag selected from strict semantic-version prerelease state"
2614
+ },
2615
+ {
2616
+ "id": "root:validateUpdateRegistry",
2617
+ "name": "validateUpdateRegistry",
2618
+ "displayName": "validateUpdateRegistry()",
2619
+ "kind": "function",
2620
+ "signature": "validateUpdateRegistry(value, { allowedHosts=new Set(['registry.npmjs.org']) }={})",
2621
+ "entrypoints": [
2622
+ "arcane-os"
2623
+ ],
2624
+ "primaryImport": "arcane-os",
2625
+ "group": "Explicit SDK update checks",
2626
+ "summary": "Validates one credential-free HTTPS registry root against an explicit hostname allowlist.",
2627
+ "availability": "Node; on-demand CLI or maintainer check only",
2628
+ "protocol": "Approved credential-free HTTPS registry origin",
2629
+ "normalization": "Returns a normalized URL object only for an exact allowed root origin"
2630
+ }
2631
+ ]
2632
+ }