用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill ctxly命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | ctxly |
| description | Cloud memory for AI agents. Store, search, and recall context across sessions. |
| homepage | https://ctxly.app |
Persistent 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