Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

transcript-summarizer成绩单摘要器

Agent Skill

transcript-summarizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

256

周安装

11

GitHub Stars

2

下载量

90
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:transcript-summarizer(成绩单摘要器)
来源仓库:https://github.com/mindmorass/reflex
仓库路径:skills/transcript-summarizer
安装命令:
npx skills add https://github.com/mindmorass/reflex --skill transcript-summarizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mindmorass/reflex --skill transcript-summarizer

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Transcript Summarizer Skill

Purpose

Convert meeting transcripts into structured, actionable summaries. Supports multiple transcript formats and LLM backends.

Environment Variables

VariableDescriptionDefault
REFLEX_TRANSCRIPT_SRC_DIRDefault directory to look for transcript files.
REFLEX_TRANSCRIPT_DST_DIRRoot output directory for processed transcripts./meetings
REFLEX_TRANSCRIPT_LLMLLM provider: ollama, openai, anthropicollama
REFLEX_TRANSCRIPT_MODELModel name overrideProvider default

When to Use

  • After a meeting recording has been transcribed
  • Processing VTT/SRT captions from video calls
  • Summarizing pasted meeting notes
  • Extracting action items and decisions from long discussions

Output Structure

Each meeting produces a directory with three files:

${REFLEX_TRANSCRIPT_DST_DIR:-./meetings}/
└── <YYYY-MM-DD>/
    └── <HH-MM>/
        ├── original.txt    # Raw transcript (unmodified source)
        ├── readable.md     # Cleaned, formatted transcript
        └── summary.md      # Structured summary (stored in Qdrant)

File Descriptions

original.txt

  • Exact copy of the input transcript
  • Preserves VTT/SRT timestamps, formatting artifacts, etc.
  • Useful for debugging or re-processing with different settings

readable.md

  • Cleaned transcript with preprocessing applied (see Transcript Format Preprocessing)
  • Speaker labels normalized
  • Timestamps and artifacts removed
  • Consecutive same-speaker lines merged
  • Human-readable format for reviewing what was actually said

summary.md

  • Structured summary following the Summary Template
  • This is the file stored in Qdrant for RAG retrieval
  • Contains executive summary, decisions, action items, etc.

Directory Naming

  • Date: ISO format YYYY-MM-DD (e.g., 2024-01-15)
  • Time: 24-hour format HH-MM (e.g., 14-30 for 2:30 PM)
  • If meeting time is unknown, use 00-00 or prompt user

Workflow

  1. Copy original transcript to original.txt
  2. Clean transcript using format-specific preprocessing → readable.md
  3. Summarize cleaned transcript → summary.md
  4. Store summary.md content in Qdrant with metadata pointing to directory

Summary Template

The summarizer produces this structured output:

# Meeting Summary: <title>

**Date:** <YYYY-MM-DD>
**Attendees:** <comma-separated names>
**Duration:** <if detectable from timestamps>

## Executive Summary

<2-4 sentence overview of the meeting's purpose and outcomes>

## Key Topics

1. **<Topic>** - <1-sentence description>
2. **<Topic>** - <1-sentence description>
   (3-7 topics)

## Decisions Made

- **<Decision>**: <reasoning or context>
- **<Decision>**: <reasoning or context>

## Action Items

| Action | Owner | Deadline |
|--------|-------|----------|
| <task> | <person> | <date or TBD> |

## Open Questions

- <Question or unresolved item>
- <Question or unresolved item>

Extraction Cues

Decisions

Look for phrases indicating agreement or resolution:

  • "let's go with", "we decided", "agreed", "the plan is"
  • "we'll use", "going forward", "the approach will be"
  • Unanimous or majority agreement markers

Action Items

Look for commitment language:

  • "I'll do", "I will", "I can take that"
  • "can you", "please handle", "your task is"
  • "@name" followed by a task
  • "by Friday", "next week", "before the release"

Open Questions

Look for unresolved items:

  • "TBD", "to be determined", "parking lot"
  • "we need to figure out", "open question"
  • "let's revisit", "follow up on"
  • Questions without clear answers in the transcript

Attendees

  • Speaker labels (e.g., "John:", "Sarah Smith:")
  • "attendees:", "participants:", "present:"
  • Names mentioned in greetings ("hi John", "thanks Sarah")

Transcript Format Preprocessing

VTT (WebVTT)

  • Strip WEBVTT header and metadata lines
  • Remove timestamp lines (00:00:00.000 --> 00:00:05.000)
  • Remove position/alignment tags (<c>, align:, position:)
  • Deduplicate rolling captions (many VTT files repeat lines with slight timestamp shifts)
  • Merge consecutive lines from same speaker

SRT (SubRip)

  • Strip sequence numbers (standalone integers)
  • Remove timestamp lines (00:00:00,000 --> 00:00:05,000)
  • Remove blank separator lines
  • Merge consecutive same-speaker lines

Plain Text

  • Use as-is
  • Detect speaker labels: Name:, [Name], SPEAKER_01:
  • Normalize speaker label formats for consistency

DOCX

  • Extract paragraph text via python-docx
  • Preserve heading structure
  • Strip formatting artifacts

Google Doc

  • Fetched via Google Workspace MCP as plain text
  • Treat same as plain text after retrieval

Long Transcript Strategy

Threshold: 30,000 words

Single Pass (<30K words)

Send entire cleaned transcript to LLM with the system prompt and template.

Two-Pass Chunked (>30K words)

  1. Chunk: Split at ~20,000 word boundaries, preferring natural breaks (speaker changes, topic shifts, timestamp gaps)
  2. Extract: Summarize each chunk independently, extracting topics, decisions, action items, and questions
  3. Synthesize: Combine chunk summaries into a single coherent summary, deduplicating items and merging topics

Qdrant Storage Schema

Always store summaries in Qdrant for RAG retrieval. The full summary content must be stored in the information field to enable semantic search across meeting contents.

Information Field (embedded content): Store the complete generated summary markdown, including:

  • Executive summary
  • Key topics with descriptions
  • Decisions with reasoning
  • Action items (as formatted text)
  • Open questions

This enables queries like "what did we decide about X?" or "who is responsible for Y?" to find relevant meetings.

Metadata Fields:

source: "meeting_transcript"
content_type: "meeting_summary"
harvested_at: "<ISO 8601 timestamp>"

# Meeting context
meeting_title: "<title>"
meeting_date: "<YYYY-MM-DD>"
meeting_time: "<HH-MM>"
attendees: "<comma-separated names>"
output_dir: "<path to YYYY-MM-DD/HH-MM directory>"
source_format: "<vtt|srt|txt|docx|gdoc|pasted>"

# Extracted counts (for filtering)
action_item_count: <integer>
decision_count: <integer>
topics: "<comma-separated key topics>"

# Classification
category: "business"
type: "meeting_summary"
confidence: "high"

LLM System Prompt

The summarize.py script uses this system prompt:

You are a meeting transcript summarizer. Your job is to extract structured
information from meeting transcripts.

Given a transcript, produce a summary with these sections:
- Executive Summary (2-4 sentences)
- Key Topics (3-7 bullet points)
- Decisions Made (with reasoning)
- Action Items (action, owner, deadline as table rows)
- Open Questions (unresolved items)

Rules:
- Only include information explicitly stated in the transcript
- If attendees are not clear, note "Attendees not identified"
- If no decisions were made, state "No explicit decisions recorded"
- Mark deadlines as "TBD" when not specified
- Keep the executive summary factual, not interpretive

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.12%
按下载量换算33

Claude

28.58%
按下载量换算26

Cursor

19.18%
按下载量换算17

Gemini CLI

8.64%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills