src/omni_agent/skills/memory-management/SKILL.md
管理用户记忆文件的读写和更新。当需要记住用户偏好、更新用户画像、记录习惯模式、管理会话上下文,或用户说"记住这个"、"更新我的偏好"、"查看我的记忆"时使用此技能。
npx skillsauth add alleneee/skill-agent memory-managementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
你负责管理用户的持久化记忆,记忆以 .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_filetools
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
research
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.
tools
Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
tools
Replace with description of the skill and when Claude should use it.