@poncho-ai/cli 0.14.0 → 0.14.1
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 +6 -6
- package/CHANGELOG.md +19 -0
- package/dist/{chunk-A32BXZKP.js → chunk-AIEVSNGF.js} +523 -255
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{run-interactive-ink-SLWDVTDX.js → run-interactive-ink-7ULE5JJI.js} +151 -118
- package/package.json +4 -4
- package/src/index.ts +357 -197
- package/src/run-interactive-ink.ts +171 -147
- package/src/web-ui.ts +213 -101
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.14.
|
|
2
|
+
> @poncho-ai/cli@0.14.1 build /home/runner/work/poncho-ai/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
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
[34mCLI[39m tsup v8.5.1
|
|
8
8
|
[34mCLI[39m Target: es2022
|
|
9
9
|
[34mESM[39m Build start
|
|
10
|
-
[32mESM[39m [1mdist/cli.js [22m[32m94.00 B[39m
|
|
11
|
-
[32mESM[39m [1mdist/run-interactive-ink-SLWDVTDX.js [22m[32m53.83 KB[39m
|
|
12
10
|
[32mESM[39m [1mdist/index.js [22m[32m857.00 B[39m
|
|
13
|
-
[32mESM[39m [1mdist/
|
|
14
|
-
[32mESM[39m
|
|
11
|
+
[32mESM[39m [1mdist/cli.js [22m[32m94.00 B[39m
|
|
12
|
+
[32mESM[39m [1mdist/run-interactive-ink-7ULE5JJI.js [22m[32m55.30 KB[39m
|
|
13
|
+
[32mESM[39m [1mdist/chunk-AIEVSNGF.js [22m[32m301.41 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 59ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 3514ms
|
|
17
17
|
[32mDTS[39m [1mdist/cli.d.ts [22m[32m20.00 B[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.56 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e000b96`](https://github.com/cesr/poncho-ai/commit/e000b96837cbbb8d95c868c91a614f458868c444) Thanks [@cesr](https://github.com/cesr)! - Durable approval checkpoints, email conversation improvements, and web UI fixes
|
|
8
|
+
- Simplify approval system to checkpoint-only (remove legacy blocking approvalHandler)
|
|
9
|
+
- Optimize checkpoint storage with delta messages instead of full history
|
|
10
|
+
- Add sidebar sections for conversations awaiting approval with status indicator
|
|
11
|
+
- Fix nested checkpoint missing baseMessageCount in resumeRunFromCheckpoint
|
|
12
|
+
- Improve email conversation titles (sender email + subject)
|
|
13
|
+
- Remove email threading — each incoming email creates its own conversation
|
|
14
|
+
- Fix streaming after approval to preserve existing messages (liveOnly mode)
|
|
15
|
+
- Preserve newlines in user messages in web UI
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`e000b96`](https://github.com/cesr/poncho-ai/commit/e000b96837cbbb8d95c868c91a614f458868c444)]:
|
|
18
|
+
- @poncho-ai/sdk@1.0.2
|
|
19
|
+
- @poncho-ai/harness@0.14.1
|
|
20
|
+
- @poncho-ai/messaging@0.2.1
|
|
21
|
+
|
|
3
22
|
## 0.14.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|