@kolisachint/hoocode-agent 0.4.18 → 0.4.19

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.
@@ -24,7 +24,7 @@ import { SessionManager } from "../../core/session-manager.js";
24
24
  import { BUILTIN_SLASH_COMMANDS } from "../../core/slash-commands.js";
25
25
  import { getSubagentPool } from "../../core/subagent-pool-instance.js";
26
26
  import { taskStore } from "../../core/task-store.js";
27
- import { WORDMARK } from "../../core/wordmark.js";
27
+ import { WORDMARK, WORDMARK_SYMBOL } from "../../core/wordmark.js";
28
28
  import { getChangelogPath, getNewEntries, parseChangelog } from "../../utils/changelog.js";
29
29
  import { copyToClipboard } from "../../utils/clipboard.js";
30
30
  import { extensionForImageMimeType, readClipboardImage } from "../../utils/clipboard-image.js";
@@ -403,8 +403,13 @@ export class InteractiveMode {
403
403
  // Add header with keybindings from config (unless silenced)
404
404
  if (this.options.verbose || !this.settingsManager.getQuietStartup()) {
405
405
  const termW = this.ui.terminal.columns;
406
+ const wordmark = `${theme.fg("accent", WORDMARK)}\n${theme.fg("dim", `v${this.version}`)}`;
407
+ // The owl symbol carries baked-in brand colors, so only show it on
408
+ // truecolor terminals; otherwise the wordmark/app name stands alone.
406
409
  const logo = termW >= 70
407
- ? `${theme.fg("accent", WORDMARK)}\n${theme.fg("dim", `v${this.version}`)}`
410
+ ? getCapabilities().trueColor
411
+ ? `${WORDMARK_SYMBOL}\n${wordmark}`
412
+ : wordmark
408
413
  : theme.bold(theme.fg("accent", APP_NAME)) + theme.fg("dim", ` v${this.version}`);
409
414
  // Build startup instructions using keybinding hint helpers
410
415
  const hint = (keybinding, description) => keyHint(keybinding, description);