delive-transcript-analyzer

delive-transcript-analyzer is a skill for Claude Code, Codex from XimilalaXiang/DeLive. It costs 98 tokens per session (1,326 once invoked), scanned A, original, Apache-2.0.

A tool for searching and working with speech-to-text sessions recorded by DeLive, a desktop app that turns live speech into written transcripts.

In plain words
What is it for?
It helps retrieve transcript sessions, search their contents, read corrected text, and use available summaries, mind maps, or question-and-answer results.
Why use it?
It removes the need to manually find, read, correct, and summarize long transcription sessions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit It helps retrieve transcript sessions, search their contents, read corrected text, and use available summaries, mind maps, or question-and-answer results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ximilalaxiang/delive/delive-transcript-analyzer
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 XimilalaXiang/DeLive --skill delive-transcript-analyzer
Clone the repo
git clone --depth 1 https://github.com/XimilalaXiang/DeLive

Made for: Claude Code, Codex.

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 delive-transcript-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/ximilalaxiang/delive/delive-transcript-analyzer.svg)](https://agentmods.dev/skills/ximilalaxiang/delive/delive-transcript-analyzer)
Your own site
<a href="https://agentmods.dev/skills/ximilalaxiang/delive/delive-transcript-analyzer"><img src="https://agentmods.dev/badge/skills/ximilalaxiang/delive/delive-transcript-analyzer.svg" alt="Measured on agentmods" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,326 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00098 $0.01326
Opus 5 $0.00049 $0.00663
Sonnet 5 $0.00020 $0.00265
Haiku 4.5 $0.00010 $0.00133

Measured 8d ago against content hash 66dfc937b465, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

delive-transcript-analyzer 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 8d ago.

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.

skills/delive-transcript-analyzer/SKILL.md · 141 lines

How it starts

The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DeLive Transcript Analyzer

Analyze and extract insights from real-time transcription sessions captured by DeLive, a desktop app for live speech-to-text.

Prerequisites

  • DeLive must be running locally (REST API at http://localhost:23456)
  • For MCP integration, the DeLive MCP server must be configured (see Setup below)

Setup

Option A: MCP Server (recommended for Claude Desktop / Claude Code)

The DeLive MCP server provides direct tool access. Add to your MCP config:

{
  "mcpServers": {
    "delive": {
      "command": "node",
      "args": ["<PATH_TO_DELIVE>/mcp/delive-mcp-server.js"]
    }
  }
}

Option B: REST API (for any client)

DeLive exposes a local REST API when running:

  • Base URL: http://localhost:23456/api/v1/
  • WebSocket live stream: ws://localhost:23456/ws/live

Available Tools (via MCP)

Tool Purpose
search_transcripts Find sessions by keyword in title or transcript content
get_session Full session with transcript, corrected transcript, AI summary, mind map, Q&A
get_session_transcript Transcript text + corrected transcript (when available)
get_session_summary AI summary, action items, keywords, mind map
get_recording_status Check if DeLive is currently recording
list_topics List topic categories for organizing sessions
list_tags List all tags used to label sessions

Available Resources (via MCP)

Resource URI Description
delive://sessions/recent Most recent 10 sessions (metadata)
delive://status Current app and recording status

Workflow Patterns

Pattern 1: Meeting Summary to Email Draft

  1. Search for the relevant meeting: search_transcripts("weekly standup")
  2. Get the full session: get_session("<session_id>")
  3. Use the transcript and AI summary to draft a follow-up email

Pattern 2: Lecture Notes to Study Guide

  1. Find the lecture: search_transcripts("machine learning lecture")
  2. Get the transcript: get_session_transcript("<session_id>")
  3. Extract key concepts, create flashcards, or generate a structured study guide

Read the full file on GitHub · 141 lines

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. 8d ago First seen · 141 lines · 98 tokens per session scan A 66dfc937b465

Subscribe to this mod's changes

delive-transcript-analyzer is a skill published in the GitHub repository XimilalaXiang/DeLive (267 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 98 tokens to every session and 1,326 once invoked, about $0.0005 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-08-30.

Related

Other skills, from other repositories

whisper

OpenAI's general-purpose speech recognition model. Supports 99 languages, transcription, translation to English, and language identification. Six model sizes from tiny (39M params) to large (1550M params). Use for speech-to-text, podcast transcription, or multilingual audio processing. Best for robust, multilingual…

davila7/claude-code-templates · 67 tokens

yw-transcribe

A workflow for transcribing one local audio or video file into a traceable Chinese or mixed Chinese-English transcript, with optional timestamps and subtitle files.

yuwen-cool/yw-transcribe · 131 tokens

whisper

OpenAI's general-purpose speech recognition model. Supports 99 languages, transcription, translation to English, and language identification. Six model sizes from tiny (39M params) to large (1550M params). Use for speech-to-text, podcast transcription, or multilingual audio processing. Best for robust, multilingual…

OpenLAIR/dr-claw · 67 tokens

whisper

OpenAI's general-purpose speech recognition model. Supports 99 languages, transcription, translation to English, and language identification. Six model sizes from tiny (39M params) to large (1550M params). Use for speech-to-text, podcast transcription, or multilingual audio processing. Best for robust, multilingual…

synthetic-sciences/openscience · 67 tokens

dialogue-transcriber

Transcribe audio or video of conversations — interviews, panel discussions, meetings, podcasts, YouTube videos — and identify who said what (speaker diarization) using the transcriber CLI. Use this skill whenever the user wants a transcript of multi-speaker audio, asks "who said what", wants speakers labeled or…

Novia-RDI-Seafaring/transcriber · 147 tokens

audio-transcriber

Transform audio recordings into professional Markdown documentation with intelligent summaries using LLM integration.

benjaminasterA/antigravity-awesome-skills · 18 tokens