agents-dojo 0.1.4 → 0.1.5

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.
@@ -204,8 +204,7 @@ function extractPreview(parts) {
204
204
  return '';
205
205
  for (const p of parts) {
206
206
  if (p && typeof p === 'object' && p.kind === 'text' && typeof p.text === 'string') {
207
- const t = p.text;
208
- return t.length > 80 ? t.slice(0, 80) + '…' : t;
207
+ return p.text;
209
208
  }
210
209
  }
211
210
  return '';
@@ -30,7 +30,7 @@ export function createTranslator(ctx) {
30
30
  type: 'task_status',
31
31
  taskId: ctx.taskId,
32
32
  state: 'working',
33
- message: text.length > 80 ? text.slice(0, 77) + '...' : text,
33
+ message: text,
34
34
  });
35
35
  }
36
36
  function publishCompleted() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agents-dojo",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "A2A-compatible Agent framework built on Claude Code SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",