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

Persistent AI Advisor with Cross-Platform Memory: Tracks Decision History for 3 Months
A Reddit user built a persistent AI advisor that remembers every product decision across Claude Code, Cursor, and a web interface, catching contradictions and improving over months.

Developer builds .NET SaaS template generator with Claude Code, shares workflow insights
A developer open-sourced NETrock, a .NET 10 SaaS starter template with authentication, ORM, and background jobs, then built a client-side generator for it using Claude Code. The generator lets users pick features and download a working .zip project that stays in their browser.

Local-First Movie Recap Pipeline Using Whisper + CLIP + Ollama
A fully local pipeline that auto-generates narrated movie recap videos using Whisper, CLIP, Ollama, Edge TTS, and FFmpeg. Drop in a movie file, get a narrated recap in ~15 minutes.

Claude Pulse Browser Extension Surfaces Token Counts, Cache Timers, and Rate Limits on Claude.ai
Claude Pulse is a client-side Chrome extension that adds a real-time dashboard to Claude.ai showing per-message token counts, total context usage, prompt cache expiry timer, and rate limit progress bar. Also includes chat export to Markdown.