Customer Memory
/install customer-memory
Customer Memory Skill
Persistent customer context for support, sales, and success agents backed by BlueColumn.
Setup
Read TOOLS.md for the BlueColumn API key (bc_live_*). Keys are generated at bluecolumn.ai/dashboard. Store securely — never log or expose them.
Base URL: https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1 (BlueColumn's official backend — bluecolumn.ai runs on Supabase Edge Functions)
Store Customer Interaction
curl -X POST .../agent-remember \
-H "Authorization: Bearer \x3Ckey>" \
-d '{
"text": "Customer: [email protected]. Issue: API rate limiting on Developer plan. Resolved by upgrading to Builder. Prefers email communication. Tech stack: Python + LangChain.",
"title": "Customer: [email protected] - 2026-04-14"
}'
Store Quick Customer Note
curl -X POST .../agent-note \
-H "Authorization: Bearer \x3Ckey>" \
-d '{
"text": "[email protected] prefers async email over live chat",
"tags": ["customer", "[email protected]", "preference"]
}'
Recall Customer History
curl -X POST .../agent-recall \
-H "Authorization: Bearer \x3Ckey>" \
-d '{"q": "what do we know about [email protected] and her past issues?"}'
Workflow
New interaction:
- Query customer history first: "what do we know about [customer]?"
- Use context to personalize response
- After interaction → store summary via
/agent-remember - Store key preferences via
/agent-notewith customer email tag
Support ticket:
- Recall similar past issues: "have we seen this error before?"
- Resolve using historical context
- Log resolution with outcome
Title Convention
"Customer: \x3Cemail> - \x3CYYYY-MM-DD>"
Use consistent email-based naming so recall queries work accurately across all interactions with the same customer.
Tags to Use
- Customer email (e.g.
[email protected]) support,sales,onboardingresolved,pending,escalated- Plan tier:
free,developer,builder,scale
See references/api.md for full API reference.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install customer-memory - After installation, invoke the skill by name or use
/customer-memory - Provide required inputs per the skill's parameter spec and get structured output
What is Customer Memory?
Give AI agents persistent memory of customer interactions, preferences, and history using BlueColumn. Use when building customer support agents, sales agents... It is an AI Agent Skill for Claude Code / OpenClaw, with 66 downloads so far.
How do I install Customer Memory?
Run "/install customer-memory" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Customer Memory free?
Yes, Customer Memory is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Customer Memory support?
Customer Memory is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Customer Memory?
It is built and maintained by bluecolumnconsulting-lgtm (@bluecolumnconsulting-lgtm); the current version is v1.0.0.