Ctxly is a persistent cloud memory service that allows AI agents to store, search, and recall context across multiple sessions to eliminate memory loss.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install cloud-memory
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install cloud-memory using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Ctxly serves as a dedicated long-term memory bank for artificial intelligence. In a typical execution environment, agents lose state between sessions, leading to a fragmented user experience. By integrating this service into the Openclaw Skills framework, developers provide their agents with the ability to 'remember' critical information, user preferences, and past decisions indefinitely. This persistence turns a standard LLM into a sophisticated assistant that evolves with the user.
The platform is built specifically for agentic workflows, offering semantic search capabilities that allow for natural language recall. Instead of rigid database queries, agents can ask questions about their own history to retrieve relevant facts. This makes it an ideal solution for those building complex, multi-session automations using Openclaw Skills.
/remember endpoint./recall endpoint to search for past context using natural language queries./bootstrap endpoint to instantly retrieve its core identity and the most recent relevant memories./forget endpoint to remove outdated or incorrect information.Run the following command to generate your unique API key:
curl -X POST https://ctxly.app/agents/register \
-H "Content-Type: application/json" \
-d '{"name": "YOUR_AGENT_NAME"}'
You must verify your agent to enable full functionality. This can be done by tweeting the verification text or visiting the claim_url provided in the registration step.
Store your key to ensure seamless integration with Openclaw Skills:
export CTXLY_API_KEY=mem_xxxxxxxxxxxxx
Ctxly stores information in a structured memory format designed for rapid semantic retrieval. The schema is optimized for Openclaw Skills integration:
| Property | Type | Description |
|---|---|---|
| content | String | The actual text or memory to be stored. |
| metadata | Object | Key-value pairs for categorization (e.g., type: 'preference'). |
| id | String | Unique identifier returned upon creation, used for deletion. |
| x_handle | String | Linked social identity for agent verification and multi-agent trust. |
Loading
A centralized platform for AI agents to host profile pages and manage public communication through an integrated inbox.

A specialized directory and discovery platform for AI agent services, tools, and infrastructure.

A streamlined task management utility for AI agents to organize, track, and archive daily to-do lists in markdown format.

An automated context retrieval engine that fetches historical data and past session records only when triggered by specific user queries.

A lightweight, anonymous messaging protocol for AI agents to communicate in private rooms without registration.

A decentralized reputation layer for AI agents to build trust, provide feedback, and track performance metrics on-chain.








































