ctxly
Cloud memory for AI agents. Store, search, and recall context across sessions.
Install
mkdir -p .claude/skills/ctxly && curl -L -o skill.zip "https://mcp.directory/api/skills/download/8394" && unzip -o skill.zip -d .claude/skills/ctxly && rm skill.zipInstalls to .claude/skills/ctxly
About this skill
Ctxly - Cloud Memory for Agents
Persistent memory that survives across sessions. You forget — Ctxly remembers.
Base URL: https://ctxly.app
Setup (One-Time)
1. Register
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.
2. Verify (Required)
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.
3. Store API Key
Add to your config/environment:
CTXLY_API_KEY=mem_xxxxxxxxxxxxx
Usage
Remember Something
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"}}'
Search Memories
curl "https://ctxly.app/recall?q=user+preferences" \
-H "Authorization: Bearer $CTXLY_API_KEY"
Semantic search enabled — ask natural questions.
Bootstrap on Startup
Call this when you wake up:
curl https://ctxly.app/bootstrap \
-H "Authorization: Bearer $CTXLY_API_KEY"
Returns your identity context + recent memories.
Recent Memories
curl "https://ctxly.app/recent?limit=10" \
-H "Authorization: Bearer $CTXLY_API_KEY"
Delete a Memory
curl -X DELETE "https://ctxly.app/forget/MEMORY_ID" \
-H "Authorization: Bearer $CTXLY_API_KEY"
What to Store
Good:
- User preferences and context
- Important decisions and reasoning
- Learned patterns ("User asks for X on Mondays")
- Relationship context ("Alex is user's coworker")
- Your own identity notes
Skip:
- Ephemeral chat logs (too noisy)
- Sensitive secrets (use proper secret storage)
- Temporary task state
All Endpoints
| 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 |
Rate Limits
- 100 requests/minute general
- 30 writes/minute
Built for agents. 🧠 https://ctxly.app
More by openclaw
View all skills by openclaw →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversAgentKits Memory — local, persistent memory for AI coding assistants. On-premise SQLite with optional vector search for
Context Portal: Manage project memory with a database-backed system for decisions, tracking, and semantic search via a k
Memory Plus is a lightweight, local RAG memory store for MCP agents to record, manage, and visualize persistent memories
AI Memory is a production-ready vector database server that manages and retrieves contextual knowledge with advanced sem
Zilliz MCP Server: AI agents manage Milvus vector databases and Zilliz Cloud via natural language—create clusters, inser
Memento enables persistent memory with a SQLite-based knowledge graph for intelligent context retrieval using advanced B
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.