โ† All skills
Tencent SkillHub ยท Developer Tools

Vanar Neutron Memory

Save and recall agent memory with semantic search. Context that persists across every session.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Save and recall agent memory with semantic search. Context that persists across every session.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SETUP.md, SKILL.md, hooks/post-tool-use.sh, hooks/pre-tool-use.sh, scripts/neutron-memory.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.3.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Neutron Memory

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.

How It Works

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 meaning Automatic (opt-in) โ€” enable hooks to capture and recall automatically: Auto-Capture saves conversations after each AI turn Auto-Recall finds relevant memories before each AI turn and injects them as context

Quick Start

See SETUP.md for the full setup guide. TL;DR: Get a free API key at https://openclaw.vanarchain.com/ ($20 free credits, no credit card) export API_KEY=nk_your_key ./scripts/neutron-memory.sh test

Save

./scripts/neutron-memory.sh save "Content to remember" "Title"

Search

./scripts/neutron-memory.sh search "what do I know about X" 10 0.5 Arguments: QUERY LIMIT THRESHOLD(0-1)

Diagnose

./scripts/neutron-memory.sh diagnose Checks all prerequisites: curl, jq, API key, connectivity, and authentication.

Hooks (Auto-Capture & Auto-Recall)

hooks/pre-tool-use.sh โ€” Auto-Recall: Queries memories before AI turn, injects relevant context hooks/post-tool-use.sh โ€” Auto-Capture: Saves conversation after AI turn Both are disabled by default (opt-in only). To enable: export VANAR_AUTO_RECALL=true export VANAR_AUTO_CAPTURE=true

API Endpoints

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.

Security & Privacy

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: ActionWhat's sentWhereSaveThe text you pass to save or auto-captured conversation turnsPOST /memory/save over HTTPSSearchYour search query textPOST /memory/search over HTTPSAuto-RecallThe user's latest message (used as search query)POST /memory/search over HTTPSAuto-CaptureUser: {message}\nAssistant: {response}POST /memory/save over HTTPS What is NOT sent: No local files are read or uploaded No environment variables (other than the API key for auth) No system information, file paths, or directory contents No data from other tools or skills 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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs
  • SKILL.md Primary doc
  • SETUP.md Docs
  • hooks/post-tool-use.sh Scripts
  • hooks/pre-tool-use.sh Scripts
  • scripts/neutron-memory.sh Scripts