@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @poncho-ai/cli@0.13.0 build /home/runner/work/poncho-ai/poncho-ai/packages/cli
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
  CLI Building entry: src/cli.ts, src/index.ts
@@ -7,12 +7,12 @@
7
7
  CLI tsup v8.5.1
8
8
  CLI Target: es2022
9
9
  ESM Build start
10
- ESM dist/cli.js 94.00 B
11
10
  ESM dist/index.js 857.00 B
12
- ESM dist/run-interactive-ink-VZBOYJYS.js 53.83 KB
13
- ESM dist/chunk-CUCEDHME.js 245.47 KB
14
- ESM ⚡️ Build success in 47ms
11
+ ESM dist/cli.js 94.00 B
12
+ ESM dist/run-interactive-ink-7ULE5JJI.js 55.30 KB
13
+ ESM dist/chunk-AIEVSNGF.js 301.41 KB
14
+ ESM ⚡️ Build success in 59ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 3770ms
16
+ DTS ⚡️ Build success in 3514ms
17
17
  DTS dist/cli.d.ts 20.00 B
18
18
  DTS dist/index.d.ts 3.56 KB
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