replicas-cli 0.2.550 → 0.2.553

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.cjs +7 -3
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -22424,12 +22424,14 @@ var GPT_5_6_TERRA_MODEL = "gpt-5.6-terra";
22424
22424
  var GPT_5_6_LUNA_MODEL = "gpt-5.6-luna";
22425
22425
  var DEFAULT_CODEX_MODEL = GPT_5_6_SOL_MODEL;
22426
22426
  var DEFAULT_OPENCODE_MODEL = "z-ai/glm-5.2";
22427
+ var OX_ALPHA_MODEL = "stealth/ox-alpha";
22427
22428
  var DEEPSEEK_V4_PRO_MODEL = "deepseek/deepseek-v4-pro-0813";
22428
22429
  var DEEPSEEK_V4_FLASH_MODEL = "deepseek/deepseek-v4-flash-0731";
22429
22430
  var DEFAULT_FX_MODEL = "zai/glm-5.2";
22430
22431
  var DEFAULT_KIMI_MODEL = "moonshotai/kimi-k2.6";
22431
22432
  var OPENROUTER_MODELS = [
22432
22433
  DEFAULT_OPENCODE_MODEL,
22434
+ OX_ALPHA_MODEL,
22433
22435
  DEEPSEEK_V4_PRO_MODEL,
22434
22436
  DEEPSEEK_V4_FLASH_MODEL,
22435
22437
  "minimax/minimax-m3",
@@ -22534,6 +22536,7 @@ var MODEL_LABELS = {
22534
22536
  [GPT_5_6_LUNA_MODEL]: "GPT-5.6 Luna",
22535
22537
  "gpt-5.5": "GPT-5.5",
22536
22538
  [DEFAULT_OPENCODE_MODEL]: "GLM 5.2 via OpenRouter",
22539
+ [OX_ALPHA_MODEL]: "Ox Alpha via OpenRouter",
22537
22540
  [DEEPSEEK_V4_PRO_MODEL]: "DeepSeek V4 Pro via OpenRouter",
22538
22541
  [DEEPSEEK_V4_FLASH_MODEL]: "DeepSeek V4 Flash via OpenRouter",
22539
22542
  "minimax/minimax-m3": "MiniMax M3 via OpenRouter",
@@ -22794,6 +22797,7 @@ var WEB_APP_PATHS = {
22794
22797
  "audit-logs": `${DASHBOARD_PATH}/audit-logs`,
22795
22798
  accountAgents: `${DASHBOARD_PATH}/account/agents`,
22796
22799
  accountProfile: `${DASHBOARD_PATH}/account/profile`,
22800
+ accountConnections: `${DASHBOARD_PATH}/account/connections`,
22797
22801
  accountIntegrations: `${DASHBOARD_PATH}/account/integrations`,
22798
22802
  accountApiKeys: `${DASHBOARD_PATH}/account/api-keys`,
22799
22803
  accountPreferences: `${DASHBOARD_PATH}/account/preferences`,
@@ -23790,7 +23794,7 @@ Use this when:
23790
23794
  - The user asks for Stripe customers, payments, invoices, subscriptions, or balances`;
23791
23795
  var REFERENCE8 = `# Plugins
23792
23796
 
23793
- Plugins are TypeScript libraries, not MCP servers. Import \`@replicas/sdk\`; Replicas authenticates the workspace and selects only the owner\u2019s personal connection or the organization fallback. Provider credentials, sessions, and project keys are never exposed.
23797
+ Plugins are TypeScript libraries, not MCP servers. Import \`@replicas/sdk\`; Replicas authenticates the workspace and selects the owner\u2019s personal connection first, then the most specific environment the workspace inherits from, then Global. Provider credentials, sessions, and project keys are never exposed.
23794
23798
 
23795
23799
  Plugin tools may read or write provider data according to the connected account's permissions. Only execute write or destructive tools when they match the user's request.
23796
23800
 
@@ -23803,7 +23807,7 @@ const plugins = await replicas.plugins.list();
23803
23807
  const installed = plugins.filter((plugin) => plugin.connected);
23804
23808
  \`\`\`
23805
23809
 
23806
- If a plugin is not connected, ask the user to install it under personal or organization Integrations in the Replicas dashboard.
23810
+ If a plugin is not connected, ask the user to connect it under personal Connections or the relevant environment's Plugins tab. A connection on Global reaches every workspace unless a more specific environment overrides it.
23807
23811
 
23808
23812
  ## Search, inspect, execute
23809
23813
 
@@ -24406,7 +24410,7 @@ var headlessFilesystemAgentResultSchema = external_exports.object({
24406
24410
  });
24407
24411
 
24408
24412
  // ../shared/src/cli-version.ts
24409
- var CLI_VERSION = "0.2.550";
24413
+ var CLI_VERSION = "0.2.553";
24410
24414
 
24411
24415
  // ../shared/src/version.ts
24412
24416
  function compareVersions(v1, v2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.550",
3
+ "version": "0.2.553",
4
4
  "description": "CLI for managing Replicas workspaces - SSH into cloud dev environments with automatic port forwarding",
5
5
  "main": "dist/index.cjs",
6
6
  "bin": {