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

CC-Canary: Detect Regressions in Claude Code with Local JSONL Analysis
CC-Canary reads Claude Code session logs and produces a forensic report on model drift, including read:edit ratio, reasoning loops, cost trends, and auto-detected inflection dates.

Open-Source Ralph Loop Toolkit for Claude Code: Pickle Rick and Mr. Meeseeks Agents
An open-source extension for Claude Code implements the Ralph Loop technique with two autonomous agents: Pickle Rick for PRD-driven development and Mr. Meeseeks for code review. Both use tmux with live dashboards and macOS notifications.

Claude Code Skill Delegates Coding to Mistral/DeepSeek: 57M Tokens Saved, 90-100% Cost Reduction
A Claude Code skill called vibe-skill delegates low-level coding to cheap models like Mistral or DeepSeek while keeping Claude's planning. After 254 runs over 10 days, it saved 57M tokens and achieved 90-100% cost savings with 98% success rate.

Local AI Agent Achieves Sub-Second STT and TTS Latency with Open-Source Servers
A developer achieved ~0.2s STT latency using Whisper large-v3-turbo with hybrid thread-managed GPU architecture and ~250ms TTS latency with Coqui-TTS optimized for low-latency synthesis. Both implementations are fully self-hosted and open-sourced.