replicas-cli 0.2.551 → 0.2.554

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 +6 -4
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -22797,6 +22797,7 @@ var WEB_APP_PATHS = {
22797
22797
  "audit-logs": `${DASHBOARD_PATH}/audit-logs`,
22798
22798
  accountAgents: `${DASHBOARD_PATH}/account/agents`,
22799
22799
  accountProfile: `${DASHBOARD_PATH}/account/profile`,
22800
+ accountConnections: `${DASHBOARD_PATH}/account/connections`,
22800
22801
  accountIntegrations: `${DASHBOARD_PATH}/account/integrations`,
22801
22802
  accountApiKeys: `${DASHBOARD_PATH}/account/api-keys`,
22802
22803
  accountPreferences: `${DASHBOARD_PATH}/account/preferences`,
@@ -23793,7 +23794,7 @@ Use this when:
23793
23794
  - The user asks for Stripe customers, payments, invoices, subscriptions, or balances`;
23794
23795
  var REFERENCE8 = `# Plugins
23795
23796
 
23796
- 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.
23797
23798
 
23798
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.
23799
23800
 
@@ -23806,7 +23807,7 @@ const plugins = await replicas.plugins.list();
23806
23807
  const installed = plugins.filter((plugin) => plugin.connected);
23807
23808
  \`\`\`
23808
23809
 
23809
- 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.
23810
23811
 
23811
23812
  ## Search, inspect, execute
23812
23813
 
@@ -24375,7 +24376,8 @@ var headlessAgentRequestBaseSchema = external_exports.object({
24375
24376
  model: external_exports.string().min(1),
24376
24377
  prompt: external_exports.string(),
24377
24378
  workingDirectory: external_exports.string().min(1),
24378
- timeoutSeconds: external_exports.number().int().min(1).max(1800).default(300)
24379
+ timeoutSeconds: external_exports.number().int().min(1).max(1800).default(300),
24380
+ codexOauthTokens: external_exports.object({ accessToken: external_exports.string(), accountId: external_exports.string() }).optional()
24379
24381
  });
24380
24382
  var headlessAgentInputFileSchema = external_exports.object({
24381
24383
  path: external_exports.string().min(1),
@@ -24409,7 +24411,7 @@ var headlessFilesystemAgentResultSchema = external_exports.object({
24409
24411
  });
24410
24412
 
24411
24413
  // ../shared/src/cli-version.ts
24412
- var CLI_VERSION = "0.2.551";
24414
+ var CLI_VERSION = "0.2.554";
24413
24415
 
24414
24416
  // ../shared/src/version.ts
24415
24417
  function compareVersions(v1, v2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.551",
3
+ "version": "0.2.554",
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": {