ワンクリックで
memory
Two-layer memory system — read and update long-term facts, recall past events from conversation history.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Two-layer memory system — read and update long-term facts, recall past events from conversation history.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Browser automation via Playwright MCP — navigate, click, fill forms, take screenshots, scrape pages, run E2E tests. Use when the user needs web automation, testing, or scraping JavaScript-rendered sites.
Structured code review — security, correctness, performance, maintainability. Use when asked to review code, a PR, or a diff.
Analyze CSV, JSON, Excel data; generate charts and reports. Use when the user provides data files or asks for statistics, charts, or data insights.
Deploy applications to cloud platforms — Fly.io, Railway, Vercel, or via SSH. Use when the user wants to publish, deploy, or release an application.
Build, run, and manage Docker containers and images. Use when the user asks about containers, Docker builds, logs, or deployment.
Interact with Feishu (Lark) API directly — read/write docs, send messages, manage bitable, query user info. Use when the user wants to automate Feishu operations.
| name | memory |
| description | Two-layer memory system — read and update long-term facts, recall past events from conversation history. |
| always | true |
ccbot 维护两层记忆,均位于 workspace 的 .ccbot/memory/ 目录下。
.ccbot/memory/
long_term.md ← 长期事实(偏好、项目背景、持续约束)
conversations/
<chat_id>.json ← 短期对话快照(由 runtime 自动管理,无需手动编辑)
长期记忆已在每次会话启动时注入到你的上下文中(标注为 # ccbot Memory Context)。
若需查看原始文件:
cat .ccbot/memory/long_term.md
当用户表达偏好、项目约束、持续背景信息时,立即更新:
# 读取后用 Edit 工具追加或修改
写入原则:
短期记忆以 JSON 存储,通过 grep 快速搜索:
grep -ri "关键词" .ccbot/memory/conversations/
查看特定会话:
cat .ccbot/memory/conversations/<chat_id>.json | python3 -m json.tool
| 层级 | 位置 | 管理方 | 用途 |
|---|---|---|---|
| 长期记忆 | .ccbot/memory/long_term.md | Supervisor(你)主动维护 | 稳定偏好、项目背景 |
| 短期记忆 | .ccbot/memory/conversations/ | runtime 自动写入 | 对话历史快照,冷启动恢复用 |
| Session 记忆 | Claude SDK session | SDK 管理 | 当前会话完整 in-context 历史 |