一键导入
meeting-notes
Turn meeting transcripts into structured notes with action items, then optionally create tasks and post summaries to team channels.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Turn meeting transcripts into structured notes with action items, then optionally create tasks and post summaries to team channels.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage the Trinity AGI auth service and RBAC system -- database schema, role hierarchy, permission management, JWT flow, audit logging, and API endpoints.
Sync files between the host machine and the running Trinity Docker containers — config, agent files, skills, and extensions.
Develop the Trinity AGI Flutter Web Shell -- understand the architecture, A2UI renderer, WebSocket models, dual-client pattern, design tokens, and build workflow.
Operate the Trinity AGI Kubernetes infrastructure -- Helm charts, multi-tenant per-user OpenClaw pods, Vault Agent Injector secrets, minikube dev, and production deployment.
Operate the OpenClaw Gateway that powers Trinity AGI — configure providers, manage sessions, use the CLI, and understand the WebSocket protocol.
Manage the Trinity AGI Docker Compose stack — start, stop, logs, rebuild frontend, and full deploy.
| name | meeting-notes |
| description | Turn meeting transcripts into structured notes with action items, then optionally create tasks and post summaries to team channels. |
| homepage | https://github.com/trinityagi/trinity |
| metadata | {"openclaw":{"emoji":"📋"}} |
Parse any meeting transcript into structured notes, extract action items with owners and deadlines, and distribute them to project management tools and team channels.
Trigger this skill when the user:
.txt, .vtt, or .srt transcript file.txt, .vtt, or .srt file.VTT and SRT subtitle files from Zoom or Google Meet include timestamps and speaker labels. Use these to attribute statements to specific people when extracting action items.
# Read a VTT file
cat ~/meeting-transcripts/standup-2026-03-03.vtt
Always structure meeting notes like this:
# Meeting Notes — [DATE]
## Attendees
[List of participants identified from the transcript]
## Key Decisions
1. [Decision 1] — [brief context]
2. [Decision 2] — [brief context]
3. [Decision 3] — [brief context]
## Action Items
| # | Task | Owner | Deadline | Status |
|---|------|-------|----------|--------|
| 1 | [What needs to be done] | [Person] | [Date or TBD] | Open |
| 2 | [What needs to be done] | [Person] | [Date or TBD] | Open |
| 3 | [What needs to be done] | [Person] | [Date or TBD] | Open |
## Discussion Summary
[3-5 bullet points covering the main topics discussed]
## Open Questions
- [Anything unresolved that needs follow-up]
After generating notes, offer to:
Send the meeting summary to #meeting-notes in Slack.
Use the slack or discord skill to post to the appropriate channel.
If a task management skill is connected (Todoist, Trello, Notion, etc.), offer to create tickets for each action item:
For action items with deadlines, offer to schedule reminder crons:
cron add "0 9 * * *" "Check if [action item] is completed and ping [owner] if not" --delete-after-run --name "followup-[item]"
For teams that want hands-free processing:
cron add "*/30 * * * *" "Check ~/meeting-transcripts/ for new .txt or .vtt files. For each new file: parse into structured notes, create tasks, post summary to Slack, then move the file to ~/meeting-transcripts/processed/" --name "meeting-processor"