@blockrun/franklin 3.15.46 → 3.15.47

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.
@@ -87,8 +87,17 @@ export function buildTaskCommand() {
87
87
  const meta = readTaskMeta(runId);
88
88
  if (meta) {
89
89
  console.log(`\n--- ${meta.status} ---`);
90
- if (meta.terminalSummary)
91
- console.log(meta.terminalSummary);
90
+ // Don't reprint terminalSummary: it's a whitespace-collapsed
91
+ // copy of the last ~800 bytes of the log, and we just printed
92
+ // the FULL log via printNew(). Verified 2026-05-04 on a real
93
+ // failed task: the user saw the same lines twice, the second
94
+ // copy as one squashed line, e.g.
95
+ // [17:43:40] resume state: ... [17:43:40] manifest cached: ...
96
+ // which is harder to read than the multi-line original.
97
+ // exitCode is the only useful extra here (the log doesn't
98
+ // record it explicitly).
99
+ if (meta.exitCode !== undefined)
100
+ console.log(`exitCode: ${meta.exitCode}`);
92
101
  }
93
102
  });
94
103
  cmd
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/franklin",
3
- "version": "3.15.46",
3
+ "version": "3.15.47",
4
4
  "description": "Franklin — The AI agent with a wallet. Spends USDC autonomously to get real work done. Pay per action, no subscriptions.",
5
5
  "type": "module",
6
6
  "exports": {