humanoid-memory

Consolidate and recall long-term conversational memories using V-score and tensor fusion.

2|Updated Mar 31, 2026
One-click install
npx skills add https://github.com/Wike-CHI/acquisition-agent --skill humanoid-memory
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: humanoid-memory
Source: https://github.com/Wike-CHI/acquisition-agent/tree/main/skills/humanoid-memory
Command: npx skills add https://github.com/Wike-CHI/acquisition-agent --skill humanoid-memory

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Humanoid-memory provides a cognitive memory system for AI agents to consolidate, recall, and automatically manage long-term conversational context so agents remember important user facts and forget noise over time.

Core Features & Use Cases

  • V-score consolidation combining coherence, significance, noise, and resonance to decide what to store.
  • Tensor fusion that merges similar memories and HNSW-backed semantic search for fast vector retrieval.
  • Ebbinghaus forgetting curve for exponential decay, LLM-based C/S/N evaluation, hooks to inject memories into requests, and per-agent persistent storage.
  • Use Case: Keep track of user preferences across sessions, inject relevant prior interactions into prompts, and automatically purge decayed or low-value memories.

Quick Start

Use humanoid-memory to consolidate recent interactions and recall top relevant memories for the query "my preferences".

Frequently Asked Questions about humanoid-memory

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

FAQPage Schema
How do I implement long-term memory consolidation for AI agents across sessions?

Long-term memory consolidation for AI agents is implemented using V-score consolidation combining coherence, significance, noise, and resonance to decide what to store across conversational sessions. Tensor fusion then merges similar memories while HNSW-backed semantic search provides fast vector retrieval.

What is V-score consolidation and how does it filter conversational memory?

V-score consolidation is an evaluation mechanism that combines coherence, significance, noise, and resonance to decide what memories to store. It filters conversational memory by LLM-based C/S/N evaluation to retain important user facts and discard noise.

How do I automate memory lifecycle management with exponential forgetting?

Automate memory lifecycle management with exponential forgetting by applying the Ebbinghaus forgetting curve to trigger exponential decay. This automatically purges decayed or low-value memories from per-agent persistent storage during sessions without manual intervention.

Does humanoid-memory work with HNSW semantic search and vector embeddings?

Humanoid-memory works with HNSW semantic search and vector embeddings to provide fast vector retrieval. It uses tensor fusion to merge similar memories and HNSW-backed semantic search to inject relevant prior interactions into agent prompts.

Can I use this memory system for context injection into LLM prompts?

You can use this memory system for context injection into LLM prompts via hooks that automatically inject relevant prior interactions and recalled memories into requests. This enables conversational agents to track user preferences across sessions.

What's the best way to track user preferences in conversational agents over time?

The best way to track user preferences in conversational agents over time is combining per-agent persistent storage with V-score consolidation and the Ebbinghaus forgetting curve. This retains important user facts while automatically purging decayed memories.