Agent skill

voice-call-report

Generate voice call reports showing transcriptions, scores, and score deltas as markdown files

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill voice-call-report --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/voice-call-report/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# voice-call-report Skill ## Purpose Generate formatted markdown reports for voice calls showing: - Full transcription with speaker labels - Conflict health per segment - Call score after each segment - Score delta showing impact of each statement **Use this skill when:** - User asks to see a voice call report - User wants to analyze call scoring trajectory - User asks "show me the impact of each message" - User requests a transcript with scores --- ## Step 1: Get the Call SID You need a `call_sid` to generate the report. Use the `sql-reader` skill to find recent calls: ```bash arsenal/dot-claude/skills/sql-reader/connect.sh " SELECT DISTINCT m.provider_data->>'call_sid' as call_sid, MIN(m.created_at) as call_started, COUNT(*) as segments FROM message m WHERE m.provider_data->>'type' = 'voice_transcript' AND m.provider_data->>'call_sid' IS NOT NULL GROUP BY m.provider_data->>'call_sid' ORDER BY call_started DESC LIMIT 10; " ``` --- ## Step 2: Query Call Data Use `sql-reader` to get the call transcript with scores: ```bash arsenal/dot-claude/skills/sql-reader/connect.sh " SELECT (m.provider_data->>'segment_number')::int as seg, COALESCE(m.provider_data->>'speaker', 'Unknown') as spe

What's inside
Steps it walks through
  1. Purpose
  2. Step 1: Get the Call SID
  3. Step 2: Query Call Data
  4. Step 3: Format as Markdown Report
  5. Score Delta Calculation
  6. Output Location
  7. Common Violations
  8. Troubleshooting
  9. Success Criteria
Ships with 1 file
  • metadata.json
Commands it runs
arsenal/dot-claude/skills/sql-reader/connect.sh "
SELECT DISTINCT
FROM message m
WHERE m.provider_data->>'type' = 'voice_transcript'
AND m.provider_data->>'call_sid' IS NOT NULL
GROUP BY m.provider_data->>'call_sid'
ORDER BY call_started DESC
LIMIT 10;
SELECT
m.content as transcript
More from claude-skill-registry
All skills →
About this skill
What does the voice-call-report skill do?

Generate voice call reports showing transcriptions, scores, and score deltas as markdown files

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill voice-call-report --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going