@episoda/cli 0.2.207 → 0.2.208

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.
@@ -3051,7 +3051,7 @@ var require_package = __commonJS({
3051
3051
  "package.json"(exports2, module2) {
3052
3052
  module2.exports = {
3053
3053
  name: "@episoda/cli",
3054
- version: "0.2.207",
3054
+ version: "0.2.208",
3055
3055
  description: "CLI tool for Episoda local development workflow orchestration",
3056
3056
  main: "dist/index.js",
3057
3057
  types: "dist/index.d.ts",
@@ -15078,6 +15078,13 @@ var ProjectMessageRouter = class {
15078
15078
  console.log(`[Daemon] EP1476: Received pty_stdin for run ${payload.agent_run_id}${payload.module_uid ? ` (module ${payload.module_uid})` : ""}`);
15079
15079
  client.updateActivity();
15080
15080
  const result = handlePtyStdin(payload);
15081
+ await client.send({
15082
+ type: "pty_stdin_ack",
15083
+ requestId: message.id,
15084
+ agent_run_id: payload.agent_run_id,
15085
+ success: result.success,
15086
+ error: result.error
15087
+ });
15081
15088
  if (!result.success) {
15082
15089
  console.warn(`[Daemon] EP1476: pty_stdin failed for run ${payload.agent_run_id}: ${result.error}`);
15083
15090
  }