Contextium: Open-Source Persistent Context Framework for Claude Code

Contextium is an open-source persistent context framework built specifically for Claude Code. It solves the problem of having to re-explain context in each new Claude Code session by creating a structured repository system that compounds knowledge over time.
What It Does
Contextium organizes information into markdown files across several categories: apps, integrations, knowledge domains, projects, and journals. The core mechanism is a CLAUDE.md file that acts as a context router, telling Claude which files to load based on the current task. This prevents context window bloat by lazy-loading only relevant content.
Key Features
- Context Router Table: The CLAUDE.md file contains a routing table that triggers specific file loads:
| Trigger | Load | |----------------------|-----------------------------------| | Project work | projects/README.md | | Person mentioned | knowledge/people/{name}/ | | Integration/API call | integrations/{name}/README.md | | Prior work | journal/ (latest) | - Multi-Agent Support: Routes research to Gemini (for cost efficiency) and bulk edits to Codex (for speed) while keeping Claude focused on strategy and decisions
- Template Structure: The open-source version ships with 6 sample apps and documentation for 27 integrations
- Real-World Scale: The creator's personal instance contains 35 app protocols, 27 integration connectors, 100+ completed projects with decision logs, and 600+ journal entries
Installation and Setup
Install with a single command:
bash curl -sSL contextium.ai/install | bashThe installer uses bash and gum for the terminal UI, asks for your name, selects your AI agent (supports Claude Code plus 8 others), chooses integrations, and sets up your repository. The process takes about 5 minutes and works on macOS and Linux.
Development Process
The creator built Contextium over several months using Claude Code, which wrote approximately 90% of the code. This included:
- The installer script (bash + gum)
- Adaptation of 27 integration READMEs
- Agent configuration templates
- An Astro website
- Debugging across multiple test runs on fresh VMs
Technical Details
- License: Apache 2.0
- GitHub: https://github.com/Ashkaan/contextium
- Website: https://contextium.ai
📖 Read the full source: r/ClaudeAI
👀 See Also

Apideck CLI: A Low-Context Alternative to MCP for AI Agents
Apideck CLI is an AI-agent interface that uses ~80 tokens for its agent prompt instead of tens of thousands for tool schemas, addressing MCP's context window consumption problem. Benchmarks show MCP can cost 4 to 32× more tokens than CLI for identical operations.

Claudigotchi: Physical Tamagotchi Device That Feeds on Claude Code Activity
Claudigotchi is a physical desktop creature running on an ESP32 with an LCD screen that connects to Claude Code via a plugin. The device's hunger system responds to coding activity, with visual states and sound effects that escalate when Claude is left idle.

Vigil: A Cryptographic ID System for OpenClaw Agents to Prevent Blocking
A developer running OpenClaw agents has identified that anonymous agent traffic is increasingly being blocked by sites, and proposes Vigil—a sign-in system that gives agents cryptographic IDs to build reputation and avoid indiscriminate blocking.

Deblank: Tool to Strip Code Formatting for LLM Token Reduction
Deblank is an open-source tool that strips code formatting (indentation, whitespace, line breaks) before sending to LLMs, reducing tokens by ~30% for Java/C++ and ~9% for Python with ~76ms latency. It supports Python, Java, C/C++, C#, JS/TS, and Go.