/install andara-meeting-minutes
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
-
Extract the meeting topic, attendees, decisions, and action items from the message.
-
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;"
- 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());"
- 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]
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install andara-meeting-minutes - After installation, invoke the skill by name or use
/andara-meeting-minutes - Provide required inputs per the skill's parameter spec and get structured output
What is Andara Meeting Minutes?
Capture meeting summaries and action items from voice or text. It is an AI Agent Skill for Claude Code / OpenClaw, with 210 downloads so far.
How do I install Andara Meeting Minutes?
Run "/install andara-meeting-minutes" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Andara Meeting Minutes free?
Yes, Andara Meeting Minutes is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Andara Meeting Minutes support?
Andara Meeting Minutes is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Andara Meeting Minutes?
It is built and maintained by atiati82 (@atiati82); the current version is v1.0.0.