Skills andara-meeting-minutes

Capture meeting summaries and action items from voice or text

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/atiati82/andara-meeting-minutes" ~/.claude/skills/openclaw-skills-andara-meeting-minutes && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/atiati82/andara-meeting-minutes" ~/.openclaw/skills/openclaw-skills-andara-meeting-minutes && rm -rf "$T"
manifest: skills/atiati82/andara-meeting-minutes/SKILL.md
source content

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:

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:
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]