用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Wike-CHI/acquisition-agent --skill humanoid-memory命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
红龙工业设备 AI 智能获客系统。B2B 全栈 SDR,覆盖客户发现→背景调查→开发信触达→智能报价→Pipeline 管理,支持 WhatsApp + Email + Telegram + LinkedIn 多渠道。基于 OpenClaw Agent 技能集群。
获客系统初始化引导 v2.1。首次使用时引导用户配置凭据、生成工作台配置、挂载NAS、测试邮箱、安装依赖。当用户说"初始化获客系统"、"开始使用获客系统"、"一键安装依赖"时触发。
获客工作流参考(质量门控 + 阶段定义)。执行引擎已内置 — 实际编排使用 create_agent + spawn_agent,不再需要手动按步骤执行。本文件仅保留获客专用的质量检查点和阶段定义。
基于 SOC 职业分类
正在显示 SKILL.md
| name | humanoid-memory |
| description | AI记忆系统。基于人脑模型的V-score记忆整合和艾宾浩斯遗忘曲线。当用户说"记忆管理"、"记忆系统"时使用。 |
| version | 1.0.0 |
| user-invocable | true |
| triggers | ["humanoid memory","记忆管理"] |
Skill Graph: 领域 → [[_index-intelligence|情报与知识领域]] | 上游 ← [[_index-intelligence|情报领域]] | 下游 → 对话记忆 → 客户交互历史
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