@poncho-ai/cli 0.30.8 → 0.32.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 +28 -0
- package/dist/chunk-73C227HM.js +13462 -0
- package/dist/chunk-DK5P34JS.js +13643 -0
- package/dist/chunk-FHWZIOBN.js +13485 -0
- package/dist/chunk-UUMBWQCK.js +13458 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/run-interactive-ink-6KMR5BI2.js +2115 -0
- package/dist/run-interactive-ink-IF3TLLQB.js +2115 -0
- package/dist/run-interactive-ink-OKE5AV3N.js +2115 -0
- package/dist/run-interactive-ink-TQQ4KWVI.js +2115 -0
- package/package.json +4 -4
- package/src/auth-codex.ts +123 -0
- package/src/index.ts +656 -101
- package/src/init-onboarding.ts +38 -15
- package/src/web-ui-client.ts +106 -71
- package/test/auth-codex.test.ts +34 -0
- package/test/init-onboarding.contract.test.ts +12 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.
|
|
2
|
+
> @poncho-ai/cli@0.32.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
|
[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/run-interactive-ink-
|
|
13
|
-
[32mESM[39m [1mdist/
|
|
14
|
-
[32mESM[39m
|
|
11
|
+
[32mESM[39m [1mdist/run-interactive-ink-IF3TLLQB.js [22m[32m56.86 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/cli.js [22m[32m94.00 B[39m
|
|
13
|
+
[32mESM[39m [1mdist/chunk-DK5P34JS.js [22m[32m520.93 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 37ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 2361ms
|
|
17
17
|
[32mDTS[39m [1mdist/cli.d.ts [22m[32m20.00 B[39m
|
|
18
18
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m4.16 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.32.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add OpenAI Codex OAuth provider support with one-time auth bootstrap and runtime token refresh.
|
|
8
|
+
|
|
9
|
+
This adds `openai-codex` model provider support, `poncho auth` login/status/logout/export commands, onboarding updates, and Codex request compatibility handling for OAuth-backed Responses API calls.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies []:
|
|
14
|
+
- @poncho-ai/harness@0.31.0
|
|
15
|
+
- @poncho-ai/sdk@1.7.0
|
|
16
|
+
- @poncho-ai/messaging@0.7.5
|
|
17
|
+
|
|
18
|
+
## 0.31.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [`193c367`](https://github.com/cesr/poncho-ai/commit/193c367568dce22a470dff6acd022c221be3b722) Thanks [@cesr](https://github.com/cesr)! - Unified continuation logic across all entry points (chat, cron, subagents, SDK) with mid-stream soft deadline checkpointing and proper context preservation across continuation boundaries.
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [[`193c367`](https://github.com/cesr/poncho-ai/commit/193c367568dce22a470dff6acd022c221be3b722)]:
|
|
27
|
+
- @poncho-ai/harness@0.30.0
|
|
28
|
+
- @poncho-ai/sdk@1.6.3
|
|
29
|
+
- @poncho-ai/messaging@0.7.4
|
|
30
|
+
|
|
3
31
|
## 0.30.8
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|