callback

callback is a skill for Claude Code from theYahia/WWmcp. It costs 24 tokens per session (610 once invoked), scanned A, original, MIT.

A callback workflow through Mango Office, a business phone service. It can call a customer, find the resulting recording, and send an SMS if the customer does not answer.

In plain words
What is it for?
Use it to place a callback, check whether the conversation happened, retrieve its recording, and send a short text message after an unanswered call.
Why use it?
It keeps the call outcome, recording, and missed-call message together instead of requiring separate phone-system steps. It also helps ensure the call uses the correct employee extension.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it to place a callback, check whether the conversation happened, retrieve its recording, and send a short text message after an unanswered call.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/theyahia/wwmcp/callback
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add theYahia/WWmcp --skill callback
Clone the repo
git clone --depth 1 https://github.com/theYahia/WWmcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for callback

README.md
[![agentmods](https://agentmods.dev/badge/skills/theyahia/wwmcp/callback.svg)](https://agentmods.dev/skills/theyahia/wwmcp/callback)
Your own site
<a href="https://agentmods.dev/skills/theyahia/wwmcp/callback"><img src="https://agentmods.dev/badge/skills/theyahia/wwmcp/callback.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 610 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.00610
Opus 5 $0.00012 $0.00305
Sonnet 5 $0.00005 $0.00122
Haiku 4.5 $0.00002 $0.00061

Measured yesterday against content hash 74bdb7ae6701, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

callback scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

servers/mango-office/.claude/skills/callback/SKILL.md · 56 lines

What it actually says

/callback — Обратный звонок и разбор разговора

Алгоритм

  1. Уточни, с какого внутреннего номера звоним. Если пользователь не знает — вызови get_users с limit и покажи список сотрудников с их внутренними номерами.
  2. Вызови make_call с from (внутренний номер или SIP-аккаунт инициатора), to (номер назначения в E.164 или внутренний) и опционально line — это CallerID, который увидит клиент. Сначала поднимется трубка сотрудника, потом пойдёт вызов клиенту.
  3. После разговора вызови get_calls с date_from и date_to за последние минуты, найди запись по номеру клиента и возьми из неё recording_id.
  4. Вызови get_recording с recording_id и action = play (ссылка на прослушивание) или download (скачать файл).
  5. Если клиент не ответил — вызови send_sms с from_extension (внутренний номер отправителя), to_number и text (до 1000 символов). Формулируй коротко: кто звонил, по какому вопросу, как связаться.
  6. Отчитайся: состоялся ли разговор, есть ли запись, ушла ли SMS.

Формат ответа

## Обратный звонок

**От**: 101 (Иванов И.)
**Кому**: +79121234567
**Линия**: +74951234567
**Результат**: разговор состоялся, 3 мин 42 с

**Запись**: https://app.mango-office.ru/... (ссылка временная)

SMS не отправлялась — клиент ответил.

Важно

  • make_call инициирует звонок физически. Не вызывай его «для проверки» — у сотрудника зазвонит телефон.
  • Запись появляется не мгновенно: сразу после разговора get_calls может ещё не отдать recording_id. Повтори через минуту, прежде чем говорить, что записи нет.
  • Ссылка из get_recording с action = play живёт ограниченное время. Не сохраняй её как постоянную.
  • Записи разговоров — персональные данные. Не пересказывай содержимое без запроса.

Примеры

/callback 101 +79121234567
/callback 101 +79121234567 "Звонили по вашей заявке, наберите нас"
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 56 lines · 24 tokens per session scan A 74bdb7ae6701

Subscribe to this mod's changes

callback is a skill published in the GitHub repository theYahia/WWmcp (28 stars, last pushed yesterday), licensed MIT. It adds 24 tokens to every session and 610 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-06.

Related

Other skills, from other repositories