opencara 0.104.0 → 0.104.1

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.
package/dist/bin.js CHANGED
@@ -1280,7 +1280,7 @@ var AgentCallParser = class {
1280
1280
  };
1281
1281
 
1282
1282
  // src/commands/run.ts
1283
- var PKG_VERSION = "0.104.0";
1283
+ var PKG_VERSION = "0.104.1";
1284
1284
  var LOG_FLUSH_MS = 800;
1285
1285
  var MAX_CHUNK_SIZE = 4 * 1024;
1286
1286
  async function run(opts = {}) {
@@ -132,20 +132,6 @@ function handleClaudeEvent(sessionId, raw, done) {
132
132
  const msg = raw;
133
133
  const type = typeof msg["type"] === "string" ? msg["type"] : "";
134
134
  if (type === "assistant") {
135
- const message = msg["message"];
136
- const blocks = message?.content ?? [];
137
- for (const block of blocks) {
138
- if (block?.type !== "text") continue;
139
- const text = typeof block.text === "string" ? block.text : "";
140
- if (text.length === 0) continue;
141
- notify("session/update", {
142
- sessionId,
143
- update: {
144
- sessionUpdate: "agent_message_chunk",
145
- content: { type: "text", text }
146
- }
147
- });
148
- }
149
135
  return;
150
136
  }
151
137
  if (type === "stream_event") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencara",
3
- "version": "0.104.0",
3
+ "version": "0.104.1",
4
4
  "description": "OpenCara agent-host CLI: register a machine as an agent host and run dispatched agents.",
5
5
  "license": "MIT",
6
6
  "repository": {