@pinecall/skills 0.1.11 → 0.1.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinecall/skills",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Agent Skills for the Pinecall SDK — installable into Claude Code, Antigravity, Cursor, Copilot and any agent that supports the open Skills format.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -107,6 +107,20 @@ key for 'xai' — add your key under Provider Keys in the dashboard, then reconn
|
|
|
107
107
|
|
|
108
108
|
Pinecall never silently falls back to its own key for a BYOK provider.
|
|
109
109
|
|
|
110
|
+
## Plan limits & model allow-list
|
|
111
|
+
|
|
112
|
+
Two more gates are enforced at agent registration, both rejecting with
|
|
113
|
+
`MODEL_NOT_ALLOWED`:
|
|
114
|
+
|
|
115
|
+
1. **Must be a priced model in the DB.** Any STT/TTS/LLM model you declare must exist
|
|
116
|
+
in the rate table (be a known, priced model) — unknown models are rejected.
|
|
117
|
+
2. **Must be allowed on your plan.** Plans can restrict which models a tier may use.
|
|
118
|
+
For example, the **free tier can use ElevenLabs flash + multilingual, but not the
|
|
119
|
+
pricier models** (and Cartesia/Polly in full). Paid plans allow everything priced.
|
|
120
|
+
|
|
121
|
+
Use the access check above (`fetchModelAccess` / `GET /api/models/access`) to see the
|
|
122
|
+
verdict and `reason` (`plan_restricted`, `unknown_model`, …) before connecting.
|
|
123
|
+
|
|
110
124
|
## Add your own key
|
|
111
125
|
|
|
112
126
|
- **Dashboard** → **Provider Keys** → pick the provider, paste the key.
|