openpond 0.0.30-bootstrap.0 → 0.0.30
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/README.md +19 -5
- package/dist/chunks/{app-layer-YKXEQGOW.js → app-layer-FIGCNZJX.js} +7 -4
- package/dist/chunks/{apps-GGSIN2ZF.js → apps-4RMNCKXS.js} +3 -3
- package/dist/chunks/{chunk-I6HN3ZGW.js → chunk-4S3XGFGL.js} +1 -1
- package/dist/chunks/{chunk-KRKGHVMQ.js → chunk-57P2GCW5.js} +1 -1
- package/dist/chunks/{chunk-4HYJG2JE.js → chunk-BBEVMP6O.js} +2 -2
- package/dist/chunks/{chunk-XSAXENQD.js → chunk-BNPFMGZD.js} +2 -2
- package/dist/chunks/{chunk-3CC6MH35.js → chunk-BNVHGSI7.js} +3 -3
- package/dist/chunks/{chunk-Q57SVPEH.js → chunk-BX4XSB2J.js} +5619 -6654
- package/dist/chunks/{chunk-Y6G6WRTG.js → chunk-DANRS43D.js} +57 -12
- package/dist/chunks/{chunk-FUP7EGT7.js → chunk-GGKA4HLQ.js} +2 -2
- package/dist/chunks/chunk-IUTUUNAX.js +1126 -0
- package/dist/chunks/{chunk-74O6FGVN.js → chunk-KEDXE4BA.js} +3 -3
- package/dist/chunks/{chunk-3Y4EL3P6.js → chunk-KMSMK7PI.js} +36 -35
- package/dist/chunks/{chunk-5G4E547X.js → chunk-MFS3SYUH.js} +1 -1
- package/dist/chunks/{chunk-NLBKZZEK.js → chunk-OV3KAFWB.js} +1 -1
- package/dist/chunks/{chunk-AUJLPKGI.js → chunk-RJXX6TJA.js} +2 -2
- package/dist/chunks/{cli-NVKNE4AZ.js → cli-2L4NB7HD.js} +5 -2
- package/dist/chunks/{cli-X3HPLSOV.js → cli-5RL7B2Z3.js} +5 -5
- package/dist/chunks/{core-commands-IM2UKLU4.js → core-commands-AZJZGTZS.js} +4 -4
- package/dist/chunks/{extend-YXCBULPO.js → extend-6IWYZI37.js} +8 -8
- package/dist/chunks/{harness-GMK6IY2U.js → harness-SSNXDSKM.js} +3 -3
- package/dist/chunks/{help-LMH5FGT2.js → help-MUJJMI3Q.js} +2 -1
- package/dist/chunks/{opchat-BWXZ32GX.js → opchat-RW4CFAQB.js} +5 -5
- package/dist/chunks/{organizations-4ISQRGMQ.js → organizations-V7DTNLSI.js} +73 -15
- package/dist/chunks/{profile-NLDZDT3L.js → profile-WDBKJ7YW.js} +6 -6
- package/dist/chunks/{project-agent-ZPVO25HA.js → project-agent-3TZ3BPYN.js} +5 -5
- package/dist/chunks/{sandbox-command-5GFJ2U3V.js → sandbox-command-HOYHF4NC.js} +4 -4
- package/dist/chunks/{sandbox-template-LZN4F55Z.js → sandbox-template-IYGB4CZU.js} +5 -5
- package/dist/chunks/{src-3RBI4DNN.js → src-CBPRIWG5.js} +7 -15
- package/dist/chunks/{src-EYXQS6XD.js → src-ZRQKSQTD.js} +14 -12
- package/dist/chunks/{teams-bot-WP3FHKGA.js → teams-bot-UWGCFL6C.js} +3 -3
- package/dist/cli.js +28 -17
- package/docs/command-reference.md +2 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -4,13 +4,27 @@ OpenPond CLI
|
|
|
4
4
|
|
|
5
5
|
The generated [command reference](./docs/command-reference.md) is the authoritative command and option inventory.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Launch the complete local web app without installing it globally:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
npx openpond@latest
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The command starts a local OpenPond server, passes its authenticated URL directly to your system browser, and stays attached until you press `Ctrl+C`. Application state persists under `~/.openpond/openpond-app`; the directory where you invoke the command is not modified. npm maintains its own package cache separately.
|
|
14
|
+
|
|
15
|
+
Node.js 24.18 or newer in the Node 24 release line is required. Other installation and launch forms remain available:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install --global openpond
|
|
19
|
+
openpond
|
|
20
|
+
|
|
21
|
+
# Print the authenticated local URL instead of opening a browser.
|
|
22
|
+
openpond ui --no-open
|
|
23
|
+
|
|
24
|
+
# Launch the terminal UI explicitly.
|
|
25
|
+
openpond tui
|
|
26
|
+
|
|
27
|
+
# GitHub release installer for a compiled CLI.
|
|
14
28
|
curl -fsSL https://openpond.ai/install.sh | bash
|
|
15
29
|
```
|
|
16
30
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createRequire as __openpondCreateRequire } from "node:module"; var require = __openpondCreateRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
runProcessCommand
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-BNPFMGZD.js";
|
|
5
5
|
import {
|
|
6
6
|
CliUsageError
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-MFS3SYUH.js";
|
|
8
|
+
import "./chunk-KMSMK7PI.js";
|
|
9
9
|
import "./chunk-UACZUFIA.js";
|
|
10
10
|
|
|
11
11
|
// src/cli/app-layer.ts
|
|
@@ -30,6 +30,9 @@ var OpenPondChildProcessExitError = class extends Error {
|
|
|
30
30
|
async function runOpenPondServerCommand(mode, options, rest) {
|
|
31
31
|
const server = resolveAppEntrypoint("server");
|
|
32
32
|
const args = [...server.args, mode, ...forwardedOptions(options), ...rest];
|
|
33
|
+
if (mode === "web") {
|
|
34
|
+
args.push(options.noOpen === true || options.noOpen === "true" ? "--print-access-url" : "--open-browser");
|
|
35
|
+
}
|
|
33
36
|
const webRoot = mode === "web" && typeof options.webRoot !== "string" ? packagedWebRoot() : null;
|
|
34
37
|
if (webRoot) args.push("--web-root", webRoot);
|
|
35
38
|
await runChild(server.runner, args, server.cwd);
|
|
@@ -107,7 +110,7 @@ function isCompiledExecutable() {
|
|
|
107
110
|
return Boolean(argvEntry && path.resolve(argvEntry) === path.resolve(process.execPath));
|
|
108
111
|
}
|
|
109
112
|
function forwardedOptions(options) {
|
|
110
|
-
const ignored = /* @__PURE__ */ new Set(["account", "handle", "baseUrl", "tui"]);
|
|
113
|
+
const ignored = /* @__PURE__ */ new Set(["account", "handle", "baseUrl", "noOpen", "tui"]);
|
|
111
114
|
const args = [];
|
|
112
115
|
for (const [key, value] of Object.entries(options)) {
|
|
113
116
|
if (ignored.has(key)) continue;
|
|
@@ -23,17 +23,17 @@ import {
|
|
|
23
23
|
submitPositionsTx,
|
|
24
24
|
updateAppCodeVisibility,
|
|
25
25
|
updateAppEnvironment
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-BNPFMGZD.js";
|
|
27
27
|
import {
|
|
28
28
|
resolveBaseUrl,
|
|
29
29
|
resolvePublicApiBaseUrl
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-MFS3SYUH.js";
|
|
31
31
|
import {
|
|
32
32
|
parseBooleanOption,
|
|
33
33
|
parseJsonOption,
|
|
34
34
|
parseTimeOption,
|
|
35
35
|
resolveTemplateEnvironment
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-KMSMK7PI.js";
|
|
37
37
|
import "./chunk-UACZUFIA.js";
|
|
38
38
|
|
|
39
39
|
// src/cli/apps.ts
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createRequire as __openpondCreateRequire } from "node:module"; var require = __openpondCreateRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
writePrivateJsonFile
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-BNPFMGZD.js";
|
|
5
5
|
|
|
6
6
|
// ../../packages/cloud/src/profile/source-upload-cache.ts
|
|
7
7
|
import { createHash } from "node:crypto";
|
|
@@ -2,7 +2,7 @@ import { createRequire as __openpondCreateRequire } from "node:module"; var requ
|
|
|
2
2
|
import {
|
|
3
3
|
resolveOpChatApiBaseUrl,
|
|
4
4
|
sendHostedChatTurn
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-OV3KAFWB.js";
|
|
6
6
|
import {
|
|
7
7
|
CreatePipelinePlanSchema,
|
|
8
8
|
CreatePipelineSnapshotSchema,
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
loadGlobalConfig,
|
|
19
19
|
readApiJson,
|
|
20
20
|
runShellCommand
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-BNPFMGZD.js";
|
|
22
22
|
|
|
23
23
|
// src/goal/cli.ts
|
|
24
24
|
import { randomUUID as randomUUID9 } from "node:crypto";
|
|
@@ -5,10 +5,10 @@ import {
|
|
|
5
5
|
mapUiBaseToApiBase,
|
|
6
6
|
resolveBaseUrl,
|
|
7
7
|
resolveSandboxApiUrlOption
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-MFS3SYUH.js";
|
|
9
9
|
import {
|
|
10
10
|
parseBooleanOption
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-KMSMK7PI.js";
|
|
12
12
|
|
|
13
13
|
// ../../packages/cloud/src/api/core.ts
|
|
14
14
|
var DEFAULT_API_TIMEOUT_MS = 3e4;
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
materializeSourceUploadFile,
|
|
4
4
|
readSourceUploadCache,
|
|
5
5
|
writeSourceUploadCache
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-4S3XGFGL.js";
|
|
7
7
|
import {
|
|
8
8
|
CreatePipelineRequestSchema
|
|
9
9
|
} from "./chunk-VQX33YAG.js";
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
parseSandboxRuntimePromotionPolicyOption,
|
|
19
19
|
parseSandboxWorkflowModeOption,
|
|
20
20
|
runCommand
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-BNPFMGZD.js";
|
|
22
22
|
import {
|
|
23
23
|
optionString,
|
|
24
24
|
optionalJsonObject,
|
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
parseCsvOption,
|
|
27
27
|
parseIntegerOption,
|
|
28
28
|
requiredTeamId
|
|
29
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-KMSMK7PI.js";
|
|
30
30
|
|
|
31
31
|
// src/cli/agent-sdk-command.ts
|
|
32
32
|
import { existsSync, readFileSync } from "node:fs";
|