openpond 0.0.57 → 0.0.59
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/dist/chunks/{actions-command-YY7UH37B.js → actions-command-BNVIILSL.js} +40 -1
- package/dist/chunks/{app-layer-EZQWXB3S.js → app-layer-RNQXXM6L.js} +5 -4
- package/dist/chunks/{app-server-runtime-JMEHVOFO.js → app-server-runtime-YCKU23ON.js} +6 -6
- package/dist/chunks/{apps-HHQF6TNR.js → apps-LV3CSMLT.js} +5 -4
- package/dist/chunks/{chunk-7JUIWABV.js → chunk-2E6OPEM5.js} +2 -2
- package/dist/chunks/{chunk-OJ34YA7E.js → chunk-2J3LG4U7.js} +2 -2
- package/dist/chunks/{chunk-XHTO6KF2.js → chunk-3PKCT4JC.js} +1 -1
- package/dist/chunks/{chunk-3HW6OSHP.js → chunk-63N6442Q.js} +1 -1
- package/dist/chunks/{chunk-42GGG3W4.js → chunk-7QLVLGDM.js} +1 -1
- package/dist/chunks/{chunk-KHNHUA2H.js → chunk-DXSHQ6TO.js} +111 -1
- package/dist/chunks/{chunk-XX6KALN2.js → chunk-EWS67RLV.js} +136 -65
- package/dist/chunks/{chunk-FCVVOMIP.js → chunk-FHP7OMEI.js} +3 -31
- package/dist/chunks/{chunk-MIZHCABO.js → chunk-I23UKEYS.js} +1 -1
- package/dist/chunks/{chunk-UBHCG2NE.js → chunk-LMQ4MPQI.js} +2 -2
- package/dist/chunks/{chunk-5ZLFZZLS.js → chunk-PVGJXCAK.js} +1 -1
- package/dist/chunks/{chunk-5Y7Q6ZSH.js → chunk-QNYFZ4I5.js} +1 -1
- package/dist/chunks/{chunk-5QJGC2QI.js → chunk-RC3N77IV.js} +39 -33
- package/dist/chunks/chunk-SKUS4NPW.js +633 -0
- package/dist/chunks/{cli-EUZHWEJR.js → cli-V4VB2VBY.js} +5 -5
- package/dist/chunks/{core-commands-RI4B7TYM.js → core-commands-H2UC3LHG.js} +6 -5
- package/dist/chunks/{desktop-test-DRTCQWDV.js → desktop-test-TV64EY5A.js} +5 -4
- package/dist/chunks/{help-UILXBPHG.js → help-NEYFMHWQ.js} +1 -1
- package/dist/chunks/{opchat-SSK54JSR.js → opchat-ZL5JJQ5L.js} +5 -4
- package/dist/chunks/{organizations-G5S2HJLT.js → organizations-4IEC35QB.js} +7 -6
- package/dist/chunks/{profile-YD7NYL3U.js → profile-EVASCDIN.js} +6 -5
- package/dist/chunks/{project-agent-75PAFL6B.js → project-agent-DMN64RZJ.js} +6 -5
- package/dist/chunks/{sandbox-command-FGUJDDXR.js → sandbox-command-WKGVO32R.js} +6 -5
- package/dist/chunks/{sandbox-template-PBSIPCVO.js → sandbox-template-BJUS4KJM.js} +7 -6
- package/dist/chunks/{src-P7YLMEEK.js → src-2AX2MUD4.js} +133 -59
- package/dist/chunks/{src-FTG6DVBK.js → src-KLQEJ6RO.js} +22 -4
- package/dist/chunks/{teams-bot-NSYWELB6.js → teams-bot-HUXYJ6XA.js} +5 -4
- package/dist/chunks/{workspaces-R3EVRSWA.js → workspaces-FPIBAG7G.js} +2 -2
- package/dist/cli.js +13 -13
- package/docs/command-reference.md +7 -1
- package/package.json +1 -1
|
@@ -397,7 +397,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
397
397
|
name: "help",
|
|
398
398
|
usage: "openpond help",
|
|
399
399
|
optionSchema: {},
|
|
400
|
-
handler: async () => (await import("./help-
|
|
400
|
+
handler: async () => (await import("./help-NEYFMHWQ.js")).printHelp()
|
|
401
401
|
},
|
|
402
402
|
{
|
|
403
403
|
name: "version",
|
|
@@ -409,19 +409,19 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
409
409
|
name: "check-update",
|
|
410
410
|
usage: "openpond check-update",
|
|
411
411
|
optionSchema: {},
|
|
412
|
-
handler: async () => (await import("./core-commands-
|
|
412
|
+
handler: async () => (await import("./core-commands-H2UC3LHG.js")).runCheckUpdate()
|
|
413
413
|
},
|
|
414
414
|
{
|
|
415
415
|
name: "login",
|
|
416
416
|
usage: "openpond login [--base-url <url>]",
|
|
417
417
|
optionSchema: CLI_GLOBAL_OPTION_SCHEMA,
|
|
418
|
-
handler: async ({ options }) => (await import("./core-commands-
|
|
418
|
+
handler: async ({ options }) => (await import("./core-commands-H2UC3LHG.js")).runLogin(options)
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
421
|
name: "init",
|
|
422
422
|
usage: "openpond init [--path <dir>]",
|
|
423
423
|
optionSchema: { path: "string" },
|
|
424
|
-
handler: async ({ options }) => (await import("./profile-
|
|
424
|
+
handler: async ({ options }) => (await import("./profile-EVASCDIN.js")).runOpenPondInitCommand(options)
|
|
425
425
|
},
|
|
426
426
|
{
|
|
427
427
|
name: "profile",
|
|
@@ -449,27 +449,33 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
449
449
|
publishHostedSource: "boolean",
|
|
450
450
|
teamId: "string"
|
|
451
451
|
},
|
|
452
|
-
handler: async ({ options, rest }) => (await import("./profile-
|
|
452
|
+
handler: async ({ options, rest }) => (await import("./profile-EVASCDIN.js")).runOpenPondProfileCommand(options, rest)
|
|
453
453
|
},
|
|
454
454
|
{
|
|
455
455
|
name: "agents",
|
|
456
456
|
usage: "openpond agents [--json]",
|
|
457
457
|
optionSchema: { json: "boolean" },
|
|
458
|
-
handler: async ({ options, rest }) => (await import("./profile-
|
|
458
|
+
handler: async ({ options, rest }) => (await import("./profile-EVASCDIN.js")).runOpenPondAgentsCommand(options, rest)
|
|
459
459
|
},
|
|
460
460
|
{
|
|
461
461
|
name: "actions",
|
|
462
|
-
usage: "openpond actions <check|build|run|dev> [action-id] [--cwd DIR] [--input JSON|--input-file PATH]",
|
|
462
|
+
usage: "openpond actions <check|build|run|dev|publish> [action-id] [--cwd DIR] [--input JSON|--input-file PATH]",
|
|
463
463
|
optionSchema: {
|
|
464
|
+
apiKey: "string",
|
|
465
|
+
baseUrl: "string",
|
|
464
466
|
cwd: "string",
|
|
465
467
|
input: "string",
|
|
466
468
|
inputFile: "string",
|
|
467
469
|
json: "boolean",
|
|
468
470
|
outputDirectory: "string",
|
|
469
471
|
sourceDirectory: "string",
|
|
472
|
+
sourceCommitSha: "string",
|
|
473
|
+
sourceRef: "string",
|
|
474
|
+
projectId: "string",
|
|
475
|
+
teamId: "string",
|
|
470
476
|
timeoutMs: "integer"
|
|
471
477
|
},
|
|
472
|
-
handler: async ({ options, rest }) => (await import("./actions-command-
|
|
478
|
+
handler: async ({ options, rest }) => (await import("./actions-command-BNVIILSL.js")).runProjectActionsCommand(options, rest)
|
|
473
479
|
},
|
|
474
480
|
...profileSdkAliasDefinitions(),
|
|
475
481
|
{
|
|
@@ -488,19 +494,19 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
488
494
|
name: "profiles",
|
|
489
495
|
usage: "openpond profiles [args]",
|
|
490
496
|
optionSchema: { json: "boolean" },
|
|
491
|
-
handler: async ({ options, rest }) => (await import("./core-commands-
|
|
497
|
+
handler: async ({ options, rest }) => (await import("./core-commands-H2UC3LHG.js")).runProfiles(options, rest)
|
|
492
498
|
},
|
|
493
499
|
{
|
|
494
500
|
name: "account",
|
|
495
501
|
usage: "openpond account",
|
|
496
502
|
optionSchema: { json: "boolean" },
|
|
497
|
-
handler: async () => (await import("./core-commands-
|
|
503
|
+
handler: async () => (await import("./core-commands-H2UC3LHG.js")).runAccount()
|
|
498
504
|
},
|
|
499
505
|
{
|
|
500
506
|
name: "health",
|
|
501
507
|
usage: "openpond health",
|
|
502
508
|
optionSchema: { json: "boolean" },
|
|
503
|
-
handler: async ({ options }) => (await import("./core-commands-
|
|
509
|
+
handler: async ({ options }) => (await import("./core-commands-H2UC3LHG.js")).runHealth(options)
|
|
504
510
|
},
|
|
505
511
|
{
|
|
506
512
|
name: "app-server",
|
|
@@ -508,7 +514,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
508
514
|
optionSchema: {
|
|
509
515
|
storeDir: "string"
|
|
510
516
|
},
|
|
511
|
-
handler: async ({ options, rest }) => (await import("./app-layer-
|
|
517
|
+
handler: async ({ options, rest }) => (await import("./app-layer-RNQXXM6L.js")).runOpenPondServerCommand("app-server", options, rest)
|
|
512
518
|
},
|
|
513
519
|
{
|
|
514
520
|
name: "serve",
|
|
@@ -519,7 +525,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
519
525
|
listen: "string",
|
|
520
526
|
port: "integer"
|
|
521
527
|
},
|
|
522
|
-
handler: async ({ options, rest }) => (await import("./app-layer-
|
|
528
|
+
handler: async ({ options, rest }) => (await import("./app-layer-RNQXXM6L.js")).runOpenPondServerCommand("serve", options, rest)
|
|
523
529
|
},
|
|
524
530
|
{
|
|
525
531
|
name: "ui",
|
|
@@ -532,7 +538,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
532
538
|
port: "integer",
|
|
533
539
|
webRoot: "string"
|
|
534
540
|
},
|
|
535
|
-
handler: async ({ options, rest }) => (await import("./app-layer-
|
|
541
|
+
handler: async ({ options, rest }) => (await import("./app-layer-RNQXXM6L.js")).runOpenPondServerCommand("web", options, rest)
|
|
536
542
|
},
|
|
537
543
|
{
|
|
538
544
|
name: "tui",
|
|
@@ -546,13 +552,13 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
546
552
|
provider: "string",
|
|
547
553
|
server: "string"
|
|
548
554
|
},
|
|
549
|
-
handler: async ({ options, rest }) => (await import("./app-layer-
|
|
555
|
+
handler: async ({ options, rest }) => (await import("./app-layer-RNQXXM6L.js")).runOpenPondTerminalCommand(options, rest)
|
|
550
556
|
},
|
|
551
557
|
{
|
|
552
558
|
name: "chat",
|
|
553
559
|
usage: "openpond chat (--message-file <path>|--message <text>|--stdin) --non-interactive [--provider <id>] [--model <id>] [--agent <id>] [--project <id>] [--resume <session-id>] [--yes] [--approval-policy <policy>] [--json] [--timeout-sec <n>] [--max-output-bytes <n>] [--sandbox <mode>]",
|
|
554
560
|
optionSchema: CHAT_OPTION_SCHEMA,
|
|
555
|
-
handler: async ({ options, rest }) => (await import("./app-layer-
|
|
561
|
+
handler: async ({ options, rest }) => (await import("./app-layer-RNQXXM6L.js")).runOpenPondTerminalCommand(options, rest)
|
|
556
562
|
},
|
|
557
563
|
{
|
|
558
564
|
name: "tool",
|
|
@@ -588,7 +594,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
588
594
|
name: "sandbox-template",
|
|
589
595
|
usage: "openpond sandbox-template <command> [args]",
|
|
590
596
|
optionSchema: SANDBOX_TEMPLATE_OPTION_SCHEMA,
|
|
591
|
-
handler: async ({ options, rest }) => (await import("./sandbox-template-
|
|
597
|
+
handler: async ({ options, rest }) => (await import("./sandbox-template-BJUS4KJM.js")).runSandboxTemplateCommand(options, rest)
|
|
592
598
|
},
|
|
593
599
|
{
|
|
594
600
|
name: "repo",
|
|
@@ -633,13 +639,13 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
633
639
|
toolset: "string",
|
|
634
640
|
url: "string"
|
|
635
641
|
},
|
|
636
|
-
handler: async ({ options, rest }) => (await import("./organizations-
|
|
642
|
+
handler: async ({ options, rest }) => (await import("./organizations-4IEC35QB.js")).runOrganizationsCommand(options, rest)
|
|
637
643
|
},
|
|
638
644
|
{
|
|
639
645
|
name: "project",
|
|
640
646
|
usage: "openpond project <list|create|upsert|get|update|sync|source-upload|archive> [args]",
|
|
641
647
|
optionSchema: PROJECT_OPTION_SCHEMA,
|
|
642
|
-
handler: async ({ options, rest }) => (await import("./project-agent-
|
|
648
|
+
handler: async ({ options, rest }) => (await import("./project-agent-DMN64RZJ.js")).runProjectCommand(options, rest)
|
|
643
649
|
},
|
|
644
650
|
{
|
|
645
651
|
name: "agent",
|
|
@@ -651,7 +657,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
651
657
|
"openpond agent source publish <agentId> --team-id <id> [--expected-manifest-hash <hash>]"
|
|
652
658
|
],
|
|
653
659
|
optionSchema: AGENT_OPTION_SCHEMA,
|
|
654
|
-
handler: async ({ options, rest }) => (await import("./project-agent-
|
|
660
|
+
handler: async ({ options, rest }) => (await import("./project-agent-DMN64RZJ.js")).runAgentCommand(options, rest)
|
|
655
661
|
},
|
|
656
662
|
{
|
|
657
663
|
name: "desktop-test",
|
|
@@ -672,13 +678,13 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
672
678
|
token: "string",
|
|
673
679
|
tokenFile: "string"
|
|
674
680
|
},
|
|
675
|
-
handler: async ({ options, rest }) => (await import("./desktop-test-
|
|
681
|
+
handler: async ({ options, rest }) => (await import("./desktop-test-TV64EY5A.js")).runDesktopTestCommand(options, rest)
|
|
676
682
|
},
|
|
677
683
|
{
|
|
678
684
|
name: "sandbox",
|
|
679
685
|
usage: "openpond sandbox <command> [args]",
|
|
680
686
|
optionSchema: SANDBOX_OPTION_SCHEMA,
|
|
681
|
-
handler: async ({ options, rest }) => (await import("./sandbox-command-
|
|
687
|
+
handler: async ({ options, rest }) => (await import("./sandbox-command-WKGVO32R.js")).runSandboxCommand(options, rest)
|
|
682
688
|
},
|
|
683
689
|
{
|
|
684
690
|
name: "training",
|
|
@@ -726,7 +732,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
726
732
|
skipTool: "boolean",
|
|
727
733
|
stream: "boolean"
|
|
728
734
|
},
|
|
729
|
-
handler: async ({ options, rest }) => (await import("./opchat-
|
|
735
|
+
handler: async ({ options, rest }) => (await import("./opchat-ZL5JJQ5L.js")).runOpChatCommand(options, rest)
|
|
730
736
|
},
|
|
731
737
|
{
|
|
732
738
|
name: "teams-bot",
|
|
@@ -735,7 +741,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
735
741
|
json: "boolean",
|
|
736
742
|
teamId: "string"
|
|
737
743
|
},
|
|
738
|
-
handler: async ({ options, rest }) => (await import("./teams-bot-
|
|
744
|
+
handler: async ({ options, rest }) => (await import("./teams-bot-HUXYJ6XA.js")).runTeamsBotCommand(options, rest)
|
|
739
745
|
},
|
|
740
746
|
{
|
|
741
747
|
name: "apps",
|
|
@@ -756,7 +762,7 @@ var CLI_COMMAND_REGISTRY = [
|
|
|
756
762
|
name: "opentool",
|
|
757
763
|
usage: "openpond opentool <init|validate|build> [args]",
|
|
758
764
|
optionSchema: {},
|
|
759
|
-
handler: async ({ rest }) => (await import("./core-commands-
|
|
765
|
+
handler: async ({ rest }) => (await import("./core-commands-H2UC3LHG.js")).runOpentool(rest)
|
|
760
766
|
}
|
|
761
767
|
];
|
|
762
768
|
var CLI_COMMAND_BY_NAME = /* @__PURE__ */ new Map();
|
|
@@ -828,11 +834,11 @@ function profileSdkAliasDefinitions() {
|
|
|
828
834
|
name,
|
|
829
835
|
usage: `openpond ${name} [args]`,
|
|
830
836
|
optionSchema: PROFILE_SDK_OPTION_SCHEMA,
|
|
831
|
-
handler: async ({ options, rest }) => (await import("./profile-
|
|
837
|
+
handler: async ({ options, rest }) => (await import("./profile-EVASCDIN.js")).runOpenPondProfileSdkAlias(name, options, rest)
|
|
832
838
|
}));
|
|
833
839
|
}
|
|
834
840
|
async function runToolCommand({ options, rest }) {
|
|
835
|
-
const { runToolList, runToolRun } = await import("./core-commands-
|
|
841
|
+
const { runToolList, runToolRun } = await import("./core-commands-H2UC3LHG.js");
|
|
836
842
|
const subcommand = rest[0];
|
|
837
843
|
if (subcommand === "list") {
|
|
838
844
|
const target = rest[1];
|
|
@@ -856,8 +862,8 @@ async function runToolCommand({ options, rest }) {
|
|
|
856
862
|
throw new Error("usage: tool <list|run> <handle>/<repo> [args]");
|
|
857
863
|
}
|
|
858
864
|
async function runBacktestCommand({ options, rest }) {
|
|
859
|
-
const { runBacktestRun } = await import("./core-commands-
|
|
860
|
-
const { runBacktestEvents, runBacktestGet } = await import("./apps-
|
|
865
|
+
const { runBacktestRun } = await import("./core-commands-H2UC3LHG.js");
|
|
866
|
+
const { runBacktestEvents, runBacktestGet } = await import("./apps-LV3CSMLT.js");
|
|
861
867
|
const subcommand = rest[0] || "run";
|
|
862
868
|
if (subcommand === "run") {
|
|
863
869
|
const target = rest[1];
|
|
@@ -891,7 +897,7 @@ async function runBacktestCommand({ options, rest }) {
|
|
|
891
897
|
throw new Error("usage: backtest <run|events|get> <handle>/<repo> [args]");
|
|
892
898
|
}
|
|
893
899
|
async function runDeployCommand({ options, rest }) {
|
|
894
|
-
const { runDeployWatch } = await import("./core-commands-
|
|
900
|
+
const { runDeployWatch } = await import("./core-commands-H2UC3LHG.js");
|
|
895
901
|
const subcommand = rest[0] || "watch";
|
|
896
902
|
if (subcommand !== "watch") {
|
|
897
903
|
throw new Error(
|
|
@@ -907,7 +913,7 @@ async function runDeployCommand({ options, rest }) {
|
|
|
907
913
|
await runDeployWatch(options, target);
|
|
908
914
|
}
|
|
909
915
|
async function runTemplateCommand({ options, rest }) {
|
|
910
|
-
const { runTemplateBranches, runTemplateStatus, runTemplateUpdate } = await import("./core-commands-
|
|
916
|
+
const { runTemplateBranches, runTemplateStatus, runTemplateUpdate } = await import("./core-commands-H2UC3LHG.js");
|
|
911
917
|
const subcommand = rest[0] || "status";
|
|
912
918
|
const target = rest[1];
|
|
913
919
|
if (!target) {
|
|
@@ -932,7 +938,7 @@ async function runTemplateCommand({ options, rest }) {
|
|
|
932
938
|
);
|
|
933
939
|
}
|
|
934
940
|
async function runRepoCommand({ options, rest }) {
|
|
935
|
-
const { runRepoCreate, runRepoPush } = await import("./core-commands-
|
|
941
|
+
const { runRepoCreate, runRepoPush } = await import("./core-commands-H2UC3LHG.js");
|
|
936
942
|
const subcommand = rest[0] || "create";
|
|
937
943
|
if (subcommand === "create") {
|
|
938
944
|
await runRepoCreate(options, rest.slice(1));
|
|
@@ -959,7 +965,7 @@ async function runAppsCommand({ options, rest }) {
|
|
|
959
965
|
runAppsSummary,
|
|
960
966
|
runAppsTools,
|
|
961
967
|
runAppsToolsExecute
|
|
962
|
-
} = await import("./apps-
|
|
968
|
+
} = await import("./apps-LV3CSMLT.js");
|
|
963
969
|
const subcommand = rest[0];
|
|
964
970
|
if (subcommand === "list") {
|
|
965
971
|
await runAppsList(options);
|