Install
openclaw skills install @bluecolumnconsulting-lgtm/research-memoryGive AI agents Everything you read becomes knowledge. using BlueColumn persistent memory. Use when an agent researches and needs to keep findings; when the user wants to store, recall, or search research memory context. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/research-memoryEverything you read becomes knowledge.. 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": "Research: pgvector vs pinecone — pgvector wins for BYO DB story. Source: docs comparison.", "title": "research-memory - note"}'
curl -X POST .../agent-note \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"text": "Research: pgvector vs pinecone — pgvector wins for BYO DB story. Source: docs comparison.", "tags": ["research-memory"]}'
curl -X POST .../agent-recall \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"q": "What did our research conclude about vector stores?"}'
What did our research conclude about vector stores?/agent-rememberFull API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).