Anchormd: A Tool for Managing Context Across Claude AI Sessions

Anchormd is a tool designed to solve the problem of context loss when working with Claude AI across multiple sessions. The developer behind it was frustrated with constantly re-explaining project architecture at the start of every session in both Claude chat and Claude Code.
The Problem with Existing Approaches
Previous attempts included giant system prompts, CLAUDE.md files, and pasting documentation directly. These approaches had the same fundamental issue: either they used too much context (burning tokens) or provided too little context (leading to wrong assumptions by the agent).
How Anchormd Works
Anchormd takes a different approach. You write short curated markdown plans describing your architecture and key decisions. The tool indexes these into a searchable knowledge graph. At the start of each session, the agent loads the project overview and then queries for specific details as needed.
Workflow
- Plan a feature in conversation with Claude
- Save it with:
anchormd write auth-system - In the next session, Claude automatically loads the project overview
- When it needs specifics, it runs:
anchormd find "how does auth work"and gets back the exact plan section
Key Differentiators from a Docs Folder
- Real search capabilities using BM25 + semantic + hybrid search
- Auto-discovers relationships between plans through entity extraction (shared files, models, routes)
- Supports deep linking into sections
Claude Code Integration
For Claude Code specifically, Anchormd ships with a SKILL.md file so the skill is available immediately.
Availability
The tool is free and open source, available at https://github.com/sultanvaliyev/anchormd.
Future Considerations
The developer is considering adding auto-staleness detection for plans and is seeking feedback on real pain points from users.
📖 Read the full source: r/ClaudeAI
👀 See Also

nan-forget: Local AI coding memory in a single SQLite file
nan-forget is a memory tool for AI coding agents that stores context in a single SQLite file (~3MB) with no background services. It uses a 3-stage retrieval pipeline and works across Claude Code, Cursor, and terminal via CLI.
Researcher Builds Veracity-Checking Skill for Claude Code, Finds Hallucinations in Own Documentation
A researcher built a Claude Code skill called /veracity-tweaked-555 that decomposes documents into atomic claims and verifies each via web search using 16 parallel agents across 4 waves. When self-audited, the skill scored 62/100 due to fabricated statistics and inflated claims in its own documentation.

sourcecode: Open-Source CLI to Compress Large Java/Spring Monorepos for Claude
sourcecode CLI reduces a ~4k-file Java/Spring monorepo from ~3M tokens to 1.7k tokens (compact mode). Currently focuses on context compression, git hotspot detection, and symbol lookup.

JANG Quantization Method Improves MLX Performance for Large Models
A new quantization method called JANG enables running large models like MiniMax-M2.5 and Qwen 3.5 on Apple's MLX framework with significantly better performance than standard MLX quantization, achieving near-native speeds while maintaining accuracy comparable to higher-bit quantizations.