Agent Journal
/install agent-journal
Agent Journal Skill
Persistent cross-session journal for AI agents. Store observations, preferences, and decisions — recall them anytime.
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)
Log an Observation (agent-note)
For lightweight agent observations — preferences, patterns, decisions:
curl -X POST .../agent-note \
-H "Authorization: Bearer \x3Ckey>" \
-d '{"text": "User prefers bullet points over paragraphs", "tags": ["preference", "style"]}'
Log a Detailed Entry (agent-remember)
For richer entries with auto-extracted metadata:
curl -X POST .../agent-remember \
-H "Authorization: Bearer \x3Ckey>" \
-d '{"text": "Session summary: user is building a SaaS product in Phoenix. Decided on PostgreSQL. Main concern is scalability.", "title": "Session Log 2026-04-14"}'
Recall Journal Entries
curl -X POST .../agent-recall \
-H "Authorization: Bearer \x3Ckey>" \
-d '{"q": "what does the user prefer for formatting?"}'
When to Use Each
| Situation | Endpoint |
|---|---|
| Quick preference or observation | /agent-note |
| End-of-session summary | /agent-remember |
| Retrieving past context | /agent-recall |
Journaling Workflow
Start of session: Recall relevant context:
- "What do I know about this user?"
- "What were we working on last time?"
During session: Note important observations via /agent-note
End of session: Summarize and store via /agent-remember
Tag Suggestions
preference— user style/format preferencesdecision— architectural or product decisionscontext— background info about user/projectfollowup— things to revisit
See references/api.md for full API reference.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-journal - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-journal触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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 no... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 64 次。
如何安装 Agent Journal?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-journal」即可一键安装,无需额外配置。
Agent Journal 是免费的吗?
是的,Agent Journal 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agent Journal 支持哪些平台?
Agent Journal 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Journal?
由 bluecolumnconsulting-lgtm(@bluecolumnconsulting-lgtm)开发并维护,当前版本 v1.0.0。