@thisispandora/agent-sdk 0.1.0-alpha.20 → 0.1.0-alpha.22

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.
@@ -1,8 +1,24 @@
1
1
  'use strict';
2
2
  const manifest = require('./manifest.json');
3
- const commandDescriptors = require('./command-descriptors.json');
4
- const mcpToolDefinitions = require('./mcp-tool-definitions.json');
5
- const contractRegistry = require('./contract-registry.json');
3
+
4
+ function loadRootArtifact(name) {
5
+ return require('../../generated/' + name);
6
+ }
7
+
8
+ function loadLocalArtifact(name) {
9
+ try {
10
+ return require('./' + name);
11
+ } catch (error) {
12
+ if (error && error.code !== 'MODULE_NOT_FOUND') {
13
+ throw error;
14
+ }
15
+ return loadRootArtifact(name);
16
+ }
17
+ }
18
+
19
+ const commandDescriptors = loadLocalArtifact('command-descriptors.json');
20
+ const mcpToolDefinitions = loadLocalArtifact('mcp-tool-definitions.json');
21
+ const contractRegistry = loadLocalArtifact('contract-registry.json');
6
22
 
7
23
  function loadGeneratedManifest() {
8
24
  return manifest;
@@ -42,7 +42,7 @@
42
42
  "module": "pandora_agent",
43
43
  "name": "pandora-agent",
44
44
  "sourceProjectPath": "sdk/python/pyproject.toml",
45
- "version": "0.1.0a14"
45
+ "version": "0.1.0a16"
46
46
  },
47
47
  "root": {
48
48
  "artifactSubpaths": {
@@ -54,6 +54,7 @@
54
54
  "types": "sdk/generated/index.d.ts"
55
55
  },
56
56
  "binNames": [
57
+ "overnight-engine",
57
58
  "pandora"
58
59
  ],
59
60
  "exportSubpaths": [
@@ -79,7 +80,7 @@
79
80
  "main": "cli/pandora.cjs",
80
81
  "name": "pandora-cli-skills",
81
82
  "sourceProjectPath": "package.json",
82
- "version": "1.1.105"
83
+ "version": "1.1.145"
83
84
  },
84
85
  "typescript": {
85
86
  "artifactSubpaths": {
@@ -106,7 +107,7 @@
106
107
  "format": "node",
107
108
  "name": "@thisispandora/agent-sdk",
108
109
  "sourceProjectPath": "sdk/typescript/package.json",
109
- "version": "0.1.0-alpha.20"
110
+ "version": "0.1.0-alpha.22"
110
111
  }
111
112
  },
112
113
  "supported": true,
@@ -181,6 +182,12 @@
181
182
  "mirror.health",
182
183
  "mirror.hedge-calc",
183
184
  "mirror.hedge-check",
185
+ "mirror.hedge.bundle",
186
+ "mirror.hedge.plan",
187
+ "mirror.hedge.run",
188
+ "mirror.hedge.start",
189
+ "mirror.hedge.status",
190
+ "mirror.hedge.stop",
184
191
  "mirror.logs",
185
192
  "mirror.lp-explain",
186
193
  "mirror.panic",
@@ -271,21 +278,21 @@
271
278
  "compatibilityAliasTools": 1,
272
279
  "compatibilityRegistryPath": "compatibility",
273
280
  "defaultCatalogMode": "canonical-only",
274
- "mutatingTools": 37,
275
- "operationBackedCommands": 7,
276
- "remoteEligibleTools": 137,
281
+ "mutatingTools": 38,
282
+ "operationBackedCommands": 9,
283
+ "remoteEligibleTools": 143,
277
284
  "topLevelCommands": 52,
278
- "totalCommands": 169,
279
- "totalMcpTools": 137
285
+ "totalCommands": 176,
286
+ "totalMcpTools": 143
280
287
  },
281
- "commandCount": 169,
288
+ "commandCount": 176,
282
289
  "commandDescriptorVersion": "1.4.3",
283
290
  "contractCommandDescriptorVersion": "1.4.3",
284
- "contractPackageVersion": "1.1.105",
291
+ "contractPackageVersion": "1.1.145",
285
292
  "contractVersion": "1.0.0",
286
293
  "generatedFrom": "cli/lib/sdk_contract_service.cjs",
287
294
  "generator": "scripts/generate_agent_contract_sdk.cjs",
