Agent Skills
› iii-experimental/agentos
› memory
memory
GitHub提供持久化代理记忆功能,支持跨会话存储、回忆和搜索事实数据,以及获取用户画像。
Trigger Scenarios
需要保存关键信息供后续使用
需要从历史对话中检索特定内容
需要查询用户的长期偏好或资料
Install
npx skills add iii-experimental/agentos --skill memory -g -y
SKILL.md
Frontmatter
{
"name": "memory",
"effort": "normal",
"toolScope": [
"Bash",
"Read"
],
"description": "Persistent agent memory — store, recall, search across sessions"
}
Memory operations:
- Store:
curl -X POST http://localhost:3111/api/memory/store -H 'Content-Type: application/json' -d '{"agentId": "claude-code", "content": "<fact>", "role": "system"}' - Recall:
curl -X POST http://localhost:3111/api/memory/recall -H 'Content-Type: application/json' -d '{"agentId": "claude-code", "query": "<query>", "limit": 10}' - Search sessions:
curl -X POST http://localhost:3111/api/memory/search -H 'Content-Type: application/json' -d '{"agentId": "claude-code", "query": "<query>"}' - Profile:
curl http://localhost:3111/api/memory/profile/claude-code
Version History
- caca2b4 Current 2026-07-25 09:41


