Install
$ agentstack add skill-jambonz-skills-jambonz-starters ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
jambonz Starter Applications
The @jambonz/sdk repository ships 18+ runnable starter apps in its examples/ directory. Each is a self-contained, copy-and-run project you can use as a base.
How to Choose a Starter
- Just learning? →
hello-world(webhook) — single say + hangup - Building a voice AI agent and have a vendor preference? → vendor-specific s2s starter (see "Voice AI Agents" table below)
- Building a general voice agent? →
agent(fully featured: OpenAI + Deepgram + tool calling) - Building an IVR / phone menu? →
ivr-menu - Routing or transferring calls? →
dialortwo-stage-dialer - Need to record calls? →
call-recordingorlisten-record - Support center / contact queue? →
queue-with-hold - Something exotic? → see the full table below
Cloning a Starter
Use degit to grab a single example folder without the rest of the repo:
npx degit jambonz/node-sdk/examples/ my-app
cd my-app
npm install
Then read the starter's app.ts (or ws-app.ts for WebSocket starters) and package.json to see the dependencies and entry point.
Voice AI Agents
| Starter | Transport | What it shows | |---|---|---| | agent | WebSocket | Full voice agent: OpenAI LLM + Deepgram STT/TTS + Silero VAD + tool calling (get_weather) | | voice-agent | WebSocket | Generic conversational AI voice agent powered by an LLM | | openai-realtime | WebSocket | OpenAI Realtime API speech-to-speech integration | | deepgram-voice-agent | WebSocket | Deepgram deepgram_s2s end-to-end | | elevenlabs-voice-agent | WebSocket | ElevenLabs elevenlabs_s2s (uses agent_id auth — model & prompt live in the ElevenLabs dashboard) | | ultravox-voice-agent | WebSocket | Ultravox ultravox_s2s | | retell-hosted | Webhook | Retell-hosted agent via jambonz | | bedrock-agent | WebSocket | AWS Bedrock-backed voice agent | | assemblyai-autogenerate-prompt | WebSocket | AssemblyAI with dynamic prompt generation | | llm-streaming | WebSocket | LLM token-streaming with say TTS |
IVR, Routing, Call Control
| Starter | Transport | What it shows | |---|---|---| | hello-world | Webhook + WS | The simplest jambonz application: answer, greet, hang up. Ships both a webhook (app.ts) and WebSocket (ws-app.ts) version side-by-side. | | ivr-menu | Webhook | A classic interactive voice response menu that routes callers based on DTMF or speech input | | dial | Webhook | Bridge an incoming call to a phone number, SIP endpoint, or registered user | | two-stage-dialer | Webhook | Outbound dial that confirms the called party before bridging | | echo | Webhook | Echo test — answers and plays back what the caller says |
Recording, Queueing, Streaming
| Starter | Transport | What it shows | |---|---|---| | call-recording | Webhook | Mid-call recording control: incoming call is bridged to an agent, recording can be started/stopped dynamically | | listen-record | Webhook | Combine listen (audio streaming) with recording | | queue-with-hold | Webhook | Support queue: callers placed in queue with hold music and position announcements. Agents connect separately to dequeue. | | realtime-translator | WebSocket | Real-time bidirectional speech translation between two parties |
After Cloning
Every starter expects a few application environment variables (set them in the jambonz portal under your application's settings). The starter's app.ts declares the expected variables at the top via envVars: { ... } — read that block, then create matching values in the portal.
For configuration patterns, load jambonz-recipes and read [references/env-vars.md](../jambonz-recipes/references/env-vars.md).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jambonz
- Source: jambonz/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.