Install
openclaw skills install @bluecolumnconsulting-lgtm/sales-memoryEnables AI agents to store, recall, and search sales objections and follow-ups using BlueColumn persistent memory with a required API key.
openclaw skills install @bluecolumnconsulting-lgtm/sales-memorySales memory: objections and follow-ups.. 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": "Jane's objection: price. Addressed with annual discount. Follow-up set for Aug 5.", "title": "sales-memory - note"}'
curl -X POST .../agent-note \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"text": "Jane's objection: price. Addressed with annual discount. Follow-up set for Aug 5.", "tags": ["sales-memory"]}'
curl -X POST .../agent-recall \
-H "Authorization: Bearer <key>" \
-H "Content-Type: application/json" \
-d '{"q": "What objections has Jane raised and how did we handle them?"}'
What objections has Jane raised and how did we handle them?/agent-rememberFull API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).