用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill vanar-neutron-memory命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | vanar-neutron-memory |
| description | Save and recall agent memory with semantic search. Context that persists across every session. |
| user-invocable | true |
| metadata | {"openclaw":{"emoji":"🧠","requires":{"env":"[Truncated]"},"primaryEnv":"API_KEY"}} |
Every conversation, preference, and decision your agent makes can persist across sessions. Save what matters, and when you need it, semantic search finds the right context by meaning — not keywords. Every session builds on the last.
Manual — save and search with simple commands:
./scripts/neutron-memory.sh save "user prefers dark mode" "Preferences" — save context./scripts/neutron-memory.sh search "what theme does the user like" — find it by meaningAutomatic (opt-in) — enable hooks to capture and recall automatically:
See SETUP.md for the full setup guide. TL;DR:
export API_KEY=nk_your_key./scripts/neutron-memory.sh test./scripts/neutron-memory.sh save "Content to remember" "Title"
./scripts/neutron-memory.sh search "what do I know about X" 10 0.5
Arguments: QUERY LIMIT THRESHOLD(0-1)
./scripts/neutron-memory.sh diagnose
Checks all prerequisites: curl, jq, API key, connectivity, and authentication.
hooks/pre-tool-use.sh — Auto-Recall: Queries memories before AI turn, injects relevant contexthooks/post-tool-use.sh — Auto-Capture: Saves conversation after AI turnBoth are disabled by default (opt-in only). To enable:
export VANAR_AUTO_RECALL=true
export VANAR_AUTO_CAPTURE=true
POST /memory/save — Save text (multipart/form-data)POST /memory/search — Semantic search (JSON body)Auth: Authorization: Bearer $API_KEY — that's it. No other credentials needed.
No data is sent unless you run a command or explicitly enable auto-capture/auto-recall. Both hooks are disabled by default.
This skill only sends data you explicitly save (or opt-in auto-captured conversations) to the Neutron API. Here's exactly what happens:
| Action | What's sent | Where |
|---|---|---|
| Save | The text you pass to save or auto-captured conversation turns | POST /memory/save over HTTPS |
| Search | Your search query text | POST /memory/search over HTTPS |
| Auto-Recall | The user's latest message (used as search query) | POST /memory/search over HTTPS |
| Auto-Capture | User: {message}\nAssistant: {response} | POST /memory/save over HTTPS |
What is NOT sent:
All communication is over HTTPS to api-neutron.vanarchain.com. The source code is fully readable in the scripts/ and hooks/ directories — three short bash scripts, no compiled binaries.