Best for
- turning a completed CALL-E call transcript into a one-page post-call brief
- extracting action items with owners and due dates from a call
- surfacing caller sentiment so a follow-up can be triaged correctly
CALLE-AI/awesome-phone-call-agents/skills/call-summarizer/SKILL.md
Turn a finished CALL-E phone-call transcript into a structured post-call brief with a one-line outcome, a masked summary, extracted action items with owners and due dates, caller sentiment, and a redacted caller fingerprint. Use after any CALL-E call when an agent or operator needs an actionable, reviewable record of what was said without re-reading the whole transcript or re-playing the recording.
Decision brief
Use this skill after a CALL-E call has completed and the agent needs to turn the returned transcript into a compact, actionable post-call record.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/CALLE-AI/awesome-phone-call-agents --skill "skills/call-summarizer"Inspect the Agent Skill "call-summarizer" from https://github.com/CALLE-AI/awesome-phone-call-agents/blob/a34d6b803ee2f1b80446056dcef38911882726e5/skills/call-summarizer/SKILL.md at commit a34d6b803ee2f1b80446056dcef38911882726e5. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Required: a CALL-E call result containing a transcript field (the full dialogue turns between the agent and the callee). The transcript may be plain text or a list of turns; both are handled.
Return the brief to the operator or the calling agent. The skill does not execute any action item; it only reports them. Routing decisions (escalate, follow up, close the ticket) stay with the operator or the host agent.
Review the “Quick Start” section in the pinned source before continuing.
turning a completed CALL-E call transcript into a one-page post-call brief
Do not use this skill to:
Permission review
The documentation asks the agent to run terminal commands or scripts.
python3 scripts/summarize_call.py --transcript path/to/transcript.json --out brief.jsonThe documentation asks the agent to run terminal commands or scripts.
python3 scripts/summarize_call.py \Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 66 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Use this skill after a CALL-E call has completed and the agent needs to turn the returned transcript into a compact, actionable post-call record.
call-summarizer is a post-call analysis skill. It takes a CALL-E call result
that already contains a transcript, runs locally with no additional phone calls
and no network access, and emits a single structured brief: a one-line outcome,
a masked summary of the conversation, the action items with owners and due
dates, the caller sentiment, and a redacted caller fingerprint for dedup.
It is a good fit for CALL-E's design: the hard part (the call) is already done, and the remaining work (turning a long transcript into something an agent can act on) is pure text analysis that should not require a second provider or a paid summarization API.
Use this skill for:
Do not use this skill to:
Required: a CALL-E call result containing a transcript field (the full
dialogue turns between the agent and the callee). The transcript may be plain
text or a list of turns; both are handled.
Confirm with the operator that this transcript belongs to a call they authorized and that they want a post-call brief generated. Never run this skill on a transcript whose origin is unknown.
Run scripts/summarize_call.py on the transcript. By default it reads from a
file path and prints the brief to stdout; it makes no network calls and places
no calls.
python3 scripts/summarize_call.py --transcript path/to/transcript.json --out brief.json
The script performs:
unknown.masked: "partial" with a
masking_scope field documenting exactly which PII classes are tokenized;
ordinary personal names without an introduction cue are NOT redacted (the
skill uses no NER model and the contract is honest about this boundary).owner: unknown rather than guessing.positive, neutral, negative, mixed)
with a short justification span from the transcript. It never reports a
sentiment the transcript does not support.caller_id field if
provided). The call_id is deliberately excluded so the same caller
produces the same fingerprint across calls, enabling de-duplication without
storing PII.Run scripts/validate_brief.py to confirm the brief is well-formed before any
downstream system consumes it. It checks that every action item has an owner,
that masking has no residual raw phone numbers, emails, account identifiers,
or personal names, and that the outcome line is non-empty and grounded in the
transcript.
Return the brief to the operator or the calling agent. The skill does not execute any action item; it only reports them. Routing decisions (escalate, follow up, close the ticket) stay with the operator or the host agent.
The brief is a single JSON object:
{
"outcome": "Appointment confirmed for Tuesday 10:00.",
"summary": "The callee confirmed the appointment and asked for a reminder the day before.",
"actions": [
{
"owner": "agent",
"verb": "send reminder",
"due": "2026-09-15",
"source_span": "I will send a reminder the day before."
}
],
"sentiment": {
"label": "positive",
"justification": "Callee confirmed without hesitation."
},
"caller_fingerprint": "sha256:9f2c...",
"masked": "partial",
"masking_scope": "phone_numbers emails account_ids title_prefixed_names cue_introduced_names",
"masking_note": "Structured PII and cued personal names are tokenized. Ordinary uncued names are NOT redacted."
}
Read references/safety.md for the full safety contract.
masked field is "partial" with a
masking_scope documenting the boundary; ordinary uncued names are NOT
redacted (no NER model).category: sensitive and routed to a
human rather than auto-dispatched.outcome: unknown and an empty actions list. It never invents
a plausible outcome.pip install is required for the default (no-call) path.call-reminder or verify-by-phone skills for placing calls.# Dry run on the bundled example transcript (no calls, no network).
python3 scripts/summarize_call.py \
--transcript references/example-transcript.json \
--out /tmp/brief.json
# Validate the brief.
python3 scripts/validate_brief.py --brief /tmp/brief.json
See references/examples.md for worked examples on different call types
(confirmation, reschedule, no-answer, voicemail) and the expected brief for
each.
Frequently asked questions
Use this skill after a CALL-E call has completed and the agent needs to turn the returned transcript into a compact, actionable post-call record.
The source record exposes this install command: npx skills add https://github.com/CALLE-AI/awesome-phone-call-agents --skill "skills/call-summarizer". Inspect the command and pinned source before running it.
Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
garrytan/gbrain
End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
prowler-cloud/prowler
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance