diff --git a/src/status-formatter.js b/src/status-formatter.js index fc0d038..21c0706 100644 --- a/src/status-formatter.js +++ b/src/status-formatter.js @@ -66,7 +66,12 @@ function format(sessionState, opts = {}) { lines.push(`${indent} [${sessionState.status.toUpperCase()}] ${elapsed}${tokenStr}`); } - return lines.join('\n'); + // Wrap in code block at top level so it looks distinct from normal messages + var body = lines.join('\n'); + if (depth === 0) { + body = '```\n' + body + '\n```'; + } + return body; } /**