neural-memory

Store and recall AI agent memories via a neural graph with spreading activation.

235|66|Updated Feb 4, 2026
One-click install
npx skills add https://github.com/nhadaututtheky/neural-memory --skill neural-memory-nhadaututtheky
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: neural-memory
Source: https://github.com/nhadaututtheky/neural-memory/tree/main/integrations/neural-memory
Command: npx skills add https://github.com/nhadaututtheky/neural-memory --skill neural-memory-nhadaututtheky

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

NeuralMemory provides a persistent associative memory for AI agents by building a neural graph where memories connect via typed synapses and are recalled through spreading activation, instead of relying on keyword or vector search. It uses Hebbian learning to strengthen frequently co-accessed memories, while idle memories decay naturally, and it auto-detects contradictions to maintain consistency.

Core Features & Use Cases

  • Graph-based recall: traverse explicit relationships to surface conceptually related memories even when keywords differ.
  • Hebbian learning & decay: memories strengthen with use and fade over time for relevance.
  • Contradiction detection: auto-detects conflicting memories and prioritizes current knowledge.
  • Zero-LLM dependency: runs offline without external embeddings or LLMs.
  • Local brain storage: memories persist in a local database with independent brain instances.

Quick Start

Install NeuralMemory with pip and begin storing and recalling memories across sessions.

Frequently Asked Questions about neural-memory

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I give my AI agent persistent memory across sessions?

Associative memory for AI agents uses a neural graph where memories connect via typed synapses and are recalled through spreading activation. This approach surfaces conceptually related information by traversing explicit relationships rather than relying on keyword matching.

How do I store and recall agent memories offline without using vector search?

Storing and recalling agent memories offline is achieved using a local neural graph with spreading activation, requiring zero LLM dependencies or external embeddings. The system uses Hebbian learning to strengthen frequently co-accessed memories and applies natural decay to idle ones.

Does associative memory with spreading activation work offline without LLM dependencies?

Associative memory with spreading activation runs completely offline with zero LLM dependency, requiring no external embeddings or API calls. Memories persist in a local database, allowing independent brain instances to maintain long-term context, decisions, and errors without network connectivity.

How does Hebbian learning and memory decay handle contradictions in a neural graph?

Hebbian learning and memory decay handle contradictions by auto-detecting conflicting memories and prioritizing current knowledge. Frequently co-accessed memories strengthen over time through Hebbian learning, while idle memories fade naturally, ensuring the neural graph maintains relevance and consistency.

What are the limitations of using a local neural graph for long-term agent context?

Limitations of using a local neural graph include relying entirely on explicit relationship traversal instead of semantic vector search, which may miss unconnected concepts. Memory relevance depends heavily on the accuracy of spreading activation and Hebbian learning parameters configured for the specific agent.