codeep 1.2.71 → 1.2.72

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.
@@ -263,6 +263,11 @@ export async function executeAgentTask(task, dryRun, ctx) {
263
263
  },
264
264
  abortSignal: abortController.signal,
265
265
  });
266
+ // Hide agent progress panel before adding completion message so the full
267
+ // message area is used when rendering (avoids truncated finalResponse)
268
+ ctx.setAgentRunning(false);
269
+ ctx.setAbortController(null);
270
+ app.setAgentRunning(false);
266
271
  if (result.success) {
267
272
  const fileChanges = result.actions.filter(a => a.type === 'write' || a.type === 'edit' || a.type === 'delete');
268
273
  const otherActions = result.actions.filter(a => a.type !== 'write' && a.type !== 'edit' && a.type !== 'delete');
@@ -336,9 +341,11 @@ export async function executeAgentTask(task, dryRun, ctx) {
336
341
  app.notify(`Agent error: ${err.message}`, 5000);
337
342
  }
338
343
  finally {
344
+ // Ensure cleanup even if an exception occurs (may already be false from success path)
339
345
  ctx.setAgentRunning(false);
340
346
  ctx.setAbortController(null);
341
347
  app.setAgentRunning(false);
348
+ app.render();
342
349
  }
343
350
  }
344
351
  // ─── Skill execution ──────────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.2.71",
3
+ "version": "1.2.72",
4
4
  "description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",