Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

process-meeting-transcript处理会议记录

Agent Skill

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

总安装

897

周安装

37

GitHub Stars

50

下载量

293
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dgalarza/claude-code-workflows --skill process-meeting-transcript

简介

用于查找、检索和筛选相关信息,适合根据关键词快速定位候选结果。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中需要线索化搜索的任务场景。
  • 可结合来源仓库和原始 README 进一步核验具体用法和功能边界。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 安装方式:通过 GitHub 仓库安装,支持 Codex、Claude、Cursor、Gemini CLI。

SKILL.md

Process Meeting Transcript

Overview

Process raw meeting transcripts into well-structured Obsidian notes with YAML frontmatter, extracted action items, meeting summary, and properly formatted transcript sections.

When to Use This Skill

Use this skill when:

  • User provides a raw meeting transcript (typically from Granola)
  • User asks to "process a meeting transcript" or "format meeting notes"
  • User points to a file containing an unprocessed transcript
  • User pastes transcript content directly into the conversation

Workflow

Step 1: Read the Transcript

If the transcript is in a file, read the entire contents. If the user pasted the transcript directly, use that content.

Step 2: Extract Action Items

Carefully review the entire transcript to identify all action items, tasks, and commitments. Look for:

  • Explicit commitments: "I'll do X", "Alex will review Y"
  • Assigned tasks: "Nathan and Damian should schedule..."
  • Follow-up items: "We need to...", "Let's make sure to..."
  • Decisions requiring action: "We should deploy X before Y"

Format action items as:

  • Bulleted list under # Action Items heading
  • Use bold for person names when specific people are assigned
  • Include context for what needs to be done and why
  • Order by priority/importance when evident from discussion

Example format:

# Action Items

- **Alice & Bob**: Review the new feature implementation next week and provide feedback
- **Charlie & Dana**: Schedule a knowledge transfer session on the payment service architecture
- **Eve**: Discuss deployment timeline with the infrastructure team

Step 3: Create Meeting Summary

Write a comprehensive but concise summary that captures:

  • Main topics discussed
  • Key decisions made
  • Technical architecture or approach agreed upon
  • Timeline and next steps
  • Important context or constraints

Structure the summary with:

  • Opening paragraph: High-level overview of what was discussed and main outcome
  • Subsections (using ## or ### headings) for major topics
  • Use bold for important terms, decisions, or concepts
  • Include enough detail that someone who wasn't in the meeting can understand what happened

Keep summaries factual and focused on outcomes, decisions, and technical details.

Step 4: Format the Transcript

Place the raw transcript under a # Transcript heading. Preserve the original formatting but ensure it's readable. If the transcript includes metadata (meeting title, date, participants) at the top, keep that information.

Step 5: Add Frontmatter

Use the add-frontmatter slash command to generate appropriate YAML frontmatter for the note. The frontmatter should include:

  • title: Meeting title or topic
  • date: Meeting date (YYYY-MM-DD format)
  • type: Set to "meeting"
  • attendees: Array of participant names
  • project: Related project if applicable
  • tags: Relevant tags (meeting, project tags, topic tags)
  • status: Set to "complete"
  • key_topics: Array of main discussion topics
  • action_items: Array of action items (duplicate from Action Items section for searchability)
  • decisions: Array of key decisions made
  • related_links: Any links mentioned (Notion docs, Linear issues, etc.)

Invoke the add-frontmatter command by providing it with context about the meeting.

Step 6: Assemble the Final Note

Combine all sections in this order:

  1. YAML frontmatter (from add-frontmatter command)
  2. Links section (if any Notion/Linear/GitHub links were mentioned)
  3. # Action Items section
  4. # Summary section
  5. # Transcript section

Output Format

The final note should follow this structure:

---
title: Meeting Title
date: YYYY-MM-DD
type: meeting
attendees: ['Person 1', 'Person 2', ...]
project: Project Name
tags: [meeting, relevant, tags]
status: complete
key_topics:
  - Topic 1
  - Topic 2
action_items:
  - 'Action item 1'
  - 'Action item 2'
decisions:
  - Decision 1
  - Decision 2
related_links:
  - 'Link description: URL'
---

**Agenda** https://link-to-agenda-if-available

# Action Items

- **Person**: Action item description
- **Person**: Another action item

# Summary

Opening paragraph with high-level overview.

## Key Decisions/Topics

Details about decisions and topics discussed...

# Transcript

[Raw transcript content]

Tips for Quality Output

  1. Be thorough with action items: Don't miss commitments buried in discussion
  2. Capture decisions: Explicit decisions are critical for reference
  3. Include technical details: Preserve architecture discussions, API names, service names
  4. Maintain context: Someone reading later should understand what was decided and why
  5. Preserve links: Notion docs, Linear issues, GitHub PRs mentioned in meetings are important
  6. Use consistent formatting: Follow the example structure for all transcripts

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

25.92%
按下载量换算76

OpenCode

26.03%
按下载量换算76

windsurf

18.27%
按下载量换算54

Codex

13.81%
按下载量换算40

Antigravity

7.07%
按下载量换算21

Gemini CLI

3.78%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills