بنقرة واحدة
automem
Persistent AutoMem memory via the legacy curl-based AutoMem skill.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Persistent AutoMem memory via the legacy curl-based AutoMem skill.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Persistent AutoMem memory via the native AutoMem OpenClaw plugin tools.
Persistent AutoMem memory via mcporter-exposed AutoMem tools.
Persistent memory management for Claude Code via AutoMem. Use this skill when: - Starting a session (recall project context, decisions, patterns) - Making architectural decisions or library choices - Fixing bugs (store root cause and solution) - Learning user preferences or code style - Debugging issues (search for similar past problems)
Deprecated compatibility template. Prefer the OpenClaw plugin; use skill-mcp or skill-legacy only when you specifically need those modes.
| name | automem |
| description | Persistent AutoMem memory via the legacy curl-based AutoMem skill. |
| requires_env | ["AUTOMEM_API_URL"] |
| optional_env | ["AUTOMEM_API_KEY"] |
| user-invocable | true |
| metadata | {"openclaw":{"skillKey":"automem","primaryEnv":"AUTOMEM_API_KEY","requires":{"env":["AUTOMEM_API_URL"]}}} |
This mode uses direct HTTP calls with curl.
Base URL: $AUTOMEM_API_URL
Store memory:
curl -s -X POST "$AUTOMEM_API_URL/memory" \
-H "Content-Type: application/json" \
${AUTOMEM_API_KEY:+-H "Authorization: Bearer $AUTOMEM_API_KEY"} \
-d '{
"content": "Brief title. Context and details. Impact/outcome.",
"tags": ["project-slug", "decision"],
"importance": 0.7
}'
Recall memory:
curl -s \
${AUTOMEM_API_KEY:+-H "Authorization: Bearer $AUTOMEM_API_KEY"} \
"$AUTOMEM_API_URL/recall?query=QUERY&limit=20&format=detailed"
Update memory:
curl -s -X PATCH "$AUTOMEM_API_URL/memory/MEMORY_ID" \
-H "Content-Type: application/json" \
${AUTOMEM_API_KEY:+-H "Authorization: Bearer $AUTOMEM_API_KEY"} \
-d '{"content":"Updated context."}'
Delete memory:
curl -s -X DELETE "$AUTOMEM_API_URL/memory/MEMORY_ID" \
${AUTOMEM_API_KEY:+-H "Authorization: Bearer $AUTOMEM_API_KEY"}
tags=preference, then task context with one semantic query built from the user's actual nouns.tags= parameters — bugfix/solution tagging is incomplete, and a tag gate hides cross-corpus fixes.openclaw.memory-core and local memory files alongside AutoMem when file-backed notes are useful./health when AutoMem requests are failing and you need to debug the connection.