@poncho-ai/cli 0.4.1 → 0.5.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.
- package/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +24 -0
- package/dist/chunk-2AZ3Y6R2.js +4121 -0
- package/dist/chunk-3273VMA7.js +4182 -0
- package/dist/chunk-6REJ5J4T.js +4142 -0
- package/dist/chunk-BSW557BB.js +4058 -0
- package/dist/chunk-GJYE4S3D.js +4164 -0
- package/dist/chunk-HGZTVHBT.js +4089 -0
- package/dist/chunk-HNYADV2K.js +4164 -0
- package/dist/chunk-IE47LJ33.js +4166 -0
- package/dist/chunk-MFVXK3SX.js +4177 -0
- package/dist/chunk-N7ZAHMBR.js +4178 -0
- package/dist/chunk-TYL4SGJE.js +4177 -0
- package/dist/chunk-VIX7Y2YC.js +4169 -0
- package/dist/chunk-WCIUVLV3.js +4171 -0
- package/dist/chunk-WXFCSFXF.js +4178 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/run-interactive-ink-4EWW4AJ6.js +463 -0
- package/dist/run-interactive-ink-642LZIYZ.js +494 -0
- package/dist/run-interactive-ink-72H5IUTC.js +494 -0
- package/dist/run-interactive-ink-7P4WWB2Y.js +494 -0
- package/dist/run-interactive-ink-EP7GIKLH.js +463 -0
- package/dist/run-interactive-ink-FASKW7SN.js +463 -0
- package/dist/run-interactive-ink-LLNLDCES.js +494 -0
- package/dist/run-interactive-ink-MO6MGLEY.js +494 -0
- package/dist/run-interactive-ink-OQZN5DQE.js +463 -0
- package/dist/run-interactive-ink-QKB6CG3W.js +494 -0
- package/dist/run-interactive-ink-RJCA5IQA.js +494 -0
- package/dist/run-interactive-ink-RU2PH6R5.js +494 -0
- package/dist/run-interactive-ink-T36C6TJ2.js +463 -0
- package/dist/run-interactive-ink-ZL6RAS2O.js +494 -0
- package/package.json +3 -2
- package/src/index.ts +46 -10
- package/src/run-interactive-ink.ts +45 -10
- package/src/web-ui.ts +206 -103
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.
|
|
2
|
+
> @poncho-ai/cli@0.5.0 build /Users/cesar/Dev/latitude/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 @@ CLI Using tsconfig: tsconfig.json
|
|
|
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 635.00 B
|
|
12
|
-
ESM dist/
|
|
13
|
-
ESM dist/
|
|
14
|
-
ESM
|
|
11
|
+
ESM dist/cli.js 94.00 B
|
|
12
|
+
ESM dist/run-interactive-ink-LLNLDCES.js 16.62 KB
|
|
13
|
+
ESM dist/chunk-TYL4SGJE.js 138.98 KB
|
|
14
|
+
ESM ⚡️ Build success in 22ms
|
|
15
15
|
DTS Build start
|
|
16
|
-
DTS ⚡️ Build success in
|
|
16
|
+
DTS ⚡️ Build success in 1986ms
|
|
17
17
|
DTS dist/cli.d.ts 20.00 B
|
|
18
18
|
DTS dist/index.d.ts 2.56 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add markdown table support and fix Latitude telemetry integration
|
|
8
|
+
- Add markdown table rendering with `marked` library in web UI
|
|
9
|
+
- Add table styling with horizontal scroll and hover effects
|
|
10
|
+
- Add margins to HR elements for better spacing
|
|
11
|
+
- Integrate Latitude telemetry with Vercel AI SDK using event queue pattern
|
|
12
|
+
- Enable real-time streaming while capturing complete traces
|
|
13
|
+
- Fix telemetry to show all messages and interactions in Latitude dashboard
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies []:
|
|
18
|
+
- @poncho-ai/harness@0.6.0
|
|
19
|
+
|
|
20
|
+
## 0.4.2
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [d6256b2]
|
|
25
|
+
- @poncho-ai/harness@0.5.0
|
|
26
|
+
|
|
3
27
|
## 0.4.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|