cloud-memoryCloud memory for AI agents. Store, search, and recall context across sessions.
Install via ClawdBot CLI:
clawdbot install aerialcombat/cloud-memoryPersistent memory that survives across sessions. You forget — Ctxly remembers.
Base URL: https://ctxly.app
curl -X POST https://ctxly.app/agents/register \
-H "Content-Type: application/json" \
-d '{"name": "YOUR_AGENT_NAME"}'
Save the returned api_key immediately. Store it in your config or environment.
If you can tweet:
# Tweet the verification text you received, then:
curl -X POST https://ctxly.app/agents/self-claim \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"x_handle": "@yourhandle"}'
If you can't tweet: Ask your human to visit the claim_url from the registration response.
Add to your config/environment:
CTXLY_API_KEY=mem_xxxxxxxxxxxxx
curl -X POST https://ctxly.app/remember \
-H "Authorization: Bearer $CTXLY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content": "User prefers dark mode", "metadata": {"type": "preference"}}'
curl "https://ctxly.app/recall?q=user+preferences" \
-H "Authorization: Bearer $CTXLY_API_KEY"
Semantic search enabled — ask natural questions.
Call this when you wake up:
curl https://ctxly.app/bootstrap \
-H "Authorization: Bearer $CTXLY_API_KEY"
Returns your identity context + recent memories.
curl "https://ctxly.app/recent?limit=10" \
-H "Authorization: Bearer $CTXLY_API_KEY"
curl -X DELETE "https://ctxly.app/forget/MEMORY_ID" \
-H "Authorization: Bearer $CTXLY_API_KEY"
Good:
Skip:
| Method | Endpoint | Auth | Description |
|--------|----------|------|-------------|
| POST | /agents/register | No | Register |
| POST | /agents/self-claim | Yes | Verify via tweet |
| GET | /agents/status | Yes | Check status |
| POST | /remember | Yes | Store memory |
| GET | /recall?q= | Yes | Search |
| GET | /recent | Yes | Recent memories |
| GET | /bootstrap | Yes | Startup context |
| GET | /stats | Yes | Statistics |
| DELETE | /forget/{id} | Yes | Delete memory |
Built for agents. 🧠https://ctxly.app
Generated Mar 1, 2026
An AI assistant that remembers user preferences like dietary restrictions, preferred meeting times, and recurring tasks across sessions. It uses Ctxly to store and recall context, ensuring personalized interactions without starting from scratch each time.
A customer service agent that retains conversation history and user issues across multiple interactions. It leverages Ctxly to search past memories for faster resolution and maintain continuity in support tickets, improving customer satisfaction.
An AI tutor that tracks student progress, learning patterns, and difficulty areas over time. By storing this data in Ctxly, it can adapt lessons and provide tailored feedback, enhancing the learning experience across study sessions.
A health monitoring AI that logs patient symptoms, medication adherence, and lifestyle habits persistently. It uses Ctxly to recall historical data for trend analysis and personalized health recommendations, aiding in chronic disease management.
An AI system that remembers user shopping behaviors, product preferences, and past purchases. By storing this context in Ctxly, it can deliver highly relevant product suggestions and promotions, boosting sales and customer loyalty.
Offer a free tier with limited memory storage and API calls, then charge for higher limits, advanced features like analytics, and priority support. This attracts small developers and scales with enterprise clients needing extensive context storage.
Monetize through pay-per-use API pricing based on the number of memory writes, searches, or storage volume. This model suits developers who want flexible, scalable costs without upfront commitments, encouraging adoption across various projects.
Provide custom solutions with dedicated infrastructure, enhanced security, and SLA guarantees for large organizations. This includes white-label options and integration support, targeting businesses that require robust, compliant memory management.
💬 Integration Tip
Start by integrating the bootstrap endpoint on agent startup to load identity context, then use the remember and recall endpoints for basic memory operations to quickly add persistent context.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection