@poncho-ai/cli 0.32.4 → 0.32.6
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 +7 -7
- package/CHANGELOG.md +15 -0
- package/dist/{chunk-F6NA3N2R.js → chunk-OJGEUTDF.js} +757 -510
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +81 -3
- package/dist/index.js +3 -1
- package/dist/{run-interactive-ink-GPCI4L6G.js → run-interactive-ink-LAL4PQVD.js} +1 -1
- package/package.json +2 -2
- package/src/index.ts +758 -464
- package/src/web-ui-client.ts +70 -8
- package/test/run-orchestration.test.ts +171 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.32.
|
|
2
|
+
> @poncho-ai/cli@0.32.6 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/
|
|
12
|
-
[32mESM[39m [1mdist/
|
|
13
|
-
[32mESM[39m [1mdist/chunk-
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m [1mdist/run-interactive-ink-LAL4PQVD.js [22m[32m56.86 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/index.js [22m[32m917.00 B[39m
|
|
13
|
+
[32mESM[39m [1mdist/chunk-OJGEUTDF.js [22m[32m535.48 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 79ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 4402ms
|
|
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[32m6.85 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.32.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#61](https://github.com/cesr/poncho-ai/pull/61) [`0a51abe`](https://github.com/cesr/poncho-ai/commit/0a51abec12191397fd36ab1fd4feca7460489e33) Thanks [@cesr](https://github.com/cesr)! - Fix /new command on Telegram in serverless environments: persist conversation reset to the store so it survives cold starts.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`0a51abe`](https://github.com/cesr/poncho-ai/commit/0a51abec12191397fd36ab1fd4feca7460489e33)]:
|
|
10
|
+
- @poncho-ai/messaging@0.7.7
|
|
11
|
+
|
|
12
|
+
## 0.32.5
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Unify conversation run orchestration: route all message vectors through a shared executor with canonical history resolution, fixing approval loops, stale messaging context, and subagent callback reliability.
|
|
17
|
+
|
|
3
18
|
## 0.32.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|