@kolisachint/hoocode-agent 0.4.17 → 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.
- package/CHANGELOG.md +12 -0
- package/dist/core/subagent-pool.d.ts +5 -0
- package/dist/core/subagent-pool.d.ts.map +1 -1
- package/dist/core/subagent-pool.js +29 -13
- package/dist/core/subagent-pool.js.map +1 -1
- package/dist/core/wordmark-symbol.generated.d.ts +9 -0
- package/dist/core/wordmark-symbol.generated.d.ts.map +1 -0
- package/dist/core/wordmark-symbol.generated.js +20 -0
- package/dist/core/wordmark-symbol.generated.js.map +1 -0
- package/dist/core/wordmark.d.ts +1 -0
- package/dist/core/wordmark.d.ts.map +1 -1
- package/dist/core/wordmark.js +11 -0
- package/dist/core/wordmark.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +7 -2
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
|
@@ -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
|
-
?
|
|
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);
|