blits-bridge 0.1.9 → 0.1.10

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/bridge.js +1 -0
  2. package/package.json +1 -1
package/dist/bridge.js CHANGED
@@ -138,6 +138,7 @@ class BlitsBridge {
138
138
  continue;
139
139
  try {
140
140
  const event = JSON.parse(line);
141
+ console.log(` [CLI] type=${event.type} ${event.type === 'assistant' ? `content_len=${JSON.stringify(event.message?.content || []).length} stop=${event.message?.stop_reason}` : ''}`);
141
142
  this.processStreamEvent(requestId, event, fullText);
142
143
  // Accumulate text from assistant messages
143
144
  if (event.type === 'assistant') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blits-bridge",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Bridge between Blits platform and local Claude CLI. Runs Claude API calls through your subscription.",
5
5
  "bin": {
6
6
  "blits-bridge": "./dist/cli.js"