Install
openclaw skills install @bluecolumnconsulting-lgtm/meeting-memoryGive AI agents Every meeting becomes searchable. using BlueColumn persistent memory. Use when an agent takes meeting notes and needs recall; when the user wants to store, recall, or search meeting memory context. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/meeting-memoryEvery meeting becomes searchable.. Powered by BlueColumn (bluecolumn.ai) persistent vector memory.
Read TOOLS.md or the platform secret store for the BlueColumn API key (bc_live_*). Base URL: https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1
curl -X POST .../agent-remember \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"text": "Meeting 7/30 standup: blockers — staging env down; owner: dev team.", "title": "meeting-memory - note"}'
curl -X POST .../agent-note \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"text": "Meeting 7/30 standup: blockers — staging env down; owner: dev team.", "tags": ["meeting-memory"]}'
curl -X POST .../agent-recall \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"q": "What action items came out of the last standup?"}'
What action items came out of the last standup?/agent-rememberFull API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).