agentmem
Installation
SKILL.md
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"