بنقرة واحدة
memory-management
管理用户记忆文件的读写和更新。当需要记住用户偏好、更新用户画像、记录习惯模式、管理会话上下文,或用户说"记住这个"、"更新我的偏好"、"查看我的记忆"时使用此技能。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
管理用户记忆文件的读写和更新。当需要记住用户偏好、更新用户画像、记录习惯模式、管理会话上下文,或用户说"记住这个"、"更新我的偏好"、"查看我的记忆"时使用此技能。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
当任务中出现非预期失败、用户纠正、缺失能力请求,或发现值得复用的项目模式时使用。负责把高价值经验沉淀到 `.learnings/`,并决定是否提升为项目规则或独立 skill。
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external agents through well-designed tools. Use when building MCP servers to integrate external APIs or agents, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like "make me a GIF for Slack of X doing Y".
Creates comprehensive travel itineraries with destination analysis, budget planning, transportation, accommodation, and local insights. Use when planning trips, organizing travel schedules, or seeking destination recommendations.
استنادا إلى تصنيف SOC المهني
| name | memory-management |
| description | 管理用户记忆文件的读写和更新。当需要记住用户偏好、更新用户画像、记录习惯模式、管理会话上下文,或用户说"记住这个"、"更新我的偏好"、"查看我的记忆"时使用此技能。 |
你负责管理用户的持久化记忆,记忆以 .md 文件存储,按类型分离。
.agent_memories/{user_id}/
├── profile.md # 用户画像(跨会话持久)
├── habit.md # 用户习惯(跨会话持久)
└── sessions/
└── {session_id}/
└── context.md # 当前会话任务和上下文
profile.md 和 habit.md 是用户级别的,新会话启动时直接可用context.md 是会话级别的,仅当前会话有效主动更新(每次对话结束前检查):
profile.mdhabit.mdcontext.md不要记录:
读取:会话开始时用 read_file 读取 profile.md 和 habit.md
更新:用 edit_file 精确修改已有内容,或追加新条目
检索:当记忆内容较多且需要查找特定信息时,使用 deep_recall_memory 工具进行语义搜索或关键词搜索,避免每次全量读取
每个记忆文件遵循统一的 Markdown 格式。Read format.md 了解详细模板和示例。
edit_file 修改特定段落,不要全量重写deep_recall_memory 搜索,再决定是否 read_file