Install
openclaw skills install @bluecolumnconsulting-lgtm/learning-memoryGive AI agents Remember courses and lessons learned. using BlueColumn persistent memory. Use when an agent tracks learning and skill growth; when the user wants to store, recall, or search learning memory context. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/learning-memoryRemember courses and lessons learned.. 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": "Completed: 'Prompt Engineering' course. Key lessons: chain-of-thought, few-shot.", "title": "learning-memory - note"}'
curl -X POST .../agent-note \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"text": "Completed: 'Prompt Engineering' course. Key lessons: chain-of-thought, few-shot.", "tags": ["learning-memory"]}'
curl -X POST .../agent-recall \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"q": "What have I been learning and what stuck?"}'
What have I been learning and what stuck?/agent-rememberFull API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).