@capgo/cli 7.106.0 → 7.108.1
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/README.md +1 -0
- package/dist/index.js +511 -439
- package/dist/package.json +7 -3
- package/dist/src/ai/analyze.d.ts +29 -0
- package/dist/src/ai/log-capture.d.ts +14 -0
- package/dist/src/ai/prompt.d.ts +1 -0
- package/dist/src/ai/render-markdown.d.ts +1 -0
- package/dist/src/api/channels.d.ts +7 -13
- package/dist/src/api/versions.d.ts +1 -1
- package/dist/src/build/onboarding/android/types.d.ts +1 -1
- package/dist/src/build/onboarding/ci-secrets.d.ts +40 -0
- package/dist/src/build/onboarding/types.d.ts +1 -1
- package/dist/src/channel/add.d.ts +1 -1
- package/dist/src/schemas/build.d.ts +1 -0
- package/dist/src/sdk.js +353 -282
- package/dist/src/types/supabase.types.d.ts +4 -4
- package/dist/src/utils.d.ts +5 -5
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -1261,6 +1261,7 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
|
|
|
1261
1261
|
| **--output-record** | <code>string</code> | After a successful build, write a JSON record (jobId, status, outputUrl, qrCodeAscii, qrCodePngPath, finishedAt) to <path>. A PNG QR code is also written next to it as <path>.qr.png. Read fields back with `build last-output`. |
|
|
1262
1262
|
| **--skip-build-number-bump** | <code>boolean</code> | Skip automatic build number/version code incrementing. Uses whatever version is already in the project files. |
|
|
1263
1263
|
| **--no-skip-build-number-bump** | <code>boolean</code> | Override saved credentials to re-enable automatic build number incrementing for this build only. |
|
|
1264
|
+
| **--ai-analytics** | <code>boolean</code> | On build failure, send logs to Capgo AI for diagnosis. In interactive terminals this skips the upfront confirmation; in CI this auto-uploads and prints the analysis to stderr. |
|
|
1264
1265
|
| **-a** | <code>string</code> | API key to link to your account |
|
|
1265
1266
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
1266
1267
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|