Three-skill pipeline for designing and generating Voicenter Bot JSON: Agent Spec Designer (interview), Intent Detail Author (per-intent language), and JSON Assembler (wire-format projection). Produces a deployable bot-<name>-<date>.json file.
Authors the per-intent language content of a Voicenter Agent Spec — slot descriptions, validationPrompt, post-execution intentInstructions, and RT-specific Configuration text. Use this skill when an Agent Spec exists with section 5 entries marked `[structural]` or `[detailed-revisit]`, and the user wants to fill them in. Trigger phrases include "run Skill 2", "detail the intents", "fill in the per-intent fields", "Skill 2 (Intent Detail Author)", or any direct continuation from Skill 1's handoff hint. Walks intents in user-confirmed batches with a checkpoint after each batch. Reactivable — invoke as many times as needed; spec state is the resume point. Does NOT modify the structural skeleton (sections 1, 2, 3, 4, 4.5.1/.2/.4) — that's Skill 1 (Agent Spec Designer). Does NOT emit wire-format JSON — that's Skill 3 (JSON Assembler).
Designs the structural skeleton of a Voicenter Bot via interview. Use this skill when the user wants to create, design, scope, or modify a Voicenter voice/chat bot — phrases like "design a bot", "create an agent spec", "build a Voicenter bot", "patch this bot", "add an intent", "change the bot's persona", "modify the flow graph", or any reference to the Agent Spec Designer / Skill 1 in the Voicenter bot generation pipeline. Produces an Agent Spec markdown file (sections 1-4, 4.5, section 5 stubs, section 6 initial, section 7 init). Two named entry modes — greenfield (no spec attached) and patch (spec attached). Does NOT author per-intent language content (validationPrompt, post-execution intentInstructions) — that's Skill 2 (Intent Detail Author). Does NOT emit wire-format JSON — that's Skill 3 (JSON Assembler).
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Official Claude Code plugins for integrating the Voicenter telephony platform into your application or CRM.
# 1. Add the Voicenter marketplace
/plugin marketplace add VoicenterTeam/claude-marketplace
# 2. Install the live MCP plugin (direct API access from Claude)
/plugin install voicenter-mcp@voicenter
# 3. Install the API skills plugin (integration guides for all 14 APIs)
/plugin install voicenter-api@voicenter
# 4. (Optional) Install the bot-builder plugin (design Voicenter Bots end-to-end)
/plugin install voicenter-bot-builder@voicenter
voicenter-mcp — Live API AccessConnects Claude Code directly to https://mcp01.voicenter.co/mcp. Authentication is handled via OAuth — no tokens or environment variables to configure. Claude Code launches the OAuth browser flow automatically on first use.
Skills: /setup — OAuth connection guide.
voicenter-api — 14 API Integration SkillsEach skill teaches Claude exactly how to help you build a specific Voicenter API integration — correct endpoints, real request/response examples, and TypeScript code.
| Skill | API Type | Description |
|---|---|---|
/voicebot | In/Out (push) | Build the endpoint the Voice Agent calls mid-conversation to fetch CRM data |
/click2call | Outgoing | Initiate 2-leg calls from your CRM |
/popup-screen | Incoming (push) | Build the endpoint Voicenter calls to display caller data to agents |
/cdr-notification | In/Out (push) | Receive call records + AI analysis after every call ends |
/external-layer | Incoming (push) | Route inbound calls based on your CRM business logic |
/call-log | In/Out | Pull CDR records with filters (up to 10,000 per request) |
/blacklist | Outgoing | Add/remove numbers from the dialing blacklist |
/mute-recording | In/Out | Pause/resume call recording in real time (PCI compliance) |
/extension-list | In/Out | List all SIP extensions, users, and departments |
/real-time | In/Out | Stream live call and agent events via socket.io SDK |
/productive-dialer | Outgoing | Manage campaigns, upload leads, control dialing |
/login-logout | In/Out | Set agent login/logout and status from your CRM |
/lead-tracker | Incoming | Track which marketing campaign generated each call (JS SDK) |
/active-calls | In/Out | Snapshot of all live calls and queue activity |
voicenter-bot-builder — 3-skill Bot Authoring PipelineDesign and emit deployable Voicenter Bot JSON through a guided interview. Build-time tooling — used once per bot, not per call. Hands off through one shared agent-spec.md file.
| Skill | Phase | Purpose |
|---|---|---|
/voicenter-bot-spec-designer | 1 — Structural | Interview-driven design: identity, persona, intent graph, slots, RT specifics |
/voicenter-bot-intent-detail-author | 2 — Per-intent language | Slot descriptions, validationPrompt, RT-specific announcements, post-execution instructions (Conversation Routines style) |
/voicenter-bot-json-assembler | 3 — Wire-format projection | Mechanical projection of the spec into Bot JSON; runs §15.4 cross-reference (7 blocking checks); emits bot-<id>-<date>.json plus a banner of fail-loud sentinels |
MCP plugin: OAuth — Claude Code handles the browser flow automatically on first connection. No tokens or environment variables required.
Code-based APIs (skill plugins): Use the code parameter — your organization's API token provided by the Voicenter back office. The requesting server's IP must be authorized in CPanel.
Push APIs (VoiceBot, Pop-Up Screen, CDR Notification, External Layer): Voicenter calls your endpoint. Configure your URL in the Voicenter CPanel.
| API | Base URL | Auth |
|---|---|---|
| Click2Call | https://api.voicenter.com/ForwardDialer/click2call.aspx | code param |
| Call Log | https://api.voicenter.com/hub/cdr/ | code param |
| Blacklist | https://api.voicenter.com/Blacklist/ | Code param |
| Extension List | https://monitor.voicenter.co.il/Comet/api/GetExtensions | code param |
| Productive Dialer | https://api.voicenter.com/ForwardDialer/Dialer/ | Code param |
| Login/Logout | https://api.voicenter.com/UserLogin/SetStatusFromAPI | Code param |
| Active Calls | https://monapisec.voicenter.co.il/comet/API/ | code param |
| Mute Recording | https://<monitorX>.voicenter.co/api/MuteUnmuteCalls | no auth param |
| Real-Time | EventsSDK (socket.io) | token / user / account |
| Lead Tracker | JS CDN script | token param |
| VoiceBot | Your endpoint (Voicenter calls you) | — |
| Pop-Up Screen | Your endpoint (Voicenter calls you) | — |
| CDR Notification | Your endpoint (Voicenter calls you) | — |
| External Layer | Your endpoint (Voicenter calls you) | — |
npx claudepluginhub voicenterteam/claude-marketplace --plugin voicenter-bot-builderOpenSIPs Skills: authoring, per-module reference, and security review for OpenSIPs SIP server configurations.
Skills for all 14 Voicenter APIs: VoiceBot, Click2Call, Pop-Up Screen, CDR Notification, External Layer, Call Log, Blacklist, Mute Recording, Extension List, Real-Time, Productive Dialer, Login/Logout, Lead Tracker, Active Calls
Live Voicenter API access via MCP server at mcp01.voicenter.co
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
v9.44.1 — Patch release for Gemini environment/version detection and qwen auth gating. Run /octo:setup.
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
UI/UX design intelligence. 67 styles, 161 palettes, 57 font pairings, 25 charts, 15 stacks (React, Next.js, Vue, Svelte, Astro, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, Nuxt, Jetpack Compose). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient.
This skill should be used when users need to generate ideas, explore creative solutions, or systematically brainstorm approaches to problems. Use when users request help with ideation, content planning, product features, marketing campaigns, strategic planning, creative writing, or any task requiring structured idea generation. The skill provides 30+ research-validated prompt patterns across 14 categories with exact templates, success metrics, and domain-specific applications.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.