Anchormd: A Tool for Managing Context Across Claude AI Sessions

✍️ OpenClawRadar📅 Published: March 24, 2026🔗 Source
Anchormd: A Tool for Managing Context Across Claude AI Sessions
Ad

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
Ad

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

Ad

👀 See Also

MOOSE-Star: A 7B Model and 108K-Paper Dataset for Scientific Hypothesis Discovery – ICML 2026
Tools

MOOSE-Star: A 7B Model and 108K-Paper Dataset for Scientific Hypothesis Discovery – ICML 2026

MiroMind releases MOOSE-Star on Hugging Face: a 7B model (DeepSeek-R1-Distill-Qwen-7B fine-tune) for scientific hypothesis discovery, alongside the 108K-paper TOMATO-Star dataset. Benchmark shows MS-7B achieves 54.34% inspiration retrieval accuracy, beating GPT-5.4 and approaching Gemini-3 Pro.

OpenClawRadar
Hippo v0.21.0: Biologically-Inspired Memory for AI Agents with Multi-Tool Support
Tools

Hippo v0.21.0: Biologically-Inspired Memory for AI Agents with Multi-Tool Support

Hippo v0.21.0 introduces one-command setup for multiple AI coding tools including Claude Code, OpenCode, OpenClaw, Codex, Cursor, and Pi. The memory system features decay, retrieval strengthening, and consolidation with zero runtime dependencies.

OpenClawRadar
Browser CLI: A Token-Efficient Browser Automation Tool for AI Coding Agents
Tools

Browser CLI: A Token-Efficient Browser Automation Tool for AI Coding Agents

Browser CLI is a persistent headless Chromium daemon that provides browser automation via plain Bash commands, achieving ~95% token savings compared to Playwright MCP by reducing calls from ~1,500 tokens to ~75 tokens.

OpenClawRadar
Security scanning skill for AI coding agents checks deployments automatically
Tools

Security scanning skill for AI coding agents checks deployments automatically

A developer created a skill file that enables AI coding agents to automatically scan their own deployments for exposed .env files, open ports, missing security headers, and leaked source code. The scan runs after every deploy and takes about 30 seconds.

OpenClawRadar