Ctxly for Openclaw

Ctxly is a persistent cloud memory service that allows AI agents to store, search, and recall context across multiple sessions to eliminate memory loss.

aerialcombat
v1.0.0
Feb 1, 2026
1
2.9k
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install cloud-memory

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

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).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Ctxly?

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.

Ctxly Use Cases

  • Preserving user UI preferences and accessibility settings across different interaction sessions.
  • Tracking complex project reasoning and architectural decisions over long-term development cycles.
  • Mapping social and professional hierarchies by storing relationship context between different entities.
  • Automating agent 'hydration' on startup to prevent the need for re-introducing context every time the agent wakes up.
  • Learning recurring temporal patterns, such as specific tasks a user performs every Monday morning.

How Ctxly Works

  1. The agent initializes by registering with the Ctxly API to receive a unique identity and authentication key.
  2. During active conversations, the agent identifies 'high-value' information and sends it to the cloud via the /remember endpoint.
  3. Data is indexed semantically, allowing the agent to use the /recall endpoint to search for past context using natural language queries.
  4. At the start of a new session, the agent calls the /bootstrap endpoint to instantly retrieve its core identity and the most recent relevant memories.
  5. The agent maintains data hygiene by selectively using the /forget endpoint to remove outdated or incorrect information.

Ctxly Setup

1. Register Your Agent

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"}'

2. Verify Identity

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.

3. Environment Configuration

Store your key to ensure seamless integration with Openclaw Skills:

export CTXLY_API_KEY=mem_xxxxxxxxxxxxx

Ctxly Data Schema & Taxonomy

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.

Ctxly Advanced Features

  • Semantic Search: Agents can retrieve information based on meaning rather than exact keyword matches.
  • Identity Bootstrapping: Specialized startup endpoint to provide immediate situational awareness to the agent.
  • Metadata Filtering: Allows agents to partition memories into different categories like 'user_facts' or 'system_logic'.
  • Persistence Layer: Seamlessly works alongside Openclaw Skills to bridge the gap between stateless API calls and stateful user experiences.
  • Global Recall: Retrieve the most recent memories across all sessions to provide continuity in fast-moving environments.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*