@rely-ai/caliber 1.22.0-dev.1773769041 → 1.22.0-dev.1773772996

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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="assets/social-preview.png" alt="Caliber — AI setup tailored for your codebase" width="640">
2
+ <img src="assets/social-preview.png" alt="Caliber — AI setup tailored for your codebase" width="900">
3
3
  </p>
4
4
 
5
5
  <p align="center">
package/dist/bin.js CHANGED
@@ -1282,6 +1282,8 @@ var CursorAcpProvider = class {
1282
1282
  try {
1283
1283
  const event = JSON.parse(line);
1284
1284
  if (event.type === "assistant") {
1285
+ const isDelta = "timestamp_ms" in event;
1286
+ if (!isDelta) continue;
1285
1287
  const text = event.message?.content?.[0]?.text || event.content;
1286
1288
  if (text) callbacks.onText(text);
1287
1289
  } else if (event.type === "result") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rely-ai/caliber",
3
- "version": "1.22.0-dev.1773769041",
3
+ "version": "1.22.0-dev.1773772996",
4
4
  "description": "Analyze your codebase and generate optimized AI agent configs (CLAUDE.md, .cursorrules, skills) — no API key needed",
5
5
  "type": "module",
6
6
  "bin": {