@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/cli",
3
- "version": "0.9.3",
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/harness": "0.10.2",
29
- "@poncho-ai/sdk": "0.5.0"
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
  `;