@poncho-ai/cli 0.9.3 → 0.10.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 +5 -5
- package/CHANGELOG.md +29 -0
- package/dist/chunk-6JHNHDFF.js +5803 -0
- package/dist/chunk-B5HASFPF.js +5803 -0
- package/dist/chunk-DHQN2X5P.js +5803 -0
- package/dist/chunk-KITZQSRW.js +5801 -0
- package/dist/chunk-MGR2GJMB.js +5803 -0
- package/dist/chunk-VKPDG7AE.js +5803 -0
- package/dist/chunk-YARNE46F.js +5803 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/run-interactive-ink-CH7BVAFL.js +535 -0
- package/dist/run-interactive-ink-EL7MPT4C.js +1957 -0
- package/dist/run-interactive-ink-FFIGZNGR.js +535 -0
- package/dist/run-interactive-ink-LNSWAC2D.js +1964 -0
- package/dist/run-interactive-ink-M45PYHTA.js +1964 -0
- package/dist/run-interactive-ink-X6PKW7NZ.js +1964 -0
- package/dist/run-interactive-ink-X7VHWGLT.js +1964 -0
- package/package.json +3 -3
- package/src/index.ts +8 -0
- package/src/mascot.ts +1437 -0
- package/src/run-interactive-ink.ts +3 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poncho-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "CLI for building and deploying AI agents",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"react": "^19.2.4",
|
|
26
26
|
"react-devtools-core": "^6.1.5",
|
|
27
27
|
"yaml": "^2.8.1",
|
|
28
|
-
"@poncho-ai/
|
|
29
|
-
"@poncho-ai/
|
|
28
|
+
"@poncho-ai/sdk": "0.6.0",
|
|
29
|
+
"@poncho-ai/harness": "0.11.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/react": "^19.2.14",
|
package/src/index.ts
CHANGED
|
@@ -501,6 +501,14 @@ poncho build docker
|
|
|
501
501
|
docker build -t ${name} .
|
|
502
502
|
\`\`\`
|
|
503
503
|
|
|
504
|
+
## Troubleshooting
|
|
505
|
+
|
|
506
|
+
### Vercel deploy issues
|
|
507
|
+
|
|
508
|
+
- After upgrading \`@poncho-ai/cli\`, re-run \`poncho build vercel --force\` to refresh generated deploy files.
|
|
509
|
+
- If Vercel fails during \`pnpm install\` due to a lockfile mismatch, run \`pnpm install --no-frozen-lockfile\` locally and commit \`pnpm-lock.yaml\`.
|
|
510
|
+
- Deploy from the project root: \`vercel deploy --prod\`.
|
|
511
|
+
|
|
504
512
|
For full reference:
|
|
505
513
|
https://github.com/cesr/poncho-ai
|
|
506
514
|
`;
|