@pinecall/skills 0.1.9 → 0.1.10
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.10",
|
|
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",
|
|
@@ -88,6 +88,26 @@ One key can cover multiple services where a provider shares it — e.g. an
|
|
|
88
88
|
**ElevenLabs** key enables both ElevenLabs TTS and ElevenLabs Scribe STT; a
|
|
89
89
|
**Cartesia** key enables Sonic TTS and Ink-Whisper STT.
|
|
90
90
|
|
|
91
|
+
## Operators: flip a provider managed ↔ BYOK
|
|
92
|
+
|
|
93
|
+
The managed/BYOK status of any provider is a single DB flag (`rate.managed`) and is
|
|
94
|
+
the source of truth — flipping it takes effect **immediately** (next session / page
|
|
95
|
+
load), no deploy or re-seed:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
# Pinecall provides it (no token needed) — requires <PROVIDER>_API_KEY on the box:
|
|
99
|
+
npx tsx scripts/set-managed.ts assemblyai true
|
|
100
|
+
|
|
101
|
+
# Force bring-your-own-key (the user must add their token):
|
|
102
|
+
npx tsx scripts/set-managed.ts assemblyai false
|
|
103
|
+
|
|
104
|
+
# Per service (e.g. only Cartesia STT):
|
|
105
|
+
npx tsx scripts/set-managed.ts cartesia false stt
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Enabling managed only works if Pinecall actually holds that provider's key in the
|
|
109
|
+
prod `.env` (`shipway env` to check); otherwise leave it BYOK.
|
|
110
|
+
|
|
91
111
|
## What's next
|
|
92
112
|
|
|
93
113
|
- [STT Providers](/reference/stt-providers)
|