replicas-cli 0.2.74 → 0.2.76

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.
@@ -7951,6 +7951,18 @@ function parseClaudeEvents(events, parentToolUseId) {
7951
7951
  model: inputObj.model,
7952
7952
  status: "in_progress",
7953
7953
  nestedEvents: [],
7954
+ isChatBased: true,
7955
+ timestamp: event.timestamp
7956
+ });
7957
+ } else if (toolName === "mcp__relay-subagent-tools__delete_agent") {
7958
+ const inputObj = typeof toolInput === "string" ? safeJsonParse2(toolInput, {}) : toolInput;
7959
+ messages.push({
7960
+ id: `toolcall-${event.timestamp}-${messages.length}`,
7961
+ type: "tool_call",
7962
+ server: "relay-subagent-tools",
7963
+ tool: "delete_agent",
7964
+ input: inputObj,
7965
+ status: "in_progress",
7954
7966
  timestamp: event.timestamp
7955
7967
  });
7956
7968
  } else {
package/dist/index.mjs CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  setIdeCommand,
16
16
  setOrganizationId,
17
17
  writeConfig
18
- } from "./chunk-H2KYINFB.mjs";
18
+ } from "./chunk-NCOTTUME.mjs";
19
19
 
20
20
  // src/index.ts
21
21
  import "dotenv/config";
@@ -2509,12 +2509,12 @@ async function interactiveCommand() {
2509
2509
  );
2510
2510
  }
2511
2511
  console.log(chalk18.gray("Starting interactive mode..."));
2512
- const { launchInteractive } = await import("./interactive-GC2T2TVX.mjs");
2512
+ const { launchInteractive } = await import("./interactive-DOZWLHVP.mjs");
2513
2513
  await launchInteractive();
2514
2514
  }
2515
2515
 
2516
2516
  // src/index.ts
2517
- var CLI_VERSION = "0.2.74";
2517
+ var CLI_VERSION = "0.2.76";
2518
2518
  var program = new Command();
2519
2519
  program.name("replicas").description("CLI for managing Replicas workspaces").version(CLI_VERSION);
2520
2520
  program.command("login").description("Authenticate with your Replicas account").action(async () => {
@@ -11,7 +11,7 @@ import {
11
11
  isAgentBackendEvent,
12
12
  parseAgentEvents,
13
13
  parseUserMessage
14
- } from "./chunk-H2KYINFB.mjs";
14
+ } from "./chunk-NCOTTUME.mjs";
15
15
 
16
16
  // src/interactive/index.tsx
17
17
  import { createCliRenderer } from "@opentui/core";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.74",
3
+ "version": "0.2.76",
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": {