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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install customer-memory - 安装完成后,直接呼叫该 Skill 的名称或使用
/customer-memory触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Customer Memory 是什么?
Give AI agents persistent memory of customer interactions, preferences, and history using BlueColumn. Use when building customer support agents, sales agents... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 66 次。
如何安装 Customer Memory?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install customer-memory」即可一键安装,无需额外配置。
Customer Memory 是免费的吗?
是的,Customer Memory 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Customer Memory 支持哪些平台?
Customer Memory 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Customer Memory?
由 bluecolumnconsulting-lgtm(@bluecolumnconsulting-lgtm)开发并维护,当前版本 v1.0.0。