ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

customer-memory

Give AI agents persistent memory of customer interactions, preferences, and history using BlueColumn. Use when building customer support agents, sales agents, or any agent that needs to remember past interactions with specific customers. Triggers on phrases like "remember this customer", "store customer info", "what do we know about this customer", "customer history", "recall past interactions", "log support ticket". Requires a BlueColumn API key (bc_live_*).

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bluecolumnconsulting-lgtm/customer-memory
Or

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 <key>" \
  -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 <key>" \
  -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 <key>" \
  -d '{"q": "what do we know about [email protected] and her past issues?"}'

Workflow

New interaction:

  1. Query customer history first: "what do we know about [customer]?"
  2. Use context to personalize response
  3. After interaction → store summary via /agent-remember
  4. Store key preferences via /agent-note with customer email tag

Support ticket:

  1. Recall similar past issues: "have we seen this error before?"
  2. Resolve using historical context
  3. Log resolution with outcome

Title Convention

"Customer: <email> - <YYYY-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, onboarding
  • resolved, pending, escalated
  • Plan tier: free, developer, builder, scale

See references/api.md for full API reference.

Metadata

Stars4473
Views2
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bluecolumnconsulting-lgtm-customer-memory": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.

Related Skills

bluecolumn-memory

Give AI agents persistent semantic memory using the BlueColumn API (bluecolumn.ai). Use when asked to remember, store, recall, or search memory using BlueColumn; when ingesting notes, conversations, documents, or audio into BlueColumn; when querying what an agent has previously stored; or when wiring up BlueColumn memory endpoints (/agent-remember, /agent-recall, /agent-note) in any workflow. Also use when the user mentions their BlueColumn API key (bc_live_*) and wants to store or retrieve information.

bluecolumnconsulting-lgtm 4473

meeting-memory

Record, transcribe, and store meeting notes with persistent semantic memory using BlueColumn. Use when a user wants to save a meeting recording, upload meeting audio, store meeting notes or transcripts, or recall action items, decisions, and topics from past meetings. Triggers on phrases like "store this meeting", "remember this call", "what were the action items from", "recall last meeting", "upload meeting recording". Requires a BlueColumn API key (bc_live_*).

bluecolumnconsulting-lgtm 4473

research-memory

Build a persistent, searchable knowledge base from articles, papers, documents, and notes using BlueColumn. Use when a user wants to save research for later retrieval, store articles or PDFs, build a second brain, or ask questions across their saved content. Triggers on phrases like "save this article", "store this paper", "add to my knowledge base", "what do I know about", "search my research", "recall what I saved about". Requires a BlueColumn API key (bc_live_*).

bluecolumnconsulting-lgtm 4473

agent-journal

Give AI agents a persistent journal backed by BlueColumn semantic memory. Use when an agent should log daily observations, decisions, user preferences, or notable events that need to be recalled later. Triggers on phrases like "log this", "journal entry", "remember for later", "note this down", "what have you observed about", "what do you know about the user", or when an agent wants to store its own learnings across sessions. Requires a BlueColumn API key (bc_live_*).

bluecolumnconsulting-lgtm 4473