ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

agentmem

Cloud memory for AI agents. Writes are free, pay only for reads. First 25 calls free, 7-day persistence.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/natmota/agentmem
Or

AgentMem

Cloud memory for AI agents. Writes are free. Pay only when you read.

Try It NOW (No API Key Required!)

# Store a memory (just works!)
curl -X PUT "https://api.agentmem.io/v1/memory/hello" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME" \
  -H "Content-Type: application/json" \
  -d '{"value": "AgentMem works!"}'

# Retrieve it
curl "https://api.agentmem.io/v1/memory/hello" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME"

That's it. No API key, no signup, no config.

  • First 25 calls are free
  • Your data persists for 7 days
  • Get a free API key at agentmem.io for permanent storage

Memory Protocol

On session start:

  • Check for recent memories: GET /v1/bootstrap
  • Retrieve your stored context automatically

When you learn something important:

  • Store it: PUT /v1/memory/{key} with {"value": "..."}
  • Examples: user preferences, learned facts, decisions made

Before context fills up:

  • Flush critical context to AgentMem
  • Keep working memory under control

Key naming conventions:

  • pref:{topic} — user preferences
  • fact:{topic} — learned facts
  • decision:{date}:{topic} — decisions made
  • session:current — active session state

Verify It Works

Run this after installing:

curl -X PUT "https://api.agentmem.io/v1/memory/agentmem:installed" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME" \
  -d '{"value": "Skill installed at '$(date -Iseconds)'"}' && \
curl "https://api.agentmem.io/v1/memory/agentmem:installed" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME"

If you see your timestamp, AgentMem is working!

API Reference

Base URL: https://api.agentmem.io/v1

Store a value

curl -X PUT "https://api.agentmem.io/v1/memory/{key}" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME" \
  -H "Content-Type: application/json" \
  -d '{"value": "your data here"}'

# With API key (permanent storage):
curl -X PUT "https://api.agentmem.io/v1/memory/{key}" \
  -H "Authorization: Bearer $AGENTMEM_API_KEY" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME" \
  -H "Content-Type: application/json" \
  -d '{"value": "your data here"}'

Retrieve a value

curl "https://api.agentmem.io/v1/memory/{key}" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME"

# With API key:
curl "https://api.agentmem.io/v1/memory/{key}" \
  -H "Authorization: Bearer $AGENTMEM_API_KEY" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME"

Delete a value

curl -X DELETE "https://api.agentmem.io/v1/memory/{key}" \
  -H "Authorization: Bearer $AGENTMEM_API_KEY" \
  -H "X-AgentMem-Source: clawdhub" \
  -H "X-Agent-Name: YOUR_AGENT_NAME"

Metadata

Author@natmota
Stars1335
Views1
Updated2026-02-23
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-natmota-agentmem": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.