@series-inc/rundot-kinetix 0.1.0-beta.13 → 0.1.0-beta.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@series-inc/rundot-kinetix",
3
- "version": "0.1.0-beta.13",
3
+ "version": "0.1.0-beta.14",
4
4
  "description": "Composable deterministic runtime core: baker, world kernel, runtime identity, deterministic math, render records, and portable C++ parity",
5
5
  "repository": {
6
6
  "type": "git",
@@ -73,9 +73,11 @@ export function createKinetixWorldRuntime({ world, identity, sessionConfigBytes
73
73
  assertSnapshot(initialSnapshot);
74
74
  let currentCheckpoint = makeCheckpoint(initialSnapshot);
75
75
  const canonicalSessionConfig = sessionConfigBytes.slice();
76
+ const capabilities = Object.freeze({ commands: true });
76
77
 
77
78
  const runtime = {
78
79
  identity: Object.freeze(structuredClone(identity)),
80
+ capabilities,
79
81
  sessionConfigDigest: kinetixSessionConfigDigest(canonicalSessionConfig),
80
82
  get currentFrame() {
81
83
  return checkpointData(currentCheckpoint).frame;