Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:May 6, 2026 at 08:57
File Explorer
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | humanoid-memory |
| description | AI记忆系统。基于人脑模型的V-score记忆整合和艾宾浩斯遗忘曲线。当用户说"记忆管理"、"记忆系统"时使用。 |
| version | 1.0.0 |
| user-invocable | true |
| triggers | ["humanoid memory","记忆管理"] |
Brain-inspired memory for AI agents with V-score consolidation and Ebbinghaus forgetting.
Humanoid Memory is an OpenClaw skill that implements a cognitive memory system inspired by brain architecture:
V = 1 / (1 + e^-(wc*C + ws*S + wm*M - wn*N))
Where:
user_text → Semantic document (retrievable)ai_text → Metadata (context only)claw skill install humanoid-memory
Environment variables:
| Variable | Default | Description |
|---|---|---|
HUMANOID_EMBEDDING | ollama | Embedding provider (ollama/openai/mock) |
OLLAMA_URL | http://localhost:11434 | Ollama server URL |
OLLAMA_MODEL | nomic-embed-text | Embedding model |
HUMANOID_LLM | ollama | LLM for evaluation |
HUMANOID_V_THRESHOLD | 0.5 | Memory consolidation threshold |
HUMANOID_FORGET_RATE | 0.005 | Ebbinghaus decay rate |
HUMANOID_S_DESC | - | Custom significance description |
# Search memories
claw memory humanoid search "my preferences"
# List memories
claw memory humanoid list --limit=10
# Show stats
claw memory humanoid stats
# Test system
claw memory humanoid test
# Wipe all memories
claw memory humanoid wipe
HumanoidMemory
├── config.js # V-score weights, thresholds
├── physics.js # Core math (V-score, Ebbinghaus)
├── embeddings.js # Ollama/OpenAI/Mock providers
├── hnsw.js # Vector index
├── storage.js # Memory persistence
├── evaluator.js # C/S/N LLM evaluation
├── engine.js # Cognitive orchestration
└── hooks/
├── request-before.js # Inject memories
├── request-after.js # Store interactions
└── session-end.js # Cleanup
This skill registers OpenClaw hooks:
request-before → Injects relevant memories into contextrequest-after → Stores user/AI interaction as memorysession-end → Logs memory stats| Feature | humanoid | openclaw-memory |
|---|---|---|
| V-score | ✅ | ❌ (simple importance) |
| Ebbinghaus | ✅ | ❌ (7-day TTL) |
| Tensor fusion | ✅ | ❌ |
| LLM evaluation | ✅ C/S/N | ❌ |
| HNSW index | ✅ | ❌ |
| Multi-agent | ✅ | ✅ |
| x402 payments | ❌ | ✅ |
MIT