praxis-agent 0.45.0 → 0.45.1

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.
@@ -512,7 +512,7 @@ function estimateRenderedTranscriptEntryLines(entry, width, mode) {
512
512
  : 0));
513
513
  const heading = mode === 'screen-reader'
514
514
  ? 'Thinking:Thought for a moment'
515
- : `✻ Thought for a moment${summary ? ` · ${summary.slice(0, 160)}` : ''}`;
515
+ : '✻ Thought for a moment';
516
516
  return (1 +
517
517
  wrappedLineCount(heading, width) +
518
518
  wrappedLineCount(item.text, mode === 'screen-reader' ? width : markdownContentWidth(width)));
@@ -679,7 +679,7 @@ function entryViewportRows(entry, width, mode) {
679
679
  const summary = item.text.replace(/\s+/gu, ' ').trim();
680
680
  const heading = mode === 'screen-reader'
681
681
  ? 'Thinking:Thought for a moment'
682
- : `✻ Thought for a moment${summary ? ` · ${summary.slice(0, 160)}` : ''}`;
682
+ : `✻ Thought for a moment${mode === 'normal' && summary ? ` · ${summary.slice(0, 160)}` : ''}`;
683
683
  if (mode === 'normal')
684
684
  return [
685
685
  '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "praxis-agent",
3
- "version": "0.45.0",
3
+ "version": "0.45.1",
4
4
  "description": "Local-first, single-user general agent for the command line.",
5
5
  "license": "MIT",
6
6
  "author": "wuqisen",