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

process-meeting-notes处理会议记录

Agent Skill

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

总安装

612

周安装

26

GitHub Stars

1

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/skinnyandbald/fish-skills --skill process-meeting-notes

简介

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

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

SKILL.md

<essential_principles>

How This Skill Works

This skill processes meeting transcripts from Fireflies with mandatory full transcript analysis — not just the Fireflies automated summary. It extracts action items from ALL participants, routes GitHub issues to the correct repository via smart detection, and runs a deterministic verification script to ensure no items are dropped. It works with any repository you're currently in.

Principle 1: Mandatory Full Transcript Analysis

Always fetch meeting data via Fireflies MCP tools:

  • mcp__fireflies__fireflies_search to find meetings
  • mcp__fireflies__fireflies_get_summary for action items, keywords, overview
  • mcp__fireflies__fireflies_get_transcript — ALWAYS fetch the full transcript; it is mandatory, not optional

The Fireflies automated summary is a starting point. A subagent must read the entire transcript to extract additional action items that Fireflies missed. The verification script confirms no items were dropped.

Principle 2: Dynamic Repository Context

At workflow start, detect the current repository:

  • Repository owner and name via gh repo view
  • Available labels via gh label list
  • Available milestones via GitHub API
  • GitHub Projects (if any exist)

Never hardcode repo-specific values. Always detect dynamically.

Principle 3: Compare Before Creating

Before creating new GitHub issues:

  1. Search existing issues in the current repository for potential duplicates
  2. Check against project milestones (whatever naming convention the repo uses)
  3. If related issue exists, suggest commenting/updating rather than duplicating

Principle 4: Prompt for Confirmation

For each potential GitHub issue:

  • Show extracted action item
  • Display suggested labels (from detected available labels)
  • Ask user to confirm/modify before creation
  • Never auto-assign (leave unassigned)

Principle 5: EOS Level 10 Format

All meeting summaries follow the Level 10 Meeting structure:

  • Clear accountability (WHO is responsible)
  • Specific deliverables (WHAT is agreed)
  • Time-bound commitments (WHEN is the deadline)

Principle 6: Action Items as Checklists

Action items MUST always use markdown checkbox format — never tables or plain bullets:

- [ ] Action description -- **Owner Name** (due date)

This enables Obsidian task tracking and interactive checkboxes. </essential_principles>

If you want meeting notes and transcripts saved to a personal knowledge base (Obsidian vault, SecondBrain, etc.), set these environment variables or define them in your project's CLAUDE.md:

VariablePurposeExample
MEETING_NOTES_DIRWhere structured meeting notes are saved~/SecondBrain/02_Areas/notes
MEETING_TRANSCRIPTS_DIRWhere raw transcripts are archived~/SecondBrain/02_Areas/notes/transcripts

If not set: The skill will only generate GitHub issues and L10 summaries without saving to a vault. It will ask the user where to save if they request it.

If set: The skill automatically saves:

  1. Structured meeting note to $MEETING_NOTES_DIR/YYYY-MM-DD - Entity - Topic.md
  2. Raw transcript (when piped in directly or fetched from Fireflies) to $MEETING_TRANSCRIPTS_DIR/YYYY-MM-DD - Source - Topic.md

File Naming Convention

Notes: YYYY-MM-DD - Entity - Topic.md (e.g., 2026-03-13 - Hampton - Core Meeting.md) Transcripts: YYYY-MM-DD - Source - Topic.md (e.g., 2026-03-13 - Fireflies - Hampton Core Meeting.md)

Transcript Frontmatter

---
date: YYYY-MM-DD
type: transcript
source: fireflies | pasted | plaud
meeting_type: sales | internal | peer-advisory | other
attendees: [...]
processed_note: "YYYY-MM-DD - Entity - Topic.md"
---

The processed_note field links the raw transcript to its structured meeting note.

  1. Process recent meeting - Analyze the most recent Fireflies meeting and extract action items
  2. Search specific meeting - Find a meeting by date, keyword, or participant
  3. Create issues from notes - I already have meeting notes to convert to GitHub issues
  4. Generate L10 summary only - Create EOS Level 10 summary without creating issues

Wait for response before proceeding.

After reading the workflow, follow it exactly.

<reference_index> All domain knowledge in references/:

EOS Framework: eos-level-10-format.md GitHub Integration: github-project-config.md (dynamic detection patterns) </reference_index>

<workflows_index>

WorkflowPurpose
process-recent-meeting.mdFull workflow: detect context → fetch → compare → create issues → L10 summary
search-meeting.mdFind specific meeting by criteria
create-issues-from-notes.mdConvert provided notes to GitHub issues
generate-l10-summary.mdCreate L10 summary from existing analysis
</workflows_index>

<templates_index>

TemplatePurpose
l10-meeting-summary.mdEOS Level 10 Meeting summary structure
github-issue-checklist.mdIssue body with implementation checklist
</templates_index>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.71%
按下载量换算72

Claude

32.47%
按下载量换算69

Cursor

17.53%
按下载量换算38

Gemini CLI

8.93%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills