@capgo/cli 7.84.5 → 7.84.7
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 +31 -0
- package/dist/index.js +286 -281
- package/dist/package.json +1 -1
- package/dist/src/bundle/upload.d.ts +11 -1
- package/dist/src/github.d.ts +34 -0
- package/dist/src/schemas/sdk.d.ts +10 -0
- package/dist/src/sdk.d.ts +37 -2
- package/dist/src/sdk.js +211 -210
- package/dist/src/utils/safeWrites.d.ts +21 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,6 +24,8 @@ Follow the documentation here: https://capacitorjs.com/docs/getting-started/
|
|
|
24
24
|
## 📋 Table of Contents
|
|
25
25
|
|
|
26
26
|
- 🚀 [Init](#init)
|
|
27
|
+
- 🔹 [Star](#star)
|
|
28
|
+
- 🔹 [Star-all](#star-all)
|
|
27
29
|
- 👨⚕️ [Doctor](#doctor)
|
|
28
30
|
- 🔑 [Login](#login)
|
|
29
31
|
- 📦 [Bundle](#bundle)
|
|
@@ -99,6 +101,33 @@ npx @capgo/cli@latest init YOUR_API_KEY com.example.app
|
|
|
99
101
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
100
102
|
|
|
101
103
|
|
|
104
|
+
## <a id="star"></a> 🔹 **Star**
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
npx @capgo/cli@latest star
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
⭐ Star a Capgo GitHub repository to support the project.
|
|
111
|
+
If you do not pass a repository name, this defaults to capacitor-updater in the Cap-go org.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## <a id="star-all"></a> 🔹 **Star-all**
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
npx @capgo/cli@latest star-all
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
⭐ Star all Capgo GitHub repositories with a small random delay between each request.
|
|
121
|
+
If you do not pass repositories, this defaults to all Cap-go repositories whose name starts with `capacitor-`.
|
|
122
|
+
|
|
123
|
+
## <a id="options"></a> Options
|
|
124
|
+
|
|
125
|
+
| Param | Type | Description |
|
|
126
|
+
| -------------- | ------------- | -------------------- |
|
|
127
|
+
| **--min-delay-ms** | <code>string</code> | Minimum delay in ms between each star action (default: 20) |
|
|
128
|
+
| **--max-delay-ms** | <code>string</code> | Maximum delay in ms between each star action (default: 180) |
|
|
129
|
+
|
|
130
|
+
|
|
102
131
|
## <a id="doctor"></a> 👨⚕️ **Doctor**
|
|
103
132
|
|
|
104
133
|
```bash
|
|
@@ -1195,6 +1224,8 @@ Available tools exposed via MCP:
|
|
|
1195
1224
|
- capgo_list_channels, capgo_add_channel, capgo_update_channel, capgo_delete_channel
|
|
1196
1225
|
- capgo_get_current_bundle, capgo_check_compatibility
|
|
1197
1226
|
- capgo_list_organizations, capgo_add_organization
|
|
1227
|
+
- capgo_star_repository
|
|
1228
|
+
- capgo_star_all_repositories
|
|
1198
1229
|
- capgo_get_account_id, capgo_doctor, capgo_get_stats
|
|
1199
1230
|
- capgo_request_build, capgo_generate_encryption_keys
|
|
1200
1231
|
Example usage with Claude Desktop:
|