Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

meeting-autopilot会议自动驾驶仪

Agent Skill

meeting-autopilot 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

22,023

周安装

946

GitHub Stars

公开资料未说明

下载量

7,719
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install meeting-autopilot

简介

meeting-autopilot 将会议记录转化为运营输出,生成行动项目与后续邮件草稿。

  • 定位为操作员而非总结者,聚焦执行推动而非内容复述。
  • 输入会议文本或音频转写稿,提取决策点、责任人并创建票据草稿。
  • 使用前请确认文本编码格式正确,长文档建议分页处理以防超时。
  • 输出内容需人工校验责任人与截止时间,避免指派错误或时间冲突。

SKILL.md

name
meeting-autopilot
description
>
version
0.1.1
author
Anvil AI
tags
[meetings, productivity, action-items, email-drafts, transcripts, operations, discord, discord-v2]

✈️ Meeting Autopilot

Turn meeting transcripts into structured operational outputs — NOT just summaries.

Activation

This skill activates when the user mentions:

  • "meeting transcript", "meeting notes", "meeting autopilot"
  • "action items from meeting", "meeting follow-up"
  • "process this transcript", "analyze this meeting"
  • "extract decisions from meeting", "meeting email draft"
  • Uploading or pasting a VTT, SRT, or text transcript

Permissions

permissions:
  exec: true          # Run extraction scripts
  read: true          # Read transcript files
  write: true         # Save history and reports
  network: true       # LLM API calls (Anthropic or OpenAI)

Requirements

  • bash, jq, python3, curl (typically pre-installed)
  • ANTHROPIC_API_KEY or OPENAI_API_KEY environment variable

Agent Workflow

Step 1: Get the Transcript

Ask the user for their meeting transcript. Accept any of:

  • A file path to a VTT, SRT, or TXT file
  • Pasted text directly in the conversation
  • A file upload

The skill auto-detects the format (VTT, SRT, or plain text).

Important: This skill does NOT do audio transcription. If the user has an audio/video file, suggest they use:

  • Zoom/Google Meet/Teams built-in transcription
  • Otter.ai or Fireflies.ai for recording + transcription
  • whisper.cpp for local transcription

Step 2: Get Optional Context

Ask for (but don't require):

  • Meeting title — helps with email subject lines and report headers
  • If not provided, the skill derives it from the filename or uses "Meeting [date]"

Step 3: Run the Autopilot

Save the transcript to a temporary file if pasted, then run:

bash "$SKILL_DIR/scripts/meeting-autopilot.sh" <transcript_file> --title "Meeting Title"

Or from stdin:

echo "$TRANSCRIPT" | bash "$SKILL_DIR/scripts/meeting-autopilot.sh" - --title "Meeting Title"

The script handles all three passes automatically:

  1. Parse — normalize the transcript format
  2. Extract — pull out decisions, action items, questions via LLM
  3. Generate — create email drafts, ticket drafts, beautiful report

Step 4: Present the Report

The script outputs a complete Markdown report to stdout. Present it directly — the formatting is designed to look great in Slack, email, or any Markdown renderer.

The report includes:

  • 📊 Overview table (counts by category)
  • ✅ Decisions with rationale
  • 📋 Action items table (owner, deadline, status)
  • ❓ Open questions
  • 🅿️ Parking lot items
  • 📧 Follow-up email draft(s) — ready to send
  • 🎫 Ticket/issue drafts — ready to file

Discord v2 Delivery Mode (OpenClaw v2026.2.14+)

When the conversation is happening in a Discord channel:

  • Send a compact first summary (decision count, action-item count, top owners), then ask if the user wants full report sections.
  • Keep the first response under ~1200 characters and avoid long tables in the first message.
  • If Discord components are available, include quick actions:

- Show Action Items - Show Follow-Up Email Draft - Show Ticket Drafts

  • If components are not available, provide the same follow-ups as a numbered list.
  • Prefer short follow-up chunks (<=15 lines per message) for long reports.

Step 5: Offer Next Steps

After presenting the report, offer:

  1. "Want me to refine any of the email drafts?"
  2. "Should I adjust any action item assignments?"
  3. "Want to save this report to a file?"
  4. "I can also process another meeting — transcripts from different meetings build up a tracking history."

Error Handling

SituationBehavior
No API key setPrint branded error with setup instructions
Transcript too short (<20 chars)Suggest pasting more content or checking file path
Empty LLM responseReport API issue, suggest checking key/network
No items extractedReport "meeting may not have had actionable content" — still show key points if any
Unsupported file formatSuggest --format txt to force plain text parsing

Notes for the Agent

  • The report is the star. Present it in full. Don't summarize the summary.
  • Follow-up emails are the WOW moment. Highlight them — they're ready to copy and send.
  • Be proactive: After the report, suggest specific improvements based on what was found.
  • Cross-meeting tracking: Items are automatically saved to ~/.meeting-autopilot/history/. Mention this — it's a preview of the v1.1 feature that tracks commitments across meetings.
  • If the transcript has no speaker labels, mention that adding "Speaker: text" format improves attribution accuracy.

References

  • scripts/meeting-autopilot.sh — Main orchestrator (the only entry point you need)
  • scripts/parse-transcript.sh — Transcript parser (VTT/SRT/TXT → JSONL)
  • scripts/extract-items.sh — LLM extraction + classification
  • scripts/generate-outputs.sh — Operational output generation + report formatting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.64%
按下载量换算5,839

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills