@poncho-ai/cli 0.13.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 +42 -0
- package/dist/{chunk-CUCEDHME.js → chunk-AIEVSNGF.js} +1994 -467
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{run-interactive-ink-VZBOYJYS.js → run-interactive-ink-7ULE5JJI.js} +151 -118
- package/package.json +4 -4
- package/src/api-docs.ts +674 -0
- package/src/index.ts +632 -229
- package/src/init-onboarding.ts +14 -1
- package/src/run-interactive-ink.ts +171 -147
- package/src/web-ui.ts +760 -244
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.
|
|
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
10
|
[32mESM[39m [1mdist/index.js [22m[32m857.00 B[39m
|
|
12
|
-
[32mESM[39m [1mdist/
|
|
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,47 @@
|
|
|
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
|
+
|
|
22
|
+
## 0.14.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- [`fed3e87`](https://github.com/cesr/poncho-ai/commit/fed3e870aecaea9dcbe8070f5bb2c828d4eb8921) Thanks [@cesr](https://github.com/cesr)! - Unified tool access configuration and web UI streaming for messaging conversations
|
|
27
|
+
- New `tools` config in `poncho.config.js`: control any tool with `true` (available), `false` (disabled), or `'approval'` (requires human approval). Per-environment overrides via `byEnvironment`. Works for harness, adapter, MCP, and skill tools.
|
|
28
|
+
- Messaging conversations (email via Resend) now stream events to the web UI: live tool progress, approval prompts, and text chunks display in real time.
|
|
29
|
+
- Clicking a conversation with an active run in the web UI sidebar auto-attaches to the event stream.
|
|
30
|
+
- Fix conversation persistence race condition in messaging runner (stale-write clobber).
|
|
31
|
+
- Fix duplicated last section in persisted conversations.
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- [`9e87d28`](https://github.com/cesr/poncho-ai/commit/9e87d2801ba7b8d4c8b0650563d59e9cad530ff6) Thanks [@cesr](https://github.com/cesr)! - Fix Latitude telemetry not exporting traces
|
|
36
|
+
- Reuse a single `LatitudeTelemetry` instance across runs instead of creating one per run (avoids OpenTelemetry global registration conflicts)
|
|
37
|
+
- Use `disableBatch` mode so spans export immediately instead of being silently lost on a 5s timer
|
|
38
|
+
- Warn at startup when `telemetry.latitude` is configured with missing or misnamed fields (e.g. `apiKeyEnv` instead of `apiKey`)
|
|
39
|
+
- Sanitize agent name for Latitude's path validation
|
|
40
|
+
- Surface OTLP export errors in console output
|
|
41
|
+
|
|
42
|
+
- Updated dependencies [[`9e87d28`](https://github.com/cesr/poncho-ai/commit/9e87d2801ba7b8d4c8b0650563d59e9cad530ff6), [`fed3e87`](https://github.com/cesr/poncho-ai/commit/fed3e870aecaea9dcbe8070f5bb2c828d4eb8921)]:
|
|
43
|
+
- @poncho-ai/harness@0.14.0
|
|
44
|
+
|
|
3
45
|
## 0.13.0
|
|
4
46
|
|
|
5
47
|
### Minor Changes
|