@poncho-ai/cli 0.9.3 → 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 +29 -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
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.
|
|
2
|
+
> @poncho-ai/cli@0.10.0 build /Users/cesar/Dev/latitude/poncho-ai/packages/cli
|
|
3
3
|
> tsup src/index.ts src/cli.ts --format esm --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/cli.ts, src/index.ts
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
[34mCLI[39m Target: es2022
|
|
9
9
|
[34mESM[39m Build start
|
|
10
10
|
[32mESM[39m [1mdist/cli.js [22m[32m94.00 B[39m
|
|
11
|
-
[32mESM[39m [1mdist/run-interactive-ink-WBPOSHHC.js [22m[32m18.37 KB[39m
|
|
12
|
-
[32mESM[39m [1mdist/chunk-HYTF3H3J.js [22m[32m206.86 KB[39m
|
|
13
11
|
[32mESM[39m [1mdist/index.js [22m[32m857.00 B[39m
|
|
14
|
-
[32mESM[39m
|
|
12
|
+
[32mESM[39m [1mdist/chunk-MGR2GJMB.js [22m[32m207.22 KB[39m
|
|
13
|
+
[32mESM[39m [1mdist/run-interactive-ink-X7VHWGLT.js [22m[32m51.43 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 47ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 3838ms
|
|
17
17
|
[32mDTS[39m [1mdist/cli.d.ts [22m[32m20.00 B[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.36 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a1df23f`](https://github.com/cesr/poncho-ai/commit/a1df23f339d815c30948ebcd275209366a3d2a72) Thanks [@cesr](https://github.com/cesr)! - Add cooperative run cancellation: stop active runs via Ctrl+C (CLI), stop button (Web UI), or the /stop API endpoint. Partial output is preserved and empty assistant messages are skipped to prevent conversation corruption.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [`a95290e`](https://github.com/cesr/poncho-ai/commit/a95290e1bde10aa1dd2f668a5bcdb5201891552e) Thanks [@cesr](https://github.com/cesr)! - Render the interactive CLI mascot with high-fidelity truecolor terminal art and move mascot data into a dedicated module for maintainability.
|
|
12
|
+
|
|
13
|
+
- [`e61f479`](https://github.com/cesr/poncho-ai/commit/e61f479a839cf52db9b1a24d05d4eea637b0f4c5) Thanks [@cesr](https://github.com/cesr)! - Docs: highlight serverless-first positioning and clarify deployed agents run as stateless endpoints.
|
|
14
|
+
|
|
15
|
+
- [`a95290e`](https://github.com/cesr/poncho-ai/commit/a95290e1bde10aa1dd2f668a5bcdb5201891552e) Thanks [@cesr](https://github.com/cesr)! - Truncate long conversation titles in CLI /list output
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`a1df23f`](https://github.com/cesr/poncho-ai/commit/a1df23f339d815c30948ebcd275209366a3d2a72)]:
|
|
18
|
+
- @poncho-ai/sdk@0.6.0
|
|
19
|
+
- @poncho-ai/harness@0.11.0
|
|
20
|
+
|
|
21
|
+
## 0.9.4
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Reduce serverless warnings when loading TypeScript skill scripts.
|
|
26
|
+
|
|
27
|
+
The harness now uses `jiti` first for `.ts/.mts/.cts` scripts in `run_skill_script`, avoiding Node's native ESM warning spam for TypeScript files in deployed environments.
|
|
28
|
+
|
|
29
|
+
- Updated dependencies []:
|
|
30
|
+
- @poncho-ai/harness@0.10.3
|
|
31
|
+
|
|
3
32
|
## 0.9.3
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|