By adorostkar
Persistent memory for AI agents — remember decisions, recall context, learn habits across sessions
Comprehensive memory quality review across 6 dimensions: purity, freshness, coverage, clarity, relevance, and structure. Generates prioritized findings with specific memory references and actionable recommendations.
Evidence-based memory optimization from real usage patterns. Analyzes recall performance, identifies bottlenecks, suggests consolidation/pruning/enrichment, and tracks improvement over time via checkpoint Q&A.
Structured memory creation workflow. Converts messy notes, conversations, and unstructured thoughts into well-typed, tagged, confidence-scored memories. Uses 1-question-at-a-time clarification to avoid cognitive overload.
Comprehensive memory quality review across 6 dimensions: purity, freshness, coverage, clarity, relevance, and structure. Generates prioritized findings with specific memory references and actionable recommendations.
Evidence-based memory optimization from real usage patterns. Analyzes recall performance, identifies bottlenecks, suggests consolidation/pruning/enrichment, and tracks improvement over time via checkpoint Q&A.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Reflex-based memory system for AI agents — retrieval through activation, not search.
NeuralMemory stores experiences as interconnected neurons and recalls them through spreading activation, mimicking how the human brain works. Instead of searching a database, memories surface through associative recall — activating related concepts until the relevant memory emerges.
| Aspect | RAG / Vector Search | NeuralMemory |
|---|---|---|
| Model | Search engine | Human brain |
| Query | "Find similar text" | "Recall through association" |
| Structure | Flat chunks + embeddings | Neural graph + synapses |
| Relationships | None (just similarity) | Explicit: CAUSED_BY, LEADS_TO, DISCUSSED |
| Temporal | Timestamp filter | Time as first-class neurons |
| Multi-hop | Multiple queries needed | Natural graph traversal |
| Lifecycle | Static | Decay, reinforcement, consolidation |
Example: "Why did Tuesday's outage happen?"
outage ← CAUSED_BY ← JWT ← SUGGESTED_BY ← Alice → full causal chainpip install neural-memory
With optional features:
pip install neural-memory[server] # FastAPI server + dashboard
pip install neural-memory[nlp-vi] # Vietnamese NLP
pip install neural-memory[all] # All features
/plugin marketplace add nhadaututtheky/neural-memory
/plugin install neural-memory@neural-memory-marketplace
That's it. MCP server, skills, commands, and agent are all configured automatically via uvx.
pip install neural-memory
Then add to your editor's MCP config:
{
"neural-memory": {
"command": "nmem-mcp"
}
}
No nmem init needed — the MCP server auto-initializes on first use.
# Store memories (type auto-detected)
nmem remember "Fixed auth bug with null check in login.py:42"
nmem remember "We decided to use PostgreSQL" --type decision
nmem todo "Review PR #123" --priority 7
# Recall memories
nmem recall "auth bug"
nmem recall "database decision" --depth 2
# Shortcuts
nmem a "quick note" # Short for remember
nmem q "auth" # Short for recall
nmem last 5 # Last 5 memories
nmem today # Today's memories
# Get context for AI injection
nmem context --limit 10 --json
# Brain management
nmem brain list
nmem brain create work
nmem brain use work
nmem brain health
nmem brain export -o backup.json
nmem brain import backup.json
# Codebase indexing
nmem index src/ # Index code into neural memory
# Memory lifecycle
nmem decay # Apply forgetting curve
nmem consolidate # Prune, merge, summarize
nmem cleanup # Remove expired memories
# Visual tools
nmem dashboard # Rich terminal dashboard
nmem ui # Interactive memory browser
nmem graph "auth" # Visualize neural connections
import asyncio
from neural_memory import Brain
from neural_memory.storage import InMemoryStorage
from neural_memory.engine.encoder import MemoryEncoder
from neural_memory.engine.retrieval import ReflexPipeline
async def main():
storage = InMemoryStorage()
brain = Brain.create("my_brain")
await storage.save_brain(brain)
storage.set_brain(brain.id)
# Encode memories
encoder = MemoryEncoder(storage, brain.config)
await encoder.encode("Met Alice to discuss API design")
await encoder.encode("Decided to use FastAPI for backend")
# Query through activation
pipeline = ReflexPipeline(storage, brain.config)
result = await pipeline.query("What did we decide about backend?")
print(result.context) # "Decided to use FastAPI for backend"
asyncio.run(main())
Once configured, these tools are available to your AI assistant:
npx claudepluginhub adorostkar/neural-memoryUpstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Consult multiple AI coding agents (Gemini, OpenAI, Grok, Perplexity, plus codex and antigravity CLIs when installed) to get diverse perspectives on coding problems
Permanent coding companion for Claude Code — survives any update. MCP-based terminal pet with ASCII art, stats, reactions, and personality.
Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research
v9.52.0 - Reliability wave: tangle contextual review correction loop with hard round ceiling, progress-supervised review rounds (per-agent stall watch, descendant-tree kills), council diversity and agy pin fixes, marketplace generator source-of-truth fix, provider troubleshooting runbook and cost-expectations docs. Run /octo:setup.
Complete creative writing suite with 10 specialized agents covering the full writing process: research gathering, character development, story architecture, world-building, dialogue coaching, editing/review, outlining, content strategy, believability auditing, and prose style/voice analysis. Includes genre-specific guides, templates, and quality checklists.