288
- "mcpToolCount": 137,
295
+ "mcpToolCount": 143,
289
296
  "package": {
290
297
  "artifactSubpaths": {
291
298
  "bundle": "generated/contract-registry.json",
@@ -311,9 +318,9 @@
311
318
  "format": "node",
312
319
  "name": "@thisispandora/agent-sdk",
313
320
  "sourceProjectPath": "sdk/typescript/package.json",
314
- "version": "0.1.0-alpha.20"
321
+ "version": "0.1.0-alpha.22"
315
322
  },
316
- "packageVersion": "0.1.0-alpha.20",
323
+ "packageVersion": "0.1.0-alpha.22",
317
324
  "publishedSurfaces": {
318
325
  "python": {
319
326
  "artifactSubpaths": {
@@ -326,7 +333,7 @@
326
333
  "module": "pandora_agent",
327
334
  "name": "pandora-agent",
328
335
  "sourceProjectPath": "sdk/python/pyproject.toml",
329
- "version": "0.1.0a14"
336
+ "version": "0.1.0a16"
330
337
  },
331
338
  "root": {
332
339
  "artifactSubpaths": {
@@ -338,6 +345,7 @@
338
345
  "types": "sdk/generated/index.d.ts"
339
346
  },
340
347
  "binNames": [
348
+ "overnight-engine",
341
349
  "pandora"
342
350
  ],
343
351
  "exportSubpaths": [
@@ -363,7 +371,7 @@
363
371
  "main": "cli/pandora.cjs",
364
372
  "name": "pandora-cli-skills",
365
373
  "sourceProjectPath": "package.json",
366
- "version": "1.1.105"
374
+ "version": "1.1.145"
367
375
  },
368
376
  "typescript": {
369
377
  "artifactSubpaths": {
@@ -390,21 +398,21 @@
390
398
  "format": "node",
391
399
  "name": "@thisispandora/agent-sdk",
392
400
  "sourceProjectPath": "sdk/typescript/package.json",
393
- "version": "0.1.0-alpha.20"
401
+ "version": "0.1.0-alpha.22"
394
402
  }
395
403
  },
396
404
  "registryDigest": {
397
- "canonicalHash": "9d638ee641f11a5ff7361b639583b7420341f9f222587e8f58cdf276a69bc8fb",
398
- "commandDigestHash": "b0122b3b2348544191cc7d015fbfe315a6a7b48b1fa6078bdfe7ce04ac5fddb4",
399
- "descriptorHash": "5db51951712c8c6bfbff788633efe072205263efdf471f7d009e3b6383586f67",
400
- "documentationHash": "729b99c48b82beba621b280b77bb3ab3a2aea70323f5c88156ecb69748f13b26",
401
- "fullDescriptorHash": "ed9ceec0c217dbedb62068328ccafa33e294f1d56c11dbde3b56dfe29bd185b9",
402
- "namespaceHash": "35a0e69c2f30bc8067d11ed5e75cfb3865d63bf662e001c15b0a7778e6b67ce7",
403
- "policyProfilesHash": "9380d1d8e7a1104fb30f7ee76d155d9708dd3376f74df4d0bd67ae854f24ca8d",
405
+ "canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
406
+ "commandDigestHash": "85f685455fdf85b757674a3086eb03354a628f22ada1a25afee0fd86b14b92c7",
407
+ "descriptorHash": "c02818f73bd310ef0cc2a3aae6d0d97627b7adb8d72e8bcc994e20d0bca205b8",
408
+ "documentationHash": "d737ff49f0164fe3ab0f296d85d3ebe7b1756ad8b1979aa22665553023ba9a28",
409
+ "fullDescriptorHash": "6514e5d14a7dec875f9ccd03901f826695ed8e1630501e28c12d9720881d9bee",
410
+ "namespaceHash": "cd39afc4f4e8b76473a4768c07d979c44e0421973786c54e12bb6d7888f5952a",
411
+ "policyProfilesHash": "9fb054a4f29be73c2ebf33f643bc17d904b2872dd8e7d564a690db828071a7ce",
404
412
  "principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
405
413
  "routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
406
- "topLevelHash": "db78e40057e3f231880214dd1ac6945ad4153d37df86118a188ef32086a96885",
407
- "trustDistributionHash": "833ccc613bff79d03d2990014f56d6bef73809a9373a1c9ff21530e5c8a7912a"
414
+ "topLevelHash": "04e58344eaec2c14dfa336b13eff952a584c7c5355d90775c3bc8336ab0752ee",
415
+ "trustDistributionHash": "a25f7b545b851d1a0fd250655a5d8c7d6b920faea931fcf5f57f0583d3da23d7"
408
416
  },
409
417
  "schemaVersion": "1.0.0"
410
418
  }