space-data-module-sdk 0.8.15 → 0.8.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/_shell/consumer-assets.html +5 -0
- package/docs/browser-wasmedge-isomorphic.html +261 -0
- package/docs/byo-wasm-quickstart.html +226 -0
- package/docs/byo-wasm-quickstart.md +204 -0
- package/docs/conformance.html +156 -0
- package/docs/emception-shared-memory-verdict.md +209 -0
- package/docs/events-abi.html +313 -0
- package/docs/events-abi.md +530 -0
- package/docs/families/analytics.html +178 -0
- package/docs/families/analytics.md +104 -0
- package/docs/families/attitude.html +157 -0
- package/docs/families/attitude.md +36 -0
- package/docs/families/behavior.html +157 -0
- package/docs/families/behavior.md +36 -0
- package/docs/families/breakup.html +157 -0
- package/docs/families/breakup.md +36 -0
- package/docs/families/conjunction.html +186 -0
- package/docs/families/conjunction.md +121 -0
- package/docs/families/data-source.html +318 -0
- package/docs/families/effects.html +157 -0
- package/docs/families/effects.md +36 -0
- package/docs/families/environment.html +170 -0
- package/docs/families/environment.md +73 -0
- package/docs/families/estimation.html +190 -0
- package/docs/families/estimation.md +128 -0
- package/docs/families/gnc.html +157 -0
- package/docs/families/gnc.md +36 -0
- package/docs/families/maneuver.html +209 -0
- package/docs/families/maneuver.md +206 -0
- package/docs/families/obstruction.html +191 -0
- package/docs/families/obstruction.md +96 -0
- package/docs/families/propagator.html +333 -0
- package/docs/families/propulsion.html +157 -0
- package/docs/families/propulsion.md +36 -0
- package/docs/families/reentry.html +157 -0
- package/docs/families/reentry.md +36 -0
- package/docs/families/rf.html +193 -0
- package/docs/families/rf.md +136 -0
- package/docs/families/scheduler.html +157 -0
- package/docs/families/scheduler.md +36 -0
- package/docs/families/sensor.html +157 -0
- package/docs/families/sensor.md +36 -0
- package/docs/families/signature.html +157 -0
- package/docs/families/signature.md +36 -0
- package/docs/flatsql-host-contract.html +176 -0
- package/docs/flatsql-streaming-standard.html +375 -0
- package/docs/gpu-module-abi.html +233 -0
- package/docs/harness-family-matrix.md +135 -0
- package/docs/index.html +216 -85
- package/docs/isomorphic-pthreads.html +228 -0
- package/docs/isomorphic-pthreads.md +84 -0
- package/docs/isomorphic-sdn-runtime-plan.html +274 -0
- package/docs/language-runtime-matrix.html +182 -0
- package/docs/llms.txt +86 -0
- package/docs/module-bundle-runtime-plan.html +146 -0
- package/docs/module-publication-standard.html +503 -0
- package/docs/node-red-default-node-parity.html +201 -0
- package/docs/propagator-abi.md +45 -12
- package/docs/protect-and-sign.html +181 -0
- package/docs/protect-and-sign.md +120 -0
- package/docs/protocol-installation.html +296 -0
- package/docs/publication-submission.html +158 -0
- package/docs/publication-submission.md +78 -0
- package/docs/secrets-capability.html +206 -0
- package/docs/styles.css +860 -167
- package/docs/testing-harness.html +408 -0
- package/docs/tri-runtime-parity-gate.html +182 -0
- package/docs/tri-runtime-parity.html +203 -0
- package/include/orbpro/orbpro_event_runner.h +951 -0
- package/include/orbpro/orbpro_events_abi.h +565 -0
- package/include/orbpro/orbpro_propagator_abi.h +17 -0
- package/package.json +11 -4
- package/schemas/orbpro/Events.fbs +501 -0
- package/schemas/orbpro/Propagator.fbs +72 -9
- package/schemas/orbpro/reference-frame-crosswalk.json +108 -0
- package/schemas/orbpro/reference-frame.lock.json +98 -0
- package/src/browser.js +13 -0
- package/src/generated/orbpro/events-abi.js +206 -0
- package/src/generated/orbpro/events-abi.ts +319 -0
- package/src/generated/orbpro/propagator/reference-frame.js +17 -0
- package/src/generated/orbpro/propagator/reference-frame.ts +91 -1
- package/src/generated/orbpro/propagator-abi.js +17 -0
- package/src/generated/orbpro/propagator-abi.ts +17 -0
- package/src/generated/spacedatastandards/plg/CCT.d.ts +94 -0
- package/src/generated/spacedatastandards/plg/CCT.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/CCT.js +208 -0
- package/src/generated/spacedatastandards/plg/CCT.ts +281 -0
- package/src/generated/spacedatastandards/plg/CCTCategory.d.ts +98 -0
- package/src/generated/spacedatastandards/plg/CCTCategory.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/CCTCategory.js +177 -0
- package/src/generated/spacedatastandards/plg/CCTCategory.ts +269 -0
- package/src/generated/spacedatastandards/plg/CCTCategoryRollup.d.ts +54 -0
- package/src/generated/spacedatastandards/plg/CCTCategoryRollup.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/CCTCategoryRollup.js +106 -0
- package/src/generated/spacedatastandards/plg/CCTCategoryRollup.ts +144 -0
- package/src/generated/spacedatastandards/plg/PLG.d.ts +46 -2
- package/src/generated/spacedatastandards/plg/PLG.d.ts.map +1 -1
- package/src/generated/spacedatastandards/plg/PLG.js +78 -5
- package/src/generated/spacedatastandards/plg/PLG.ts +90 -5
- package/src/generated/spacedatastandards/plg/capabilityClass.d.ts +181 -0
- package/src/generated/spacedatastandards/plg/capabilityClass.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/capabilityClass.js +183 -0
- package/src/generated/spacedatastandards/plg/capabilityClass.ts +208 -0
- package/src/generated/spacedatastandards/plg/main.d.ts +4 -0
- package/src/generated/spacedatastandards/plg/main.d.ts.map +1 -1
- package/src/generated/spacedatastandards/plg/main.js +4 -0
- package/src/generated/spacedatastandards/plg/main.ts +4 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.d.ts +40 -2
- package/src/generated/spacedatastandards/plg/pluginCategory.d.ts.map +1 -1
- package/src/generated/spacedatastandards/plg/pluginCategory.js +40 -2
- package/src/generated/spacedatastandards/plg/pluginCategory.ts +40 -2
- package/src/host/browserModuleHarness.js +8 -0
- package/src/host/wasiThreadHost.js +189 -14
- package/src/index.d.ts +18 -1
- package/src/transport/index.js +16 -0
- package/src/transport/records.js +1015 -3
package/docs/llms.txt
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Space Data Module SDK
|
|
2
|
+
|
|
3
|
+
> Build a WebAssembly module that plugs into the Space Data Network and into
|
|
4
|
+
> any consuming engine through a uniform harness ABI. One family per kind of
|
|
5
|
+
> scenario behavior; one thirteen-section spine per family. Statuses below are
|
|
6
|
+
> literal: only SHIPPED families have a ratified generated header, a
|
|
7
|
+
> conformance kit and a reference module.
|
|
8
|
+
|
|
9
|
+
Toolchain, non-negotiable: compile guest modules with
|
|
10
|
+
`clang --target=wasm32-wasip1-threads` (pinned WASI SDK). `emcc -pthread` is
|
|
11
|
+
FORBIDDEN — Emscripten's pthread model is browser-only and cannot thread under
|
|
12
|
+
WasmEdge, which breaks tri-runtime isomorphism. Modules must be EH-free.
|
|
13
|
+
|
|
14
|
+
## Start here
|
|
15
|
+
|
|
16
|
+
- [Harness family matrix](https://digitalarsenal.github.io/space-data-module-sdk/): every family and its status.
|
|
17
|
+
- [BYO-wasm quickstart](https://digitalarsenal.github.io/space-data-module-sdk/byo-wasm-quickstart.html): multi-TU C++ to a loadable artifact.
|
|
18
|
+
- [Conformance kit](https://digitalarsenal.github.io/space-data-module-sdk/conformance.html): self-test commands and what each asserts.
|
|
19
|
+
- [Protect and sign](https://digitalarsenal.github.io/space-data-module-sdk/protect-and-sign.html): artifact protection and signing.
|
|
20
|
+
- [Publication and listing](https://digitalarsenal.github.io/space-data-module-sdk/publication-submission.html): publication records and submission.
|
|
21
|
+
|
|
22
|
+
## Harness families
|
|
23
|
+
|
|
24
|
+
### Dynamics
|
|
25
|
+
|
|
26
|
+
- [Propagator](https://digitalarsenal.github.io/space-data-module-sdk/families/propagator.html) — SHIPPED. Advance a vehicle state to a requested epoch. The reference family: generated header, conformance kit, reference module.
|
|
27
|
+
- [Maneuver](https://digitalarsenal.github.io/space-data-module-sdk/families/maneuver.html) — EXPERIMENTAL. Apply an impulsive or finite burn to a state and report the resulting trajectory change.
|
|
28
|
+
- [Propulsion](https://digitalarsenal.github.io/space-data-module-sdk/families/propulsion.html) — PLANNED. Model thrust production and propellant consumption as a supplier to the maneuver family.
|
|
29
|
+
- [Attitude](https://digitalarsenal.github.io/space-data-module-sdk/families/attitude.html) — PLANNED. Produce body orientation over time, independent of translational state.
|
|
30
|
+
- [GNC](https://digitalarsenal.github.io/space-data-module-sdk/families/gnc.html) — PLANNED. Closed-loop guidance, navigation and control that commands the maneuver and attitude families.
|
|
31
|
+
|
|
32
|
+
### Environment and interaction
|
|
33
|
+
|
|
34
|
+
- [RF](https://digitalarsenal.github.io/space-data-module-sdk/families/rf.html) — DESIGNED. Link budgets, coverage and interference. Records-in/records-out RF needs no harness; the harness exists for RF that writes scene state.
|
|
35
|
+
- [Sensor](https://digitalarsenal.github.io/space-data-module-sdk/families/sensor.html) — PLANNED. Detection geometry and sensor tasking: what an instrument can see, when.
|
|
36
|
+
- [Signature](https://digitalarsenal.github.io/space-data-module-sdk/families/signature.html) — PLANNED. Observable signature models — radar cross section, optical magnitude, thermal.
|
|
37
|
+
- [Environment](https://digitalarsenal.github.io/space-data-module-sdk/families/environment.html) — PLANNED. Atmosphere, gravity field, magnetic field, and radiation environment models consumed by other families.
|
|
38
|
+
- [Obstruction](https://digitalarsenal.github.io/space-data-module-sdk/families/obstruction.html) — DESIGNED. Line-of-sight occlusion against arbitrary 3D geometry with per-material electromagnetic properties.
|
|
39
|
+
|
|
40
|
+
### Event physics
|
|
41
|
+
|
|
42
|
+
- [Breakup](https://digitalarsenal.github.io/space-data-module-sdk/families/breakup.html) — PLANNED. Fragmentation events producing a debris population that must match the standard breakup model.
|
|
43
|
+
- [Reentry](https://digitalarsenal.github.io/space-data-module-sdk/families/reentry.html) — PLANNED. Atmospheric reentry survivability, ablation, and ground footprint.
|
|
44
|
+
- [Conjunction](https://digitalarsenal.github.io/space-data-module-sdk/families/conjunction.html) — DESIGNED. Close-approach screening and probability of collision over a catalog.
|
|
45
|
+
- [Effects](https://digitalarsenal.github.io/space-data-module-sdk/families/effects.html) — PLANNED. Visual and volumetric effects driven by an event physics family.
|
|
46
|
+
|
|
47
|
+
### Estimation, data and logic
|
|
48
|
+
|
|
49
|
+
- [Estimation](https://digitalarsenal.github.io/space-data-module-sdk/families/estimation.html) — EXPERIMENTAL. Orbit determination and filtering: observations in, estimated state and covariance out.
|
|
50
|
+
- [Data source](https://digitalarsenal.github.io/space-data-module-sdk/families/data-source.html) — SHIPPED. Fetch, parse and normalize external provider data into standards records inside the module.
|
|
51
|
+
- [Analytics](https://digitalarsenal.github.io/space-data-module-sdk/families/analytics.html) — EXPERIMENTAL. Derived figures of merit computed over a scenario. The event-location sub-harness is shaped and measured; the rest is planned.
|
|
52
|
+
- [Scheduler](https://digitalarsenal.github.io/space-data-module-sdk/families/scheduler.html) — PLANNED. Ordering and tasking of activities across a scenario timeline.
|
|
53
|
+
- [Behavior](https://digitalarsenal.github.io/space-data-module-sdk/families/behavior.html) — PLANNED. Scripted or reactive decision logic that drives other families.
|
|
54
|
+
|
|
55
|
+
## Runtime contract
|
|
56
|
+
|
|
57
|
+
- [Event locator ABI](https://digitalarsenal.github.io/space-data-module-sdk/events-abi.html)
|
|
58
|
+
- [Module publication standard](https://digitalarsenal.github.io/space-data-module-sdk/module-publication-standard.html)
|
|
59
|
+
- [Browser / WasmEdge isomorphism](https://digitalarsenal.github.io/space-data-module-sdk/browser-wasmedge-isomorphic.html)
|
|
60
|
+
- [Isomorphic pthreads](https://digitalarsenal.github.io/space-data-module-sdk/isomorphic-pthreads.html)
|
|
61
|
+
- [Tri-runtime parity](https://digitalarsenal.github.io/space-data-module-sdk/tri-runtime-parity.html)
|
|
62
|
+
- [Tri-runtime parity gate](https://digitalarsenal.github.io/space-data-module-sdk/tri-runtime-parity-gate.html)
|
|
63
|
+
- [Testing harness](https://digitalarsenal.github.io/space-data-module-sdk/testing-harness.html)
|
|
64
|
+
- [Language and runtime matrix](https://digitalarsenal.github.io/space-data-module-sdk/language-runtime-matrix.html)
|
|
65
|
+
- [FlatSQL host contract](https://digitalarsenal.github.io/space-data-module-sdk/flatsql-host-contract.html)
|
|
66
|
+
- [FlatSQL streaming standard](https://digitalarsenal.github.io/space-data-module-sdk/flatsql-streaming-standard.html)
|
|
67
|
+
- [Credential lanes](https://digitalarsenal.github.io/space-data-module-sdk/secrets-capability.html)
|
|
68
|
+
- [Protocol installation](https://digitalarsenal.github.io/space-data-module-sdk/protocol-installation.html)
|
|
69
|
+
- [GPU module ABI](https://digitalarsenal.github.io/space-data-module-sdk/gpu-module-abi.html)
|
|
70
|
+
- [Module bundle runtime](https://digitalarsenal.github.io/space-data-module-sdk/module-bundle-runtime-plan.html)
|
|
71
|
+
- [Isomorphic SDN runtime](https://digitalarsenal.github.io/space-data-module-sdk/isomorphic-sdn-runtime-plan.html)
|
|
72
|
+
- [Node-RED node parity](https://digitalarsenal.github.io/space-data-module-sdk/node-red-default-node-parity.html)
|
|
73
|
+
|
|
74
|
+
## Rules for an agent writing a module
|
|
75
|
+
|
|
76
|
+
1. Read the family page for your family FIRST; implement the exact export set it names.
|
|
77
|
+
2. Never invent an export, a struct field or an error code. If the page says a
|
|
78
|
+
family is DESIGNED or PLANNED, it has no stable ABI — do not ship against it.
|
|
79
|
+
3. Use the family's `.fbs`-generated header as the wire contract; do not
|
|
80
|
+
hand-write struct layouts.
|
|
81
|
+
4. Return the family's named negative error codes, never a generic -1, and never
|
|
82
|
+
NaN or unphysical values as a success result.
|
|
83
|
+
5. Prove the module with the conformance self-test and the parity gate before
|
|
84
|
+
protecting, signing or publishing it.
|
|
85
|
+
6. Internal engine JS registries are not a public contract and never an
|
|
86
|
+
extension point. Harness contracts are WASM ABIs only.
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta name="description" content="This document is superseded by:" />
|
|
7
|
+
<title>Module bundle runtime — Space Data Module SDK</title>
|
|
8
|
+
<link rel="stylesheet" href="./styles.css" />
|
|
9
|
+
<!-- SDN_CONSUMER_ASSETS_START -->
|
|
10
|
+
<link rel="stylesheet" href="https://static.spacedatanetwork.org/assets/hd-wallet-ui/2.0.28/sdn-wallet-public-client.c3f68d1cfd88478f10d836a5e829d1dfc6a10157972cf0f7d4d319d0636f2cc4.css" integrity="sha384-fICuhN4I9xqOK1F5vGGzl26opuO+xQIvTZXMSV76lWTBiQ6AfzztMGLLDw8yRT8i" crossorigin="anonymous">
|
|
11
|
+
<script defer src="https://static.spacedatanetwork.org/assets/hd-wallet-ui/2.0.28/sdn-wallet-public-client.f611e7e151a3b5c38384272f8894a4c6634f0a29bf925b0e02e0e27f8db0bfff.js" integrity="sha384-R+QqsKoWJIS7iWrtPmgJ49DVnb1hSGjZokupbLInJd1PLp8RwQhtF/hnaerc33ci" crossorigin="anonymous" data-sdn-wallet-public-client="v1"></script>
|
|
12
|
+
<script defer src="https://static.spacedatanetwork.org/assets/sdn-stack-nav/1.0.0/sdn-stack-nav.52fde607eee38ffa116188201f50258ed50bd18c9f06c1af9678f763147a8fe5.js" integrity="sha384-dgeojhJ8vTszHXIbv7O7nZcEzqD10oUYYJjBmPrV7+kLQEUlXLQD4ek5Q7HOFiO5" crossorigin="anonymous" data-nav-style-url="https://static.spacedatanetwork.org/assets/sdn-stack-nav/1.0.0/sdn-stack-nav.36a36359ce18322185e9ff179f88175bab67d5ad84a14d9c08a54f2ff27267e7.css" data-nav-style-integrity="sha384-c4M8Fg+kYaeOYYtJVr7jJsde24IhSWkWaRyAOHEZU9jozhRck089aw+mnHwxymds" data-wallet-client-url="https://static.spacedatanetwork.org/assets/hd-wallet-ui/2.0.28/sdn-wallet-public-client.f611e7e151a3b5c38384272f8894a4c6634f0a29bf925b0e02e0e27f8db0bfff.js" data-wallet-client-integrity="sha384-R+QqsKoWJIS7iWrtPmgJ49DVnb1hSGjZokupbLInJd1PLp8RwQhtF/hnaerc33ci" data-wallet-style-url="https://static.spacedatanetwork.org/assets/hd-wallet-ui/2.0.28/sdn-wallet-public-client.c3f68d1cfd88478f10d836a5e829d1dfc6a10157972cf0f7d4d319d0636f2cc4.css" data-wallet-style-integrity="sha384-fICuhN4I9xqOK1F5vGGzl26opuO+xQIvTZXMSV76lWTBiQ6AfzztMGLLDw8yRT8i" data-wallet-client-id="sdn-module-sdk-pages-v1" data-wallet-callback-uri="https://digitalarsenal.github.io/space-data-module-sdk/wallet-callback.html" data-wallet-registry-sha256="e1ce6fe903c9700484a8a87d96581c8cad97063dabf63030b4518a31a3bdaa93"></script>
|
|
13
|
+
<!-- SDN_CONSUMER_ASSETS_END -->
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<a class="skip-link" href="#main">Skip to content</a>
|
|
17
|
+
<sdn-stack-nav active="module-sdk"></sdn-stack-nav>
|
|
18
|
+
<header class="site-header">
|
|
19
|
+
<a class="site-brand" href="./">Space Data Module SDK</a>
|
|
20
|
+
<nav class="header-links" aria-label="Site">
|
|
21
|
+
<a href="./byo-wasm-quickstart.html">Quickstart</a>
|
|
22
|
+
<a href="./conformance.html">Conformance</a>
|
|
23
|
+
<a href="https://github.com/DigitalArsenal/space-data-module-sdk">GitHub</a>
|
|
24
|
+
<a class="stack-button" href="#stack">Stack</a>
|
|
25
|
+
</nav>
|
|
26
|
+
</header>
|
|
27
|
+
<div class="shell">
|
|
28
|
+
<nav class="sidebar" id="sidebar" aria-label="Documentation">
|
|
29
|
+
<h2>Start here</h2><ul>
|
|
30
|
+
<li><a href="./index.html"><span>Harness family matrix</span></a></li>
|
|
31
|
+
<li><a href="./byo-wasm-quickstart.html"><span>BYO-wasm quickstart</span></a></li>
|
|
32
|
+
<li><a href="./conformance.html"><span>Conformance kit</span></a></li>
|
|
33
|
+
<li><a href="./protect-and-sign.html"><span>Protect and sign</span></a></li>
|
|
34
|
+
<li><a href="./publication-submission.html"><span>Publication and listing</span></a></li>
|
|
35
|
+
</ul>
|
|
36
|
+
<h2>Dynamics</h2><ul>
|
|
37
|
+
<li><a href="./families/propagator.html"><span>Propagator</span><span class="tag tag-shipped">shipped</span></a></li>
|
|
38
|
+
<li><a href="./families/maneuver.html"><span>Maneuver</span><span class="tag tag-experimental">experimental</span></a></li>
|
|
39
|
+
<li><a href="./families/propulsion.html"><span>Propulsion</span><span class="tag tag-planned">planned</span></a></li>
|
|
40
|
+
<li><a href="./families/attitude.html"><span>Attitude</span><span class="tag tag-planned">planned</span></a></li>
|
|
41
|
+
<li><a href="./families/gnc.html"><span>GNC</span><span class="tag tag-planned">planned</span></a></li>
|
|
42
|
+
</ul>
|
|
43
|
+
<h2>Environment and interaction</h2><ul>
|
|
44
|
+
<li><a href="./families/rf.html"><span>RF</span><span class="tag tag-designed">designed</span></a></li>
|
|
45
|
+
<li><a href="./families/sensor.html"><span>Sensor</span><span class="tag tag-planned">planned</span></a></li>
|
|
46
|
+
<li><a href="./families/signature.html"><span>Signature</span><span class="tag tag-planned">planned</span></a></li>
|
|
47
|
+
<li><a href="./families/environment.html"><span>Environment</span><span class="tag tag-planned">planned</span></a></li>
|
|
48
|
+
<li><a href="./families/obstruction.html"><span>Obstruction</span><span class="tag tag-designed">designed</span></a></li>
|
|
49
|
+
</ul>
|
|
50
|
+
<h2>Event physics</h2><ul>
|
|
51
|
+
<li><a href="./families/breakup.html"><span>Breakup</span><span class="tag tag-planned">planned</span></a></li>
|
|
52
|
+
<li><a href="./families/reentry.html"><span>Reentry</span><span class="tag tag-planned">planned</span></a></li>
|
|
53
|
+
<li><a href="./families/conjunction.html"><span>Conjunction</span><span class="tag tag-designed">designed</span></a></li>
|
|
54
|
+
<li><a href="./families/effects.html"><span>Effects</span><span class="tag tag-planned">planned</span></a></li>
|
|
55
|
+
</ul>
|
|
56
|
+
<h2>Estimation, data and logic</h2><ul>
|
|
57
|
+
<li><a href="./families/estimation.html"><span>Estimation</span><span class="tag tag-experimental">experimental</span></a></li>
|
|
58
|
+
<li><a href="./families/data-source.html"><span>Data source</span><span class="tag tag-shipped">shipped</span></a></li>
|
|
59
|
+
<li><a href="./families/analytics.html"><span>Analytics</span><span class="tag tag-experimental">experimental</span></a></li>
|
|
60
|
+
<li><a href="./families/scheduler.html"><span>Scheduler</span><span class="tag tag-planned">planned</span></a></li>
|
|
61
|
+
<li><a href="./families/behavior.html"><span>Behavior</span><span class="tag tag-planned">planned</span></a></li>
|
|
62
|
+
</ul>
|
|
63
|
+
<h2>Runtime contract</h2><ul>
|
|
64
|
+
<li><a href="./events-abi.html"><span>Event locator ABI</span></a></li>
|
|
65
|
+
<li><a href="./module-publication-standard.html"><span>Module publication standard</span></a></li>
|
|
66
|
+
<li><a href="./browser-wasmedge-isomorphic.html"><span>Browser / WasmEdge isomorphism</span></a></li>
|
|
67
|
+
<li><a href="./isomorphic-pthreads.html"><span>Isomorphic pthreads</span></a></li>
|
|
68
|
+
<li><a href="./tri-runtime-parity.html"><span>Tri-runtime parity</span></a></li>
|
|
69
|
+
<li><a href="./tri-runtime-parity-gate.html"><span>Tri-runtime parity gate</span></a></li>
|
|
70
|
+
<li><a href="./testing-harness.html"><span>Testing harness</span></a></li>
|
|
71
|
+
<li><a href="./language-runtime-matrix.html"><span>Language and runtime matrix</span></a></li>
|
|
72
|
+
</ul>
|
|
73
|
+
<h2>Host surfaces</h2><ul>
|
|
74
|
+
<li><a href="./flatsql-host-contract.html"><span>FlatSQL host contract</span></a></li>
|
|
75
|
+
<li><a href="./flatsql-streaming-standard.html"><span>FlatSQL streaming standard</span></a></li>
|
|
76
|
+
<li><a href="./secrets-capability.html"><span>Credential lanes</span></a></li>
|
|
77
|
+
<li><a href="./protocol-installation.html"><span>Protocol installation</span></a></li>
|
|
78
|
+
<li><a href="./gpu-module-abi.html"><span>GPU module ABI</span></a></li>
|
|
79
|
+
<li><a href="./module-bundle-runtime-plan.html" aria-current="page"><span>Module bundle runtime</span></a></li>
|
|
80
|
+
<li><a href="./isomorphic-sdn-runtime-plan.html"><span>Isomorphic SDN runtime</span></a></li>
|
|
81
|
+
<li><a href="./node-red-default-node-parity.html"><span>Node-RED node parity</span></a></li>
|
|
82
|
+
</ul>
|
|
83
|
+
</nav>
|
|
84
|
+
<main class="doc" id="main">
|
|
85
|
+
<h1>Module bundle runtime</h1>
|
|
86
|
+
<p>This document is superseded by:</p>
|
|
87
|
+
<ul>
|
|
88
|
+
<li>module-publication-standard.md</li>
|
|
89
|
+
<li>isomorphic-sdn-runtime-plan.md</li>
|
|
90
|
+
</ul>
|
|
91
|
+
<p>The old document is no longer current because:</p>
|
|
92
|
+
<ul>
|
|
93
|
+
<li>the canonical publication model now explicitly allows appended <code>REC</code> records carrying <code>PNM</code> and <code>ENC</code></li>
|
|
94
|
+
<li>the canonical runtime discussion has moved to the SDK runtime host model</li>
|
|
95
|
+
<li>bundle/container concerns and runtime-host concerns are now documented separately</li>
|
|
96
|
+
</ul>
|
|
97
|
+
<p>Current rule summary:</p>
|
|
98
|
+
<ul>
|
|
99
|
+
<li>the executable artifact is still canonical <code>.wasm</code></li>
|
|
100
|
+
<li>single-file bundle metadata is carried by an <code>MBL</code> record inside one appended <code>REC</code> trailer</li>
|
|
101
|
+
<li>publication/signature/encryption metadata is carried in that same appended <code>REC</code> trailer when present</li>
|
|
102
|
+
<li>runtime hosting is defined by the SDK runtime host, not by the bundle container itself</li>
|
|
103
|
+
</ul>
|
|
104
|
+
|
|
105
|
+
<p class="doc-footer">
|
|
106
|
+
Source of truth for this page:
|
|
107
|
+
<code>docs/module-bundle-runtime-plan.md</code>. Regenerate with
|
|
108
|
+
<code>npm run build:docs</code>.
|
|
109
|
+
</p>
|
|
110
|
+
</main>
|
|
111
|
+
|
|
112
|
+
</div>
|
|
113
|
+
<section id="stack" class="section" aria-labelledby="stack-title">
|
|
114
|
+
<div class="section-head">
|
|
115
|
+
<p class="eyebrow">SDN Stack</p>
|
|
116
|
+
<h2 id="stack-title">Connected sites</h2>
|
|
117
|
+
</div>
|
|
118
|
+
<div class="link-list">
|
|
119
|
+
<a href="https://spacedatastandards.org/">
|
|
120
|
+
<span>Standards</span>
|
|
121
|
+
<small>Canonical schemas, record contracts, and generated bindings.</small>
|
|
122
|
+
</a>
|
|
123
|
+
<a href="https://digitalarsenal.github.io/flatbuffers/">
|
|
124
|
+
<span>FlatBuffers</span>
|
|
125
|
+
<small>Binary encoding, schema tooling, and runtime documentation.</small>
|
|
126
|
+
</a>
|
|
127
|
+
<a href="https://digitalarsenal.github.io/flatsql/">
|
|
128
|
+
<span>FlatSQL</span>
|
|
129
|
+
<small>SQL-style queries over FlatBuffer-backed datasets and streams.</small>
|
|
130
|
+
</a>
|
|
131
|
+
<a href="https://spacedatanetwork.org/">
|
|
132
|
+
<span>SDN</span>
|
|
133
|
+
<small>Distributed publication, discovery, delivery, and marketplace infrastructure.</small>
|
|
134
|
+
</a>
|
|
135
|
+
<a href="https://digitalarsenal.github.io/space-data-module-sdk/" class="active">
|
|
136
|
+
<span>Module SDK</span>
|
|
137
|
+
<small>WASM module packaging, validation, and host compatibility tooling.</small>
|
|
138
|
+
</a>
|
|
139
|
+
</div>
|
|
140
|
+
</section>
|
|
141
|
+
<footer class="site-footer">
|
|
142
|
+
Space Data Module SDK — Apache-2.0. Every ABI page renders a Markdown
|
|
143
|
+
source in <code>docs/</code>; edit the Markdown, never the HTML.
|
|
144
|
+
</footer>
|
|
145
|
+
</body>
|
|
146
|
+
</html>
|