Agent Skills
› iii-experimental/agentos
› memory
memory
GitHub提供持久化智能体记忆功能,支持跨会话存储、检索和搜索事实信息,通过API接口实现记忆数据的增删改查及用户画像查询。
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


