Install
openclaw skills install @bluecolumnconsulting-lgtm/documentation-memoryGive AI agents Remember docs you've written and read. using BlueColumn persistent memory. Use when an agent maintains documentation and needs to reuse it; when the user wants to store, recall, or search documentation memory context. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/documentation-memoryRemember docs you've written and read.. 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": "Wrote onboarding doc: install → add key → done. Published to docs site 7/30.", "title": "documentation-memory - note"}'
curl -X POST .../agent-note \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"text": "Wrote onboarding doc: install → add key → done. Published to docs site 7/30.", "tags": ["documentation-memory"]}'
curl -X POST .../agent-recall \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"q": "What documentation have we published and where?"}'
What documentation have we published and where?/agent-rememberFull API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).