@poncho-ai/cli 0.12.0 → 0.14.0

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.12.0 build /home/runner/work/poncho-ai/poncho-ai/packages/cli
2
+ > @poncho-ai/cli@0.14.0 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
@@ -8,11 +8,11 @@
8
8
  CLI Target: es2022
9
9
  ESM Build start
10
10
  ESM dist/cli.js 94.00 B
11
- ESM dist/run-interactive-ink-64QEOUXL.js 53.83 KB
11
+ ESM dist/run-interactive-ink-SLWDVTDX.js 53.83 KB
12
12
  ESM dist/index.js 857.00 B
13
- ESM dist/chunk-XIFWXRUB.js 241.46 KB
14
- ESM ⚡️ Build success in 59ms
13
+ ESM dist/chunk-A32BXZKP.js 291.53 KB
14
+ ESM ⚡️ Build success in 54ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 3442ms
16
+ DTS ⚡️ Build success in 3586ms
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,41 @@
1
1
  # @poncho-ai/cli
2
2
 
3
+ ## 0.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`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
8
+ - 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.
9
+ - Messaging conversations (email via Resend) now stream events to the web UI: live tool progress, approval prompts, and text chunks display in real time.
10
+ - Clicking a conversation with an active run in the web UI sidebar auto-attaches to the event stream.
11
+ - Fix conversation persistence race condition in messaging runner (stale-write clobber).
12
+ - Fix duplicated last section in persisted conversations.
13
+
14
+ ### Patch Changes
15
+
16
+ - [`9e87d28`](https://github.com/cesr/poncho-ai/commit/9e87d2801ba7b8d4c8b0650563d59e9cad530ff6) Thanks [@cesr](https://github.com/cesr)! - Fix Latitude telemetry not exporting traces
17
+ - Reuse a single `LatitudeTelemetry` instance across runs instead of creating one per run (avoids OpenTelemetry global registration conflicts)
18
+ - Use `disableBatch` mode so spans export immediately instead of being silently lost on a 5s timer
19
+ - Warn at startup when `telemetry.latitude` is configured with missing or misnamed fields (e.g. `apiKeyEnv` instead of `apiKey`)
20
+ - Sanitize agent name for Latitude's path validation
21
+ - Surface OTLP export errors in console output
22
+
23
+ - Updated dependencies [[`9e87d28`](https://github.com/cesr/poncho-ai/commit/9e87d2801ba7b8d4c8b0650563d59e9cad530ff6), [`fed3e87`](https://github.com/cesr/poncho-ai/commit/fed3e870aecaea9dcbe8070f5bb2c828d4eb8921)]:
24
+ - @poncho-ai/harness@0.14.0
25
+
26
+ ## 0.13.0
27
+
28
+ ### Minor Changes
29
+
30
+ - [#10](https://github.com/cesr/poncho-ai/pull/10) [`d5bce7b`](https://github.com/cesr/poncho-ai/commit/d5bce7be5890c657bea915eb0926feb6de66b218) Thanks [@cesr](https://github.com/cesr)! - Add generic messaging layer with Slack as the first adapter. Agents can now respond to @mentions in Slack by adding `messaging: [{ platform: 'slack' }]` to `poncho.config.js`. Includes signature verification, threaded conversations, processing indicators, and Vercel `waitUntil` support.
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [[`d5bce7b`](https://github.com/cesr/poncho-ai/commit/d5bce7be5890c657bea915eb0926feb6de66b218)]:
35
+ - @poncho-ai/messaging@0.2.0
36
+ - @poncho-ai/harness@0.13.1
37
+ - @poncho-ai/sdk@1.0.1
38
+
3
39
  ## 0.12.0
4
40
 
5
41
  ### Minor Changes