원클릭으로
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 历史 |