From Ringee
Manage Ringee call sessions via MCP: create, inspect, update, and revoke magic-link dialing queues with shareable join URLs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ringee:ringee-sessionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A **call session** is a queue of contacts/numbers plus a **magic link**
A call session is a queue of contacts/numbers plus a magic link
(joinUrl) that lets the user — or a collaborator, without logging in — dial
through them and record outcomes. Treat sessions as important operational actions.
contacts queue
(prefer contactId per entry; otherwise an E.164 phoneNumber). Optional:
title, campaignId, expiresInMinutes (default 60), maxCalls. Returns
callSessionId + joinUrl — share the joinUrl EXACTLY; the token is
embedded once and cannot be re-fetched.get_call_session — status, contactsCount, callsCompleted,
expiresAt, joinUrlAvailable (never re-exposes the token).update_call_session — change title, swap/detach
campaignId (pass null to detach), extend expiresInMinutes, or replace the
queue (only before the first call). Confirm before changing a live session.delete_call_session — require clear confirmation;
explain the magic link stops working immediately for everyone (history kept).Before creating, ensure each contact exists with a valid E.164 phone. Never
re-share an expired or revoked link — create a new session. Claude Code CLI
fallback: ringee sessions create|get|update|revoke.
npx claudepluginhub ringee-io/ringee-app --plugin ringeeGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.