Install
openclaw skills install @bluecolumnconsulting-lgtm/remember-customer-namesNever blank on a customer again — names, roles, companies, and the details that make conversations personal. Use when an agent talks to customers and should address them correctly and remember their context. Requires a BlueColumn API key (bc_live_*).
openclaw skills install @bluecolumnconsulting-lgtm/remember-customer-namesA customer who is called by name is a customer who feels known. This skill builds an identity card for every person you talk to, so the agent never starts a conversation cold.
Store the essentials the first time you meet someone: name, how they like to be addressed, role, company, and one human detail.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "CUSTOMER CARD: Jane Almeida, VP Ops at Acme Corp. Goes by Jane. Decision-maker for the account. Mentioned she runs marathons; son starts college in the fall.", "title": "customer - Jane Almeida"}'
Pull the card into any reply so the opening line is personal, not robotic.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-recall \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "Who is Jane Almeida and what do we know about her?"}'
Every interaction adds a line. Keep cards alive by appending what is new.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
-H "Authorization: Bearer $BLUECOLUMN_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text": "Jane moved from Acme to Globex in August — still the buyer, new company. Prefers email over phone.", "tags": ["customer", "update"]}'
API reference: https://bluecolumn.ai/docs — fields are text, q, tags (not content/query/note).