@capgo/cli 7.85.0 → 7.86.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 +2 -1
- package/dist/index.js +298 -297
- package/dist/package.json +10 -3
- package/dist/src/github-command.d.ts +9 -0
- package/dist/src/github.d.ts +6 -0
- package/dist/src/schemas/sdk.d.ts +1 -0
- package/dist/src/sdk.d.ts +2 -2
- package/dist/src/sdk.js +216 -216
- package/dist/src/utils/safeWrites.d.ts +2 -2
- package/dist/src/utils.d.ts +9 -2
- package/package.json +10 -3
- package/skills/_artifacts/domain_map.yaml +32 -0
- package/skills/_artifacts/skill_spec.md +30 -0
- package/skills/_artifacts/skill_tree.yaml +17 -0
- package/skills/native-builds/SKILL.md +177 -0
- package/skills/organization-management/SKILL.md +93 -0
- package/skills/release-management/SKILL.md +222 -0
- package/skills/usage/SKILL.md +89 -0
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ npx @capgo/cli@latest init
|
|
|
84
84
|
|
|
85
85
|
🚀 Initialize a new app in Capgo Cloud with step-by-step guidance.
|
|
86
86
|
This includes adding code for updates, building, uploading your app, and verifying update functionality.
|
|
87
|
-
|
|
87
|
+
Capgo bundles are web assets and can be fetched by anyone who knows the URL. Use encryption for banking, regulated, or other high-security apps.
|
|
88
88
|
|
|
89
89
|
**Example:**
|
|
90
90
|
|
|
@@ -127,6 +127,7 @@ If you do not pass repositories, this defaults to all Cap-go repositories whose
|
|
|
127
127
|
| -------------- | ------------- | -------------------- |
|
|
128
128
|
| **--min-delay-ms** | <code>string</code> | Minimum delay in ms between each star action (default: 20) |
|
|
129
129
|
| **--max-delay-ms** | <code>string</code> | Maximum delay in ms between each star action (default: 180) |
|
|
130
|
+
| **--max-concurrency** | <code>string</code> | Maximum number of star requests running in parallel (default: 4) |
|
|
130
131
|
|
|
131
132
|
|
|
132
133
|
## <a id="doctor"></a> 👨⚕️ **Doctor**
|