replicas-cli 0.2.385 → 0.2.387
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/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7604,6 +7604,7 @@ function createErrorResult(error51) {
|
|
|
7604
7604
|
|
|
7605
7605
|
// ../shared/src/agent.ts
|
|
7606
7606
|
var VALID_AGENT_PROVIDERS = ["claude", "codex", "cursor", "opencode", "pi", "relay"];
|
|
7607
|
+
var VALID_RELAY_SUBAGENT_PROVIDERS = VALID_AGENT_PROVIDERS;
|
|
7607
7608
|
var VALID_CODING_AGENT_PROVIDERS = VALID_AGENT_PROVIDERS.filter(
|
|
7608
7609
|
(provider) => provider !== "relay"
|
|
7609
7610
|
);
|
|
@@ -22504,6 +22505,7 @@ var SANDBOX_PATHS = {
|
|
|
22504
22505
|
HOME_DIR: "/home/user",
|
|
22505
22506
|
WORKSPACES_DIR: "/home/user/workspaces",
|
|
22506
22507
|
REPLICAS_DIR: "/home/user/.replicas",
|
|
22508
|
+
ENGINE_INIT_GATE: "/home/user/.replicas/engine-init-gate",
|
|
22507
22509
|
REPLICAS_CANVAS_DIR: "/home/user/.replicas/canvas",
|
|
22508
22510
|
REPLICAS_RUNTIME_ENV_FILE: "/home/user/.replicas/runtime-env.sh"
|
|
22509
22511
|
};
|
|
@@ -24321,6 +24323,7 @@ var EMPTY_AGENT_DEFAULT_SETTINGS = {
|
|
|
24321
24323
|
goal_mode: null,
|
|
24322
24324
|
fast_mode: null
|
|
24323
24325
|
};
|
|
24326
|
+
var DEFAULT_RELAY_SUBAGENT_PROVIDERS = [...VALID_RELAY_SUBAGENT_PROVIDERS];
|
|
24324
24327
|
var DEFAULT_USER_PREFERENCES = {
|
|
24325
24328
|
default_agent: "codex",
|
|
24326
24329
|
default_model: null,
|
|
@@ -24375,7 +24378,7 @@ var HOOK_EXEC_MAX_BUFFER_BYTES = 10 * 1024 * 1024;
|
|
|
24375
24378
|
var REPLICAS_CONFIG_FILENAMES = ["replicas.json", "replicas.yaml", "replicas.yml"];
|
|
24376
24379
|
|
|
24377
24380
|
// ../shared/src/cli-version.ts
|
|
24378
|
-
var CLI_VERSION = "0.2.
|
|
24381
|
+
var CLI_VERSION = "0.2.387";
|
|
24379
24382
|
|
|
24380
24383
|
// ../shared/src/version.ts
|
|
24381
24384
|
function compareVersions(v1, v2) {
|