@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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wordmark.d.ts","sourceRoot":"","sources":["../../src/core/wordmark.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"wordmark.d.ts","sourceRoot":"","sources":["../../src/core/wordmark.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,eAAO,MAAM,QAAQ,QAQT,CAAC;AAEb,8CAA8C;AAC9C,eAAO,MAAM,gBAAgB,mDAA8C,CAAC;AAS5E,eAAO,MAAM,eAAe,QAEhB,CAAC","sourcesContent":["/**\n * ASCII wordmark for the startup banner.\n * Rendered in the terminal with accent color on the \"hoo\" portion.\n * Source: design-system/assets/wordmark.txt\n */\n\nimport { WORDMARK_SYMBOL_BLOCKS } from \"./wordmark-symbol.generated.js\";\n\nexport const WORDMARK = [\n\t\" __ __ ______ __\",\n\t\" / / / /___ ____ / ____/___ ____/ /__\",\n\t\" / /_/ / __ \\\\/ __ \\\\/ / / __ \\\\/ __ / _ \\\\\",\n\t\" / __ / /_/ / /_/ / /___/ /_/ / /_/ / __/\",\n\t\" /_/ /_/\\\\____/\\\\____/\\\\____/\\\\____/\\\\__,_/\\\\___/\",\n\t\"\",\n\t\" deterministic terminal coding agent > hoo\",\n].join(\"\\n\");\n\n/** Compact one-line logo for tight spaces. */\nexport const WORDMARK_COMPACT = \"hoo — deterministic terminal coding agent\";\n\n/**\n * Colored half-block owl symbol, indented to sit centered above the ASCII\n * wordmark. Carries baked-in brand colors (Signal Cyan + white), so it only\n * renders on truecolor terminals; callers fall back to {@link WORDMARK}\n * otherwise.\n */\nconst SYMBOL_INDENT = \" \".repeat(15);\nexport const WORDMARK_SYMBOL = WORDMARK_SYMBOL_BLOCKS.split(\"\\n\")\n\t.map((line) => SYMBOL_INDENT + line)\n\t.join(\"\\n\");\n"]}
|
package/dist/core/wordmark.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Rendered in the terminal with accent color on the "hoo" portion.
|
|
4
4
|
* Source: design-system/assets/wordmark.txt
|
|
5
5
|
*/
|
|
6
|
+
import { WORDMARK_SYMBOL_BLOCKS } from "./wordmark-symbol.generated.js";
|
|
6
7
|
export const WORDMARK = [
|
|
7
8
|
" __ __ ______ __",
|
|
8
9
|
" / / / /___ ____ / ____/___ ____/ /__",
|
|
@@ -14,4 +15,14 @@ export const WORDMARK = [
|
|
|
14
15
|
].join("\n");
|
|
15
16
|
/** Compact one-line logo for tight spaces. */
|
|
16
17
|
export const WORDMARK_COMPACT = "hoo — deterministic terminal coding agent";
|
|
18
|
+
/**
|
|
19
|
+
* Colored half-block owl symbol, indented to sit centered above the ASCII
|
|
20
|
+
* wordmark. Carries baked-in brand colors (Signal Cyan + white), so it only
|
|
21
|
+
* renders on truecolor terminals; callers fall back to {@link WORDMARK}
|
|
22
|
+
* otherwise.
|
|
23
|
+
*/
|
|
24
|
+
const SYMBOL_INDENT = " ".repeat(15);
|
|
25
|
+
export const WORDMARK_SYMBOL = WORDMARK_SYMBOL_BLOCKS.split("\n")
|
|
26
|
+
.map((line) => SYMBOL_INDENT + line)
|
|
27
|
+
.join("\n");
|
|
17
28
|
//# sourceMappingURL=wordmark.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wordmark.js","sourceRoot":"","sources":["../../src/core/wordmark.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAG;IACvB,yDAAyD;IACzD,2DAA2D;IAC3D,gEAAgE;IAChE,4DAA4D;IAC5D,iEAAiE;IACjE,EAAE;IACF,6DAA6D;CAC7D,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAEb,8CAA8C;AAC9C,MAAM,CAAC,MAAM,gBAAgB,GAAG,6CAA2C,CAAC","sourcesContent":["/**\n * ASCII wordmark for the startup banner.\n * Rendered in the terminal with accent color on the \"hoo\" portion.\n * Source: design-system/assets/wordmark.txt\n */\n\nexport const WORDMARK = [\n\t\" __ __ ______ __\",\n\t\" / / / /___ ____ / ____/___ ____/ /__\",\n\t\" / /_/ / __ \\\\/ __ \\\\/ / / __ \\\\/ __ / _ \\\\\",\n\t\" / __ / /_/ / /_/ / /___/ /_/ / /_/ / __/\",\n\t\" /_/ /_/\\\\____/\\\\____/\\\\____/\\\\____/\\\\__,_/\\\\___/\",\n\t\"\",\n\t\" deterministic terminal coding agent > hoo\",\n].join(\"\\n\");\n\n/** Compact one-line logo for tight spaces. */\nexport const WORDMARK_COMPACT = \"hoo — deterministic terminal coding agent\";\n"]}
|
|
1
|
+
{"version":3,"file":"wordmark.js","sourceRoot":"","sources":["../../src/core/wordmark.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AAExE,MAAM,CAAC,MAAM,QAAQ,GAAG;IACvB,yDAAyD;IACzD,2DAA2D;IAC3D,gEAAgE;IAChE,4DAA4D;IAC5D,iEAAiE;IACjE,EAAE;IACF,6DAA6D;CAC7D,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAEb,8CAA8C;AAC9C,MAAM,CAAC,MAAM,gBAAgB,GAAG,6CAA2C,CAAC;AAE5E;;;;;GAKG;AACH,MAAM,aAAa,GAAG,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AACrC,MAAM,CAAC,MAAM,eAAe,GAAG,sBAAsB,CAAC,KAAK,CAAC,IAAI,CAAC;KAC/D,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,aAAa,GAAG,IAAI,CAAC;KACnC,IAAI,CAAC,IAAI,CAAC,CAAC","sourcesContent":["/**\n * ASCII wordmark for the startup banner.\n * Rendered in the terminal with accent color on the \"hoo\" portion.\n * Source: design-system/assets/wordmark.txt\n */\n\nimport { WORDMARK_SYMBOL_BLOCKS } from \"./wordmark-symbol.generated.js\";\n\nexport const WORDMARK = [\n\t\" __ __ ______ __\",\n\t\" / / / /___ ____ / ____/___ ____/ /__\",\n\t\" / /_/ / __ \\\\/ __ \\\\/ / / __ \\\\/ __ / _ \\\\\",\n\t\" / __ / /_/ / /_/ / /___/ /_/ / /_/ / __/\",\n\t\" /_/ /_/\\\\____/\\\\____/\\\\____/\\\\____/\\\\__,_/\\\\___/\",\n\t\"\",\n\t\" deterministic terminal coding agent > hoo\",\n].join(\"\\n\");\n\n/** Compact one-line logo for tight spaces. */\nexport const WORDMARK_COMPACT = \"hoo — deterministic terminal coding agent\";\n\n/**\n * Colored half-block owl symbol, indented to sit centered above the ASCII\n * wordmark. Carries baked-in brand colors (Signal Cyan + white), so it only\n * renders on truecolor terminals; callers fall back to {@link WORDMARK}\n * otherwise.\n */\nconst SYMBOL_INDENT = \" \".repeat(15);\nexport const WORDMARK_SYMBOL = WORDMARK_SYMBOL_BLOCKS.split(\"\\n\")\n\t.map((line) => SYMBOL_INDENT + line)\n\t.join(\"\\n\");\n"]}
|