会议纪要

andara-meeting-minutes

by atiati82

Capture meeting summaries and action items from voice or text

4.4k其他未扫描2026年4月6日

安装

claude skill add --url https://github.com/openclaw/skills

文档

Meeting Minutes Skill

When ATTi or a team member sends a meeting summary (voice or text), save it as a structured record.

Trigger

When user says something like "Meeting Notes:", "Besprechungsnotizen:", or "save meeting" — parse the content and store it.

Steps

  1. Extract the meeting topic, attendees, decisions, and action items from the message.

  2. Save to PostgreSQL using bash + psql:

bash
psql "$DATABASE_URL" -c "
INSERT INTO team_meetings (title, summary, attendees, meeting_date, created_at)
VALUES ('TOPIC', 'SUMMARY', ARRAY['ATTENDEE1','ATTENDEE2'], NOW(), NOW())
RETURNING id;"
  1. For each action item, insert into meeting_action_items:
bash
psql "$DATABASE_URL" -c "
INSERT INTO meeting_action_items (meeting_id, assignee, description, due_date, status, created_at)
VALUES (MEETING_ID, 'ASSIGNEE', 'TASK DESCRIPTION', 'DUE_DATE', 'pending', NOW());"
  1. Confirm to the user: "Meeting gespeichert ✅ — [X] Action Items erstellt."

Output Format

Reply in German with a structured summary:

  • 📋 Meeting: [Title]
  • 👥 Teilnehmer: [Names]
  • ✅ Action Items: [List with assignees]
  • 📅 Nächstes Treffen: [if mentioned]

相关 Skills

Claude API

by anthropic

热门

Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports `anthropic`/`@anthropic-ai/sdk`; user asks for the Claude API, Anthropic SDK, or Managed Agents; user adds/modifies/tunes a Claude feature (caching, thinking, compaction, tool use, batch, files, citations, memory) or model (Opus/Sonnet/Haiku) in a file; questions about prompt caching / cache hit rate in an Anthropic SDK project. SKIP: file imports `openai`/other-provider SDK, filename like `*-openai.py`/`*-generic.py`, provider-neutral code, general programming/ML.

其他
安全124.4k

并行代理

by axelhu

热门

Use when facing 2 or more independent tasks that can be worked on without shared state - dispatches parallel subagents using sessions_spawn for concurrent investigation and execution, adapted for OpenClaw

其他
未扫描4.4k

高光制作器

by bwbernardweston18

热门

>

其他
未扫描4.4k

评论