IronAdamant

Stele Context — AI skill for Claude Code

AI community

Local context cache for LLM agents.

How to install Stele Context

This entry records only its repository, not the path inside it, so there is no exact command to give. Open IronAdamant/stele-context and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Stele Context does

Local context cache for LLM agents. 100% offline, zero dependencies.

Alternatives in AI

  • Memory Forge Rs — Stop resetting satisfying AI chats — edit the memory instead 474 ★
  • TurboLLM — Run any local LLM engine, auto-tuned to your GPU — polished web UI + OpenAI/Anthropic-compatible API 251 ★
  • Athfoujf — Claude Opus 2026 Pro Toolkit – AI Pair Programmer & Desktop CLI Redefined local AI Coding Hub: Run Claude Mode 250 ★

README

Stele Context

**Persistent memory for AI coding agents. A zero-dependency MCP server that lets Claude Code, Claude Desktop, Cursor, and any MCP-compatible AI coding assistant remember your codebase between conversations — instead of re-reading every file from scratch.**

[![PyPI](https://img.shields.io/pypi/v/stele-context.svg)](https://pypi.org/project/stele-context/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/) [![Zero Dependencies](https://img.shields.io/badge/dependencies-zero-green.svg)](https://github.com/IronAdamant/stele-context) [![Tests](https://github.com/IronAdamant/stele-context/actions/workflows/test.yml/badge.svg)](https://github.com/IronAdamant/stele-context/actions)

The Problem: AI Agents Re-Read Everything

Every new conversation with Claude Code, Cursor, or any other LLM coding tool starts from zero. The agent re-reads the same files it read yesterday, burning thousands of tokens on code that hasn't changed. On a medium-sized project that's real money and real context-window space spent re-learning what the agent already knew.

Stele Context is a local context cache that fixes this: index once, then only pay for what actually changed.

What It Does

  1. Indexes your project files once — code, docs, configs, even images and PDFs — into a local SQLite database
  2. Detects file changes with an mtime+size fast path and SHA-256 verification — unchanged files cost zero re-reads
  3. Returns a diff instead of the whole file when something did change — a 1-line edit in a 600-line file comes back as a ~60-token unified diff, not a 10,000-token re-read
  4. Searches your codebase by meaning, keyword, or exact pattern — semantic code search, BM25, and token-budgeted grep in one tool
  5. Maps how your code connects — a symbol graph for find-references, go-to-definition, a