@facelessad/cli 2.1.1 → 2.1.2
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 +7 -5
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -14,10 +14,11 @@ facelessad login # API key from https://facelessad.com/develop
|
|
|
14
14
|
facelessad balance # proves the key works
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
**The API needs a paid plan
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
**The API needs a paid plan or an active trial.** The $15 trial (300
|
|
18
|
+
credits, 7 days) opens API keys, the CLI and MCP for its duration. If a
|
|
19
|
+
command answers `api_access_required`, the subscription has ended or the
|
|
20
|
+
trial has expired or run out of credits — a billing state, not a broken
|
|
21
|
+
key, so say so rather than retrying.
|
|
21
22
|
|
|
22
23
|
In CI, skip `login` and set `FACELESSAD_API_KEY`; the environment variable
|
|
23
24
|
wins over the saved key.
|
|
@@ -291,9 +292,10 @@ names the offending field and usually the valid values.
|
|
|
291
292
|
|
|
292
293
|
**Access and capacity**
|
|
293
294
|
|
|
294
|
-
- `api_access_required` — no active paid plan.
|
|
295
|
+
- `api_access_required` — no active paid plan or live trial. An active $15 trial opens the API for its 7 days.
|
|
295
296
|
- `insufficient_credits` — the body carries the estimate and the balance; nothing was spent.
|
|
296
297
|
- `too_many_active` — the plan's queue is full (Starter 10, Growth 25, Scale 50; app and API share it). Wait for a build to finish, then retry.
|
|
298
|
+
- `test_quota_exceeded` — 100 test runs per day per account (`"test": true` only). Real runs are unaffected; the quota resets at 00:00 UTC and the body carries `retryAfter`.
|
|
297
299
|
- `rate_limited` — over 300 POSTs this hour (`estimate` has its own 600). `retryAfter` gives the seconds until the counter resets on the hour.
|
|
298
300
|
- `unauthorized` — the key is unknown or revoked.
|
|
299
301
|
|