Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计提醒

meeting-minutes会议记录

Agent Skill

meeting-minutes 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

222

周安装

9

GitHub Stars

4

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/apocohq/skills --skill meeting-minutes

简介

会议转录内容提炼工具,聚焦决策要点、行动项和争议点,剔除冗余对话和寒暄内容。

  • 适合生成可用于后续 LLM 上下文的紧凑摘要,每 token 都承载实质性信息价值。
  • 优先保留直接引语和结论性陈述,移除解释性 scaffolding 和重复性表达结构。
  • 处理敏感会议记录时应注意隐私保护,避免泄露商业机密或个人身份信息。
  • meeting-minutes 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Extract substantive content from a meeting transcript, filtering out noise and producing an LLM-context-efficient representation.

Goal

Produce the most LLM-context-efficient representation of the meeting. The output will be used as context in future LLM conversations, so every token must earn its place. Aggressively reduce token count while preserving all substantive content (decisions, reasoning, disagreements, action items). Prefer concise direct quotes over full verbatim exchanges when the meaning is preserved. Remove conversational scaffolding ("So what I'm trying to say is...", "That's a great point, and to add to that...") and keep only the payload.

Arguments

  • <path> (optional) — A .vtt file or a folder containing .vtt files. If omitted, defaults to ~/Downloads/.
  • --latest (optional) — Automatically pick the most recent .vtt file instead of presenting a choice.

Context management

Meeting transcripts are large (a 1-hour meeting is ~70K tokens). To avoid accumulating multiple copies of the transcript in the conversation context, this skill uses temp files and subagents as a pipeline:

  1. The main agent handles Steps 0, 1, and 5 (resolve source, strip VTT via Python script, clean up temp files). It never reads the transcript content.
  2. A subagent handles Step 2 (clean + filter in original language). Reads meetings/tmp/meeting-stripped.txt, writes meetings/tmp/meeting-cleaned.txt. Context discarded.
  3. A subagent handles Step 3 (translate to English). Reads meetings/tmp/meeting-cleaned.txt, writes meetings/tmp/meeting-translated.txt. Context discarded. Skipped if already English.
  4. A subagent handles Step 4 (extract + structure + save). Reads meetings/tmp/meeting-translated.txt, writes final output directly to meetings/. Context discarded.

Each subagent starts with a fresh context containing only its task instructions and the current-stage file. No prior transcript versions pollute its context.

Execution protocol

You MUST follow these steps strictly in order. After completing each step, validate that all requirements of that step are met. Only after validation, check off the step and proceed to the next one. Do not skip ahead.

Use the TodoWrite tool to create this checklist at the start of execution:

  • Step 0: Resolve the transcript source
  • Step 1: Strip VTT metadata (Python script)
  • Step 2: Clean and filter (subagent)
  • Step 3: Translate to English (subagent)
  • Step 4: Extract, structure, and save (subagent)
  • Step 5: Clean up

After completing each step, mark it as done in the todo list before moving on.

Steps

Step 0: Resolve the transcript source

Determine the target folder and file. Follow the first matching rule:

  1. <path> is a .vtt file — Use that file directly. Proceed to Step 1.
  2. <path> is a folder + --latest — Run ls -t <folder>/*.vtt | head -1 via Bash to pick the most recent .vtt file. If none exist, stop and tell the user.
  3. <path> is a folder (no --latest) — Run ls -t <folder>/*.vtt | head -3 via Bash. Present the results as a numbered list (newest first) and ask the user to choose. If none exist, stop and tell the user.
  4. No <path> + --latest — Same as rule 2, but use ~/Downloads/ as the folder.
  5. No <path>, no --latest — Same as rule 3, but use ~/Downloads/ as the folder.
  6. User provided pasted text — Use that directly.
  7. User provided a URL — Download the file using curl -sL <url> -o meetings/tmp/transcript.vtt via Bash. If the download fails, stop and tell the user.

After resolving, confirm the file name to the user before proceeding.

Step 1: Strip VTT metadata (Python script)

If the resolved source is a .vtt file, run the stripping script via Bash. Use absolute paths for both the script and the output to avoid working-directory issues:

PROJECT_ROOT="$(pwd)" && SKILL_SCRIPT="$(ls "${PROJECT_ROOT}/.claude/skills/meeting-minutes/scripts/main.py" "${HOME}/.claude/skills/meeting-minutes/scripts/main.py" 2>/dev/null | head -1)" && uv run "$SKILL_SCRIPT" "<input>" "${PROJECT_ROOT}/meetings/tmp/meeting-stripped.txt"

Replace <input> with the resolved file path. Quote it and use ${HOME} notation to handle filenames with spaces (e.g. "${HOME}/Downloads/my meeting.vtt").

If the source is pasted text or a non-VTT file, write it directly to meetings/tmp/meeting-stripped.txt (under the project root) using the Write tool.

The script removes VTT headers, sequence numbers, timestamps, and HTML tags, keeping only speaker labels and spoken text. Confirm the line count output to the user and proceed.

Step 2: Clean and filter (subagent)

Launch a subagent using the Agent tool with model: "sonnet". The subagent reads meetings/tmp/meeting-stripped.txt, cleans and filters it, and writes the result to meetings/tmp/meeting-cleaned.txt. Wait for the subagent to complete before proceeding.

Subagent prompt (pass this entire block):

Read the file meetings/tmp/meeting-stripped.txt. This is a meeting transcript with speaker-attributed speech (VTT metadata already removed). Identify the language from the first few exchanges. State it briefly. Produce a cleaned and filtered version of the transcript in the same language as the original. Do NOT translate. Apply all of the following simultaneously in a single output pass. Do NOT output intermediate versions. Fix: - Misspelled words and mangled diacritics (e.g., "ceskeho" -> "českého", "nastroj" -> "nástroj", "je to 1" -> "je to jedno") - Broken proper nouns garbled by auto-captioning (e.g. VIBMC -> v IBMce -> v IBM) - Homophones and misheard words (use surrounding context to pick the correct word) - Sentence boundaries (restore natural structure where auto-captions broke it) - Speaker attribution (normalize to consistent names throughout) Drop entirely: - Greetings, goodbyes, "how was your weekend" chitchat - Off-topic tangents unrelated to any work item - Filler ("um", "uh", "you know", "like I said", and source-language equivalents) - Politically incorrect, offensive, or inappropriate language - Personal, sensitive, or political opinions not relevant to the problem at hand - Repeated statements that add no new information (keep the clearest version) - Conversational scaffolding ("So what I'm trying to say is...", "That's a great point, and to add to that...") Keep everything else, especially: decisions, technical debates, action items, proposals, disagreements, status updates, blockers, reasoning, and any discussion that moves work forward. When in doubt, keep it. If you are unsure about some corrections, proceed with the most likely interpretation. Write the result to meetings/tmp/meeting-cleaned.txt. Output only the processed transcript, no commentary.

After the subagent completes, confirm success and the detected language to the user and proceed.

Step 3: Translate to English (subagent)

If the transcript is already in English, copy meetings/tmp/meeting-cleaned.txt to meetings/tmp/meeting-translated.txt via Bash and skip to Step 4.

Otherwise, launch a subagent using the Agent tool with model: "sonnet". The subagent reads meetings/tmp/meeting-cleaned.txt and writes the English translation to meetings/tmp/meeting-translated.txt. Wait for the subagent to complete before proceeding.

Subagent prompt (pass this entire block):

Read the file meetings/tmp/meeting-cleaned.txt. This is a cleaned, filtered meeting transcript. Translate it to fluent English. Preserve: speaker attribution, tone and register (casual stays casual, technical stays technical), disagreements, hedging, uncertainty ("I'm not sure, but...", "maybe we should..."), technical terms and acronyms standard in English (e.g., "Kubernetes", "API", "SDK"). Adapt: idioms and expressions to natural English equivalents. Follow English word order, not source-language syntax. Do NOT: summarize, editorialize, add meaning that wasn't in the original, formalize casual speech, or casualize formal speech. If a term has no clean English equivalent, keep the original in parentheses: "the deployment target (nasazovaci cil)". Write the result to meetings/tmp/meeting-translated.txt. Output only the translated transcript, no commentary.

After the subagent completes, confirm success to the user and proceed.

Step 4: Extract, structure, and save (subagent)

Launch a subagent using the Agent tool with model: "sonnet". The subagent will read from meetings/tmp/meeting-translated.txt, produce the structured extract, and save it directly to meetings/. Wait for the subagent to complete before proceeding.

Subagent prompt (pass this entire block):

Read the file meetings/tmp/meeting-translated.txt. This is a cleaned, filtered, English-language meeting transcript. Extract and structure it into the following format. Every section is mandatory, but use "None identified." if a section is empty. `` # Meeting Extract ## Key Decisions - [Decision 1] - [Decision 2] ## Action Items - [ ] [Owner]: [Action item] ## Discussion ### [Topic 1 title] [Preserved discussion in the speakers' own words. Use direct quotes attributed to speakers. Keep disagreements, nuance, and reasoning as spoken.] ### [Topic 2 title] [Same approach as for Topic 1] ## Open Questions - [Unresolved question raised during the meeting] ` **Rules:** - **Direct quotes for key moments.** Use verbatim quotes for decisions, disagreements, strong opinions, and novel insights. These are the highest-value tokens. - **Concise paraphrasing for context.** Background discussion, status updates, and explanations of known concepts can be condensed. Attribute them ("John noted that...") but don't quote word-for-word. - **Attribute statements.** Use speaker names/identifiers from the transcript. - **Keep disagreements verbatim.** If people disagree, preserve both sides as direct quotes. The exact words matter here. - **Preserve reasoning chains.** Keep supporting arguments, objections, counter-arguments, and examples. Condense where possible but don't lose the logic. - **No editorializing.** Do not add opinions, assessments, or recommendations. Report what was said. - **Collapse repetition.** If the same point is made multiple times, keep the clearest version only. Write the structured extract to meetings/YYYY-MM-DD-meeting-<short-slug>.md where YYYY-MM-DD is today's date and <short-slug>` is a 2-3 word kebab-case summary of the main meeting topic. Do not include any commentary, just the formatted extract.

After the subagent completes, tell the user the output file path and proceed to cleanup.

Step 5: Clean up

Remove the temp directory by running rm -rf meetings/tmp/ via Bash.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.06%
按下载量换算25

Claude

30.34%
按下载量换算21

Cursor

15.72%
按下载量换算11

Gemini CLI

9.31%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills