DecisionNode: CLI and MCP Server for Semantic Decision Storage

What DecisionNode Does
DecisionNode provides persistent decision storage across AI tools through a CLI and MCP server. You record structured decisions as JSON, they get embedded as vectors, and your AI can search and retrieve them via MCP. All decisions for a project (or global decisions) are accessible from every AI tool you use.
Key Features
- Structured decision format: Each decision is JSON with scope, decision, rationale, and constraints
- MCP integration: AI tools can access decisions through the Model Context Protocol
- Semantic search: Decisions are embedded as vectors for semantic retrieval
- Cross-tool compatibility: Works with Claude Code, Cursor, Windsurf, Antigravity, or any MCP client
- Local-only: All data stays on your machine
- Free and open source: MIT licensed
Decision Structure Example
{
"id": "ui-001",
"scope": "UI",
"decision": "Use Tailwind CSS for all styling",
"status": "active",
"rationale": "Consistent design tokens, easy for AI to generate correct classes.",
"constraints": [
"No arbitrary values (e.g. w-[37px]) unless absolutely necessary"
]
}How It Works
The AI calls search_decisions through MCP when it needs context, instead of running RAG and injecting results into the context window. This provides a more structured alternative to memory.md/claude.md files, with the developer finding DecisionNode to be a useful complement to existing memory systems.
Additional Features
The tool includes agent behavior/search configuration, decision history tracking, conflict detection, and more tools accessible through MCP. The developer built it primarily with Claude Code after starting with Antigravity, finding it particularly useful when switching between different AI tools while maintaining consistent project decisions.
📖 Read the full source: r/ClaudeAI
👀 See Also

Bespoke AI v0.8.1: VS Code Autocomplete Extension for Code and Text
Bespoke AI v0.8.1 is a VS Code extension providing autocomplete for both code and text, leveraging Claude Code subscriptions via Anthropic's Agent SDK to avoid API charges while supporting multiple backends including Ollama.

Single-page chatbot interface for locally running Gemma 4 26B A4B
A developer built a single HTML page chatbot that connects to Gemma 4 26B A4B running locally with 32K context window at 50-65 tokens/second, sharded between a 7900 XT and 3060 Ti GPU. The interface includes full streaming, Markdown rendering, and parameter controls.

AGENTS-COLLECTION: 129 Claude Code Agents Organized in One Repository
A developer has compiled 129 Claude Code agents into a single repository in ~/.claude/agents/ format, ready for installation with a simple copy command. The collection includes the full agency-agents system with 68 personality-driven agents across multiple disciplines, plus additional agents for multi-agent team workflows.

Be My Butler: Multi-Agent Pipeline for AI Code Verification
Be My Butler is an open-source multi-agent pipeline where different AI models review each other's code through blind verification. The system addresses the problem of AI agents incorrectly reporting their own code as functional.