@poncho-ai/cli 0.30.0 → 0.30.2
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 +28 -0
- package/dist/{chunk-5OLH7U3C.js → chunk-FA546WPW.js} +703 -208
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1 -1
- package/dist/{run-interactive-ink-EMTC7MK7.js → run-interactive-ink-FUMHN6DS.js} +1 -1
- package/package.json +4 -4
- package/src/index.ts +368 -110
- package/src/web-ui-client.ts +241 -9
- package/src/web-ui-styles.ts +50 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.30.
|
|
2
|
+
> @poncho-ai/cli@0.30.2 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
|
|
@@ -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-FUMHN6DS.js [22m[32m56.86 KB[39m
|
|
11
12
|
[32mESM[39m [1mdist/index.js [22m[32m857.00 B[39m
|
|
12
|
-
[32mESM[39m [1mdist/
|
|
13
|
-
[32mESM[39m
|
|
14
|
-
[32mESM[39m ⚡️ Build success in 69ms
|
|
13
|
+
[32mESM[39m [1mdist/chunk-FA546WPW.js [22m[32m490.84 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 71ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 4822ms
|
|
17
17
|
[32mDTS[39m [1mdist/cli.d.ts [22m[32m20.00 B[39m
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m4.16 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.30.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`98df42f`](https://github.com/cesr/poncho-ai/commit/98df42f79e0a376d0a864598557758bfa644039d) Thanks [@cesr](https://github.com/cesr)! - Fix serverless subagent and continuation reliability
|
|
8
|
+
- Use stable internal secret across serverless instances for callback auth
|
|
9
|
+
- Wrap continuation self-fetches in waitUntil to survive function shutdown
|
|
10
|
+
- Set runStatus during callback re-runs so clients detect active processing
|
|
11
|
+
- Add post-streaming soft deadline check to catch long model responses
|
|
12
|
+
- Client auto-recovers from abrupt stream termination and orphaned continuations
|
|
13
|
+
- Fix callback continuation losing \_continuationMessages when no pending results
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`98df42f`](https://github.com/cesr/poncho-ai/commit/98df42f79e0a376d0a864598557758bfa644039d)]:
|
|
16
|
+
- @poncho-ai/harness@0.28.2
|
|
17
|
+
|
|
18
|
+
## 0.30.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [`4d50ad9`](https://github.com/cesr/poncho-ai/commit/4d50ad970886c9d3635ec36a407514c91ce6a71a) Thanks [@cesr](https://github.com/cesr)! - Improve callback-run reliability and streaming across subagent workflows, including safer concurrent approval handling and parent callback retriggers.
|
|
23
|
+
|
|
24
|
+
Add context window/token reporting through run completion events, improve cron/web UI rendering and approval streaming behavior, and harden built-in web search retry/throttle behavior.
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [[`4d50ad9`](https://github.com/cesr/poncho-ai/commit/4d50ad970886c9d3635ec36a407514c91ce6a71a)]:
|
|
27
|
+
- @poncho-ai/harness@0.28.1
|
|
28
|
+
- @poncho-ai/sdk@1.6.1
|
|
29
|
+
- @poncho-ai/messaging@0.7.2
|
|
30
|
+
|
|
3
31
|
## 0.30.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|