@kolisachint/hoocode-agent 0.4.6 → 0.4.7

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.
@@ -22,6 +22,7 @@ import { formatMissingSessionCwdPrompt, MissingSessionCwdError } from "../../cor
22
22
  import { SessionManager } from "../../core/session-manager.js";
23
23
  import { BUILTIN_SLASH_COMMANDS } from "../../core/slash-commands.js";
24
24
  import { taskStore } from "../../core/task-store.js";
25
+ import { WORDMARK } from "../../core/wordmark.js";
25
26
  import { getChangelogPath, getNewEntries, parseChangelog } from "../../utils/changelog.js";
26
27
  import { copyToClipboard } from "../../utils/clipboard.js";
27
28
  import { extensionForImageMimeType, readClipboardImage } from "../../utils/clipboard-image.js";
@@ -397,7 +398,10 @@ export class InteractiveMode {
397
398
  this.ui.addChild(this.headerContainer);
398
399
  // Add header with keybindings from config (unless silenced)
399
400
  if (this.options.verbose || !this.settingsManager.getQuietStartup()) {
400
- const logo = theme.bold(theme.fg("accent", APP_NAME)) + theme.fg("dim", ` v${this.version}`);
401
+ const termW = this.ui.terminal.columns;
402
+ const logo = termW >= 70
403
+ ? `${theme.fg("accent", WORDMARK)}\n${theme.fg("dim", `v${this.version}`)}`
404
+ : theme.bold(theme.fg("accent", APP_NAME)) + theme.fg("dim", ` v${this.version}`);
401
405
  // Build startup instructions using keybinding hint helpers
402
406
  const hint = (keybinding, description) => keyHint(keybinding, description);
403
407
  const expandedInstructions = [