Agent Skills
› iii-experimental/agentos
› memory
memory
GitHub提供持久化代理记忆功能,支持跨会话存储、检索和搜索事实数据。通过API接口实现记忆的写入与查询,帮助Agent保持上下文连续性。
触发场景
需要Agent记住历史对话内容
跨会话检索用户偏好或关键信息
Agent需要维护长期状态
安装
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
版本历史
- caca2b4 当前 2026-07-25 09:41


