← 返回 Skills 市场
Meeting Assistant
作者
cp3d1455926-svg
· GitHub ↗
· v2.0.0
· MIT-0
101
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install cp3d1455926-svg-meeting-assistant
功能描述
Generate meeting summaries, extract action items with deadlines, coordinate schedules, and manage meeting templates and reminders.
使用说明 (SKILL.md)
📋 Meeting Assistant - 会议助手\r
\r
触发规则\r
\r 关键词:\r
- 会议纪要、会议记录、会议总结\r
- 待办事项、行动计划\r
- 安排会议、日程\r \r 场景:\r
- 用户需要整理会议纪要\r
- 用户需要提取待办事项\r
- 用户需要安排会议日程\r \r
功能描述\r
\r
核心功能\r
\r
- 会议纪要生成\r
- 从录音/文字生成纪要\r
- 提取关键决策\r
- 总结讨论要点\r \r
- 待办事项提取\r
- 识别行动项\r
- 分配负责人\r
- 设置截止日期\r \r
- 日程安排\r
- 会议时间协调\r
- 会议室预订\r
- 提醒通知\r \r
- 会议模板\r
- 站立会模板\r
- 周会模板\r
- 项目评审模板\r \r
权限需求\r
\r
- 文件读写(纪要存储)\r
- 定时任务(提醒)\r
- 外部 API(日历集成)\r \r
示例对话\r
\r
用户:帮我整理这个会议纪要...\r
助手:✅ 已生成会议纪要:\r
\r
📋 **会议纪要** - 项目周会\r
📅 2026-03-16 14:00-15:00\r
👥 参会:Jake, Alice, Bob\r
\r
📝 **讨论要点**\r
1. 项目进度:前端完成 80%,后端完成 60%\r
2. 问题:API 接口延迟,需要协调\r
3. 决定:下周三前完成接口对接\r
\r
✅ **待办事项**\r
1. [ ] Jake - 完成前端页面(截止:3/20)\r
2. [ ] Alice - 修复 API bug(截止:3/18)\r
3. [ ] Bob - 准备测试数据(截止:3/19)\r
\r
📅 **下次会议**\r
- 时间:2026-03-23 14:00\r
- 主题:项目评审\r
\r
需要我发送提醒给相关人员吗?\r
```\r
\r
## 数据存储\r
\r
```json\r
// ~/.openclaw/workspace/meeting-assistant/meetings.json\r
{\r
"meetings": [\r
{\r
"title": "项目周会",\r
"date": "2026-03-16",\r
"attendees": ["Jake", "Alice", "Bob"],\r
"notes": "...",\r
"action_items": [...]\r
}\r
]\r
}\r
```\r
\r
## 待办事项\r
\r
- [ ] 纪要模板\r
- [ ] 待办提取\r
- [ ] 日历集成\r
- [ ] 提醒功能\r
\r
---\r
\r
**版本:** 1.0.0\r
**创建日期:** 2026-03-16\r
**作者:** 小鬼 👻\r
安全使用建议
Things to check before installing:
- Confirm how your agent platform executes bundled code files: this package includes meeting_assistant.py but no install instructions—know whether the agent will execute that Python file automatically.
- Verify where meeting data will be stored. SKILL.md points to ~/.openclaw/workspace/meeting-assistant/meetings.json but the code writes to the script's directory (Path(__file__).parent/meetings.json). Make sure files are stored in a location you control and that no sensitive directories will be used.
- Calendar integration and reminder scheduling are listed as planned/todo but are not implemented in the code. If you expect calendar/reminder behavior, require the author to document which calendar APIs will be used and which environment variables/credentials will be requested.
- tasks.json is referenced but not included; ask the author about expected data files and migration behavior.
- Because the skill asks for file read/write (and would need scheduling to send reminders), minimize its filesystem permissions and run it in an isolated workspace until you confirm behavior. If you need calendar/email reminders, prefer a version that explicitly declares and justifies the exact credentials it will require.
- If you are not comfortable auditing Python code yourself, request the author to explain the execution model and provide a reproducible install/run example.
功能分析
Type: OpenClaw Skill
Name: cp3d1455926-svg-meeting-assistant
Version: 2.0.0
The skill bundle is a functional meeting assistant designed to generate minutes, extract tasks, and manage schedules using local JSON storage. The Python code (meeting_assistant.py) uses standard libraries for regex-based text parsing and file I/O without any network requests, shell execution, or suspicious data exfiltration logic. The instructions in SKILL.md are consistent with the stated purpose and do not contain any prompt-injection attacks or hidden malicious commands.
能力评估
Purpose & Capability
Name/description (meeting summaries, action items, scheduling/templates) align with the code's functionality (parsing content, generating minutes, storing meetings). However the SKILL.md advertises scheduling/reminder and calendar integration as features/todos while the code contains no calendar API integration or OS scheduling logic. Also SKILL.md documents storage under ~/.openclaw/workspace/meeting-assistant/meetings.json but the code reads/writes a meetings.json next to the script (Path(__file__).parent). These mismatches are implementation inconsistencies but not clearly malicious.
Instruction Scope
SKILL.md asks for file read/write and scheduled tasks (for reminders). The instructions and examples focus on parsing meeting text and storing notes. The runtime instructions do not direct the agent to read arbitrary system files or environment variables. But SKILL.md implies persistent reminders and external calendar API use; the provided code does not implement external API calls or OS-level scheduling—so the actual runtime behavior is narrower than the doc claims.
Install Mechanism
No install spec; this is instruction-only with an included Python file. There is no network download or package install specified. Low install risk, but note that the presence of a code file means an agent/runtime may choose to execute it—verify platform policy for executing bundled scripts.
Credentials
The skill declares no required environment variables, credentials, or unusual config paths. The code only reads/writes local JSON files (meetings.json, and references tasks.json which isn't present). No credentials or external endpoints are requested.
Persistence & Privilege
always is false and the skill does not request elevated privileges or to modify other skills' configs. It writes its own data files in its directory (or as implemented by the runtime). There is no evidence the skill registers itself for persistent system-wide execution.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install cp3d1455926-svg-meeting-assistant - 安装完成后,直接呼叫该 Skill 的名称或使用
/cp3d1455926-svg-meeting-assistant触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.0.0
v2.0 - 会议模板 + 智能纪要
元数据
常见问题
Meeting Assistant 是什么?
Generate meeting summaries, extract action items with deadlines, coordinate schedules, and manage meeting templates and reminders. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 101 次。
如何安装 Meeting Assistant?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install cp3d1455926-svg-meeting-assistant」即可一键安装,无需额外配置。
Meeting Assistant 是免费的吗?
是的,Meeting Assistant 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Meeting Assistant 支持哪些平台?
Meeting Assistant 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Meeting Assistant?
由 cp3d1455926-svg(@cp3d1455926-svg)开发并维护,当前版本 v2.0.0。
推荐 Skills