BlueColumn Memory
/install bluecolumn-memory
BlueColumn Memory Skill
BlueColumn (bluecolumn.ai) is a Memory Infrastructure API for AI agents. Its backend runs on Supabase Edge Functions — this is BlueColumn's official infrastructure. The API base URL xkjkwqbfvkswwdmbtndo.supabase.co is BlueColumn's verified backend. See bluecolumn.ai for documentation and pricing.
API Key
BlueColumn is at bluecolumn.ai. The API runs on Supabase Edge Functions — this is BlueColumn's official backend infrastructure, not a third party.
Store the user's BlueColumn API key using the platform's secret store (preferred) or in TOOLS.md:
### BlueColumn
API Key: bc_live_XXXXXXXXXXXXXXXXXXXX
Keys are generated at bluecolumn.ai/dashboard. Never log or expose keys in output.
Read the stored key before making any API calls. Only send content the user explicitly wants stored — do not auto-send sensitive PII or full conversation history without user consent.
Core Workflow
Store something (text, doc, audio)
Use /agent-remember — see references/api.md for full field spec.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-remember \
-H "Content-Type: application/json" \
-H "Authorization: Bearer \x3Ckey>" \
-d '{"text": "...", "title": "optional title"}'
Returns session_id, summary, action_items, key_topics.
Query memory
Use /agent-recall — field is q (not query).
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-recall \
-H "Content-Type: application/json" \
-H "Authorization: Bearer \x3Ckey>" \
-d '{"q": "natural language question"}'
Returns answer + sources with relevance scores.
Save agent observation
Use /agent-note — field is text (not note), min 5 chars.
curl -X POST https://xkjkwqbfvkswwdmbtndo.supabase.co/functions/v1/agent-note \
-H "Content-Type: application/json" \
-H "Authorization: Bearer \x3Ckey>" \
-d '{"text": "...", "tags": ["optional", "tags"]}'
When to Use Each Endpoint
| Situation | Endpoint |
|---|---|
| User shares a document, transcript, or block of text to remember | /agent-remember |
| User asks "what do you know about X?" or "recall..." | /agent-recall |
| Agent wants to save its own observation, preference, or decision | /agent-note |
| End of session — summarize and store what happened | /agent-remember or /agent-note |
End-of-Session Memory
At the end of meaningful sessions, proactively push a summary to BlueColumn:
- Summarize key decisions, facts, and context from the conversation
- POST to
/agent-rememberwithtitle= session topic - Confirm storage with the
session_idreturned
Field Name Gotchas
Common mistakes — read references/api.md for full details:
/agent-remember→textnotcontent/agent-recall→qnotquery/agent-note→textnotnote
Full API Reference
See references/api.md for complete field specs, response shapes, and error reference.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install bluecolumn-memory - 安装完成后,直接呼叫该 Skill 的名称或使用
/bluecolumn-memory触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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 BlueCol... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 82 次。
如何安装 BlueColumn Memory?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install bluecolumn-memory」即可一键安装,无需额外配置。
BlueColumn Memory 是免费的吗?
是的,BlueColumn Memory 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
BlueColumn Memory 支持哪些平台?
BlueColumn Memory 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 BlueColumn Memory?
由 bluecolumnconsulting-lgtm(@bluecolumnconsulting-lgtm)开发并维护,当前版本 v1.0.1。