voice-call-report
Generate voice call reports showing transcriptions, scores, and score deltas as markdown files
Profile →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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Purpose
- Step 1: Get the Call SID
- Step 2: Query Call Data
- Step 3: Format as Markdown Report
- Score Delta Calculation
- Output Location
- Common Violations
- Troubleshooting
- Success Criteria
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
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.