Interactive Mind Map Visualizes Claude Tool Ecosystem

A developer has built an interactive mind map to help track the Claude tool ecosystem, addressing confusion about where features live across different interfaces.
Motivation and Purpose
The creator needed to convey information to their company for a Cowork rollout but kept losing track of:
- What features exist in Chat, Cowork, and Code
- Which connectors work in which tool
- What's shared versus unique between tools
- Pricing differences between plans
The creator notes this complexity is unlikely to simplify over time as new features and services are announced.
Technical Implementation
The mind map is implemented as:
- A single HTML file using D3.js
- Standard mind map interaction patterns: click nodes to expand/collapse, hover for details
- Details include pricing, platform availability, and feature specifics
Availability and Notes
The live version is hosted at: https://jeffreyfudge.github.io/claude-ecosystem-mindmap/
Important notes from the creator:
- Built with Claude's assistance but under the creator's direction
- Creator has done their best to QA everything but acknowledges potential inaccuracies
- Not mobile-friendly
- All feedback welcomed
📖 Read the full source: r/ClaudeAI
👀 See Also

Calmkeep: An External Continuity Layer to Counter LLM Drift in Extended Sessions
Calmkeep is an external continuity layer designed to counteract LLM drift in extended sessions, showing 85% integrity vs 60% for standard Claude in a 25-turn backend build test and 100% vs 50% in a legal session.

rawq: Local CLI Tool for AI Agent Semantic Code Search
rawq is an open-source CLI tool that helps AI agents find relevant code using semantic search with a 33MB local model via ONNX runtime and BM25 lexical search via tantivy. In testing, AI agents using rawq consumed 4x fewer tokens and completed tasks 2x faster compared to blind read/grep tools.

HostedShell: A Web-Based Deployment Solution for OpenClaw Agents
HostedShell is a hosted version of OpenClaw that eliminates local CLI setup, dependency management, and manual pairing by providing a web console with direct terminal access and filesystem updates.

Engram: Hybrid Memory Plugin for OpenClaw Agents — Vector + Semantic Search with Decay
Engram gives OpenClaw agents persistent memory across sessions using SQLite+FTS5 for exact recall and LanceDB for semantic search, with decay classes and auto-capture hooks.