Cloudctx
Description
Persistent memory for Claude Code. One command, full recall.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
CloudCtx
Persistent memory for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). One command, full recall.
The problem
Claude Code forgets everything between sessions. When context gets long, it compacts — and forgets even more. You end up re-explaining your project, your preferences, and your past decisions. Every. Single. Time.
The fix
CloudCtx gives Claude Code permanent memory. Every conversation is indexed into a local SQLite database. Your agent can search across months of history instantly, survives compaction without losing context, and you can jump back into any saved thread with a single command.
# Prereq: Bun (https://bun.sh)
curl -fsSL https://bun.sh/install | bash
npm install -g cloudctx
cloudctx init
That's it. Zero config. Works immediately.
Three features that matter
1. Persistent memory
Every message from every Claude Code session is indexed into a local SQLite database with FTS5 full-text search. Your agent can recall past errors, decisions, and solutions across all projects and sessions.
Claude searches it automatically (CloudCtx adds instructions to your `CLAUDE.md`), or you can search manually:
# Full-text search across all conversations
cloudctx query "redis connection timeout"
# Raw SQL for complex queries
cloudctx sql "SELECT type, substr(content,1,200), timestamp FROM messages WHERE content LIKE '%deploy%' ORDER BY timestamp DESC LIMIT 5"
The database grows with you. Months of conversations, tens of thousands of messages — SQLite handles it without breaking a sweat.
2. Compaction recovery
When Claude Code compresses your context (manually via `/compact` or automatically when the conversation gets long), important details disappear. CloudCtx detects compaction and automatically re-injects the last 40 messages from your database back into the conversation.
The result: your agent picks up where it left off instead of starting from scratch. No more "I don't have conte
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11