lindoai-cli 1.4.6 → 1.4.8
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/SKILL.md +15 -0
- package/dist/index.cjs +47 -32
- package/dist/index.js +47 -32
- package/package.json +2 -2
package/SKILL.md
CHANGED
|
@@ -148,6 +148,21 @@ lindoai workflows status <instance_id>
|
|
|
148
148
|
lindoai workspace credits
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
+
### Get Client Credits
|
|
152
|
+
```bash
|
|
153
|
+
lindoai workspace client-credits --client <client_id>
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Allocate Credits to a Client
|
|
157
|
+
```bash
|
|
158
|
+
lindoai workspace allocate-credits \
|
|
159
|
+
--client <client_id> \
|
|
160
|
+
--type purchased \
|
|
161
|
+
--amount 100
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
Credit types: `monthly`, `purchased`, `daily`. Optional `--source` and `--notes` describe the allocation.
|
|
165
|
+
|
|
151
166
|
## Analytics
|
|
152
167
|
|
|
153
168
|
### Get Workspace Analytics
|