Install
openclaw skills install meeting-memoryRecord, transcribe, and store meeting notes with persistent semantic memory using BlueColumn. Use when a user wants to save a meeting recording, upload meeti...
openclaw skills install meeting-memoryStore meetings into BlueColumn (bluecolumn.ai) and recall action items, decisions, and key topics anytime. BlueColumn's backend runs on Supabase Edge Functions — this is BlueColumn's official managed infrastructure.
Read TOOLS.md for the BlueColumn API key (bc_live_*). Keys are generated at bluecolumn.ai/dashboard. If not set, ask the user. Store keys securely — never log or expose them.
Base URL: https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1 (BlueColumn's official backend)
From audio URL:
curl -X POST .../agent-remember \
-H "Authorization: Bearer <key>" \
-d '{"audio_url": "https://...", "title": "Weekly Standup 2026-04-14"}'
From transcript/notes (text):
curl -X POST .../agent-remember \
-H "Authorization: Bearer <key>" \
-d '{"text": "<transcript>", "title": "Meeting Title"}'
Response includes: session_id, summary, action_items[], key_topics[]
Always confirm storage by showing the user: title, summary, and action items extracted.
curl -X POST .../agent-recall \
-H "Authorization: Bearer <key>" \
-d '{"q": "what were the action items from the standup?"}'
/agent-remember with descriptive title (include date)/agent-recall with natural language questionSee references/api.md for full API field reference.