replicas-cli 0.2.385 → 0.2.386

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.
Files changed (2) hide show
  1. package/dist/index.mjs +3 -1
  2. 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
  );
@@ -24321,6 +24322,7 @@ var EMPTY_AGENT_DEFAULT_SETTINGS = {
24321
24322
  goal_mode: null,
24322
24323
  fast_mode: null
24323
24324
  };
24325
+ var DEFAULT_RELAY_SUBAGENT_PROVIDERS = [...VALID_RELAY_SUBAGENT_PROVIDERS];
24324
24326
  var DEFAULT_USER_PREFERENCES = {
24325
24327
  default_agent: "codex",
24326
24328
  default_model: null,
@@ -24375,7 +24377,7 @@ var HOOK_EXEC_MAX_BUFFER_BYTES = 10 * 1024 * 1024;
24375
24377
  var REPLICAS_CONFIG_FILENAMES = ["replicas.json", "replicas.yaml", "replicas.yml"];
24376
24378
 
24377
24379
  // ../shared/src/cli-version.ts
24378
- var CLI_VERSION = "0.2.385";
24380
+ var CLI_VERSION = "0.2.386";
24379
24381
 
24380
24382
  // ../shared/src/version.ts
24381
24383
  function compareVersions(v1, v2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.385",
3
+ "version": "0.2.386",
4
4
  "description": "CLI for managing Replicas workspaces - SSH into cloud dev environments with automatic port forwarding",
5
5
  "main": "dist/index.mjs",
6
6
  "bin": {