@poncho-ai/cli 0.9.4 → 0.10.0
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/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +18 -0
- package/dist/chunk-6JHNHDFF.js +5803 -0
- package/dist/chunk-B5HASFPF.js +5803 -0
- package/dist/chunk-DHQN2X5P.js +5803 -0
- package/dist/chunk-KITZQSRW.js +5801 -0
- package/dist/chunk-MGR2GJMB.js +5803 -0
- package/dist/chunk-VKPDG7AE.js +5803 -0
- package/dist/chunk-YARNE46F.js +5803 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/run-interactive-ink-CH7BVAFL.js +535 -0
- package/dist/run-interactive-ink-EL7MPT4C.js +1957 -0
- package/dist/run-interactive-ink-FFIGZNGR.js +535 -0
- package/dist/run-interactive-ink-LNSWAC2D.js +1964 -0
- package/dist/run-interactive-ink-M45PYHTA.js +1964 -0
- package/dist/run-interactive-ink-X6PKW7NZ.js +1964 -0
- package/dist/run-interactive-ink-X7VHWGLT.js +1964 -0
- package/package.json +3 -3
- package/src/index.ts +8 -0
- package/src/mascot.ts +1437 -0
- package/src/run-interactive-ink.ts +3 -10
|
@@ -18,6 +18,7 @@ import type { AgentEvent, Message, TokenUsage } from "@poncho-ai/sdk";
|
|
|
18
18
|
import { inferConversationTitle } from "./web-ui.js";
|
|
19
19
|
import { consumeFirstRunIntro } from "./init-feature-context.js";
|
|
20
20
|
import { resolveHarnessEnvironment } from "./index.js";
|
|
21
|
+
import { getMascotLines } from "./mascot.js";
|
|
21
22
|
|
|
22
23
|
// Re-export types that index.ts references
|
|
23
24
|
export type ApprovalRequest = {
|
|
@@ -354,19 +355,11 @@ export const runInteractiveInk = async ({
|
|
|
354
355
|
|
|
355
356
|
// --- Print header ----------------------------------------------------------
|
|
356
357
|
|
|
357
|
-
const mascot = [
|
|
358
|
-
`${C.yellow} ⣀⣀⣀⣀⣀⣀${C.reset}`,
|
|
359
|
-
`${C.yellow} ⠠⠾⠛⠛⠛⠛⠛⠛⠷⠄${C.reset}`,
|
|
360
|
-
`${C.gray} ⡇${C.cyan} ⠶ ⠶ ${C.gray}⢸${C.reset}`,
|
|
361
|
-
`${C.gray} ⠣⡀${C.cyan} ⠒⠚${C.gray}⢀⠜${C.reset}`,
|
|
362
|
-
`${C.yellow} ⣿⣿⣿⣿⣿⣿${C.reset}`,
|
|
363
|
-
`${C.gray} ⠃ ⠘${C.reset}`,
|
|
364
|
-
];
|
|
365
358
|
console.log("");
|
|
366
|
-
for (const line of
|
|
359
|
+
for (const line of getMascotLines()) {
|
|
367
360
|
console.log(line);
|
|
368
361
|
}
|
|
369
|
-
console.log(`${C.bold}${C.cyan}
|
|
362
|
+
console.log(`${C.bold}${C.cyan} poncho${C.reset}`);
|
|
370
363
|
console.log("");
|
|
371
364
|
console.log(
|
|
372
365
|
gray(
|