Save and recall agent memory with semantic search. Context that persists across every session.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install vanar-neutron-memory或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install vanar-neutron-memory⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/vanar-neutron-memory/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- 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": ["API_KEY"]}, "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.
安装 Vanar Neutron Memory 后,可以对 AI 说这些话来触发它
Help me get started with Vanar Neutron Memory
Explains what Vanar Neutron Memory does, walks through the setup, and runs a quick demo based on your current project
Use Vanar Neutron Memory to save and recall agent memory with semantic search
Invokes Vanar Neutron Memory with the right parameters and returns the result directly in the conversation
What can I do with Vanar Neutron Memory in my documents & notes workflow?
Lists the top use cases for Vanar Neutron Memory, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/vanar-neutron-memory/ 目录(个人级,所有项目可用),或 .claude/skills/vanar-neutron-memory/(项目级)。重启 AI 客户端后,用 /vanar-neutron-memory 主动调用,或让 AI 根据上下文自动发现并使用。
Vanar Neutron Memory 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Vanar Neutron Memory 可免费安装使用。请查阅仓库了解许可证信息。
Save and recall agent memory with semantic search. Context that persists across every session.
Vanar Neutron Memory 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using Vanar Neutron Memory
Identifies repetitive steps in your workflow and sets up Vanar Neutron Memory to handle them automatically