Commit 0fed132
authored
chore: add agent skills for product usage and maintenance [no-ci] (#486)
* chore: add agent skills for product usage and maintenance
Add 8 agent-agnostic skills under .agents/skills/ following the
skills.sh convention (discoverable by OpenCode, Claude Code, Codex,
Cursor, and 40+ other agent tools via `npx skills`).
Product usage skills (7):
- using-speech-to-text — /v1/listen REST + WSS
- using-text-to-speech — /v1/speak REST + WSS
- using-text-intelligence — /v1/read REST
- using-audio-intelligence — /v1/listen analytics overlays
- using-voice-agent — agent.deepgram.com/v1/agent/converse WSS
- using-conversational-stt — /v2/listen Flux WSS
- using-management-api — manage.v1.* + voice_agent.configurations
Maintainer skill (1):
- maintaining-js-sdk — JavaScript/TypeScript SDK maintenance workflow
Each skill includes authentication, quick-start with real JavaScript/TypeScript code
from examples/, key parameters, layered API references (in-repo,
OpenAPI, AsyncAPI, Context7, product docs), gotchas, and sibling-skill
routing.
Add .agents to .fernignore so skills survive Fern regeneration.
* docs: cross-reference deepgram/skills for central product knowledge
Each product skill now points back to the `deepgram/skills` repo for the
consolidated API reference, documentation finder, runnable recipes,
third-party integration examples, and MCP setup. This SDK's skills
stay language-idiomatic; the central skills stay cross-language.
* chore: namespace skill names with deepgram-js- prefix
Rename all 8 skill folders (and frontmatter `name` fields and
sibling-skill cross-references) to avoid collisions when a user
installs skills from multiple Deepgram SDK repos.
Old → new:
using-speech-to-text → deepgram-js-speech-to-text
using-text-to-speech → deepgram-js-text-to-speech
using-text-intelligence → deepgram-js-text-intelligence
using-audio-intelligence → deepgram-js-audio-intelligence
using-voice-agent → deepgram-js-voice-agent
using-conversational-stt → deepgram-js-conversational-stt
using-management-api → deepgram-js-management-api
maintaining-js-sdk → deepgram-js-maintaining-sdk
Previously each SDK published identically-named product skills
(e.g. every SDK had `using-speech-to-text`), so installing skills
from two SDKs would overwrite the first. The `deepgram-` prefix
makes the vendor+language explicit and the names globally unique.
* docs: sync maintainer skill and AGENTS.md with .fernignore (address Copilot feedback)
Copilot flagged two threads on deepgram-js-maintaining-sdk/SKILL.md and
asked that AGENTS.md be kept consistent. Both correct:
- .agents/ was added to .fernignore in the initial commit but the
maintainer skill's permanently-frozen list and note still claimed
.agents/ wasn't frozen.
- AGENTS.md agent-file bullet didn't list .agents/ either.
All three source-of-truth surfaces now agree: CLAUDE.md, AGENTS.md,
.claude/, .agents/ are permanently frozen.
* docs: unify variable name and strip stray space (Copilot re-review feedback)
All 8 new Copilot threads on PR #486:
- 7 skills defined the client as `const client` in the auth section
but the quick-start snippets below used `deepgramClient`. Renamed
the auth variable to `deepgramClient` so every code block can be
copy/pasted standalone without renaming.
- deepgram-js-speech-to-text/SKILL.md: removed a trailing space inside
the backticked `Token` auth scheme.
Affected skills: deepgram-js-speech-to-text, deepgram-js-text-to-speech,
deepgram-js-text-intelligence, deepgram-js-audio-intelligence,
deepgram-js-voice-agent, deepgram-js-conversational-stt,
deepgram-js-management-api.
* docs: define vars in snippets, fix attribution, sync AGENTS.md (Copilot feedback)
All 6 new Copilot threads on PR #486:
- deepgram-js-management-api/SKILL.md:
- Attribution now includes examples/32-management-project-models.ts (where
`include_outdated: false` is actually demonstrated).
- Declared `const projectId = process.env.DEEPGRAM_PROJECT_ID;` once at
the top of each snippet and used `projectId` consistently instead of
switching between `process.env.DEEPGRAM_PROJECT_ID` and an undefined
`projectId` identifier.
- deepgram-js-speech-to-text/SKILL.md + deepgram-js-conversational-stt/SKILL.md:
WebSocket quick-start snippets referenced an undefined `audioStream`.
Added the `createReadStream` setup (from the referenced examples) so
the snippets are copy/paste runnable.
- AGENTS.md: added `.mcp.json` to the permanently-frozen agent-file
bullet so the list matches .fernignore and the maintainer skill.1 parent 00ffcb2 commit 0fed132
10 files changed
Lines changed: 1004 additions & 2 deletions
File tree
- .agents/skills
- deepgram-js-audio-intelligence
- deepgram-js-conversational-stt
- deepgram-js-maintaining-sdk
- deepgram-js-management-api
- deepgram-js-speech-to-text
- deepgram-js-text-intelligence
- deepgram-js-text-to-speech
- deepgram-js-voice-agent
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
0 commit comments