@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.
- package/CHANGELOG.md +2 -0
- package/dist/core/export-html/template.css +1 -1
- package/dist/core/subagent-pool.d.ts +78 -0
- package/dist/core/subagent-pool.d.ts.map +1 -0
- package/dist/core/subagent-pool.js +222 -0
- package/dist/core/subagent-pool.js.map +1 -0
- package/dist/core/wordmark.d.ts +9 -0
- package/dist/core/wordmark.d.ts.map +1 -0
- package/dist/core/wordmark.js +17 -0
- package/dist/core/wordmark.js.map +1 -0
- package/dist/init-templates.generated.d.ts.map +1 -1
- package/dist/init-templates.generated.js +5 -5
- package/dist/init-templates.generated.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +5 -1
- 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
- package/templates/subagent/edit.md +5 -0
- package/templates/subagent/explore.md +5 -0
- package/templates/subagent/fix.md +5 -0
- package/templates/subagent/review.md +5 -0
- package/templates/subagent/test.md +5 -0
|
@@ -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
|
|
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 = [
|