# Send Vanar Neutron Memory to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vanar-neutron-memory",
    "name": "Vanar Neutron Memory",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/naeemmaliki036/vanar-neutron-memory",
    "canonicalUrl": "https://clawhub.ai/naeemmaliki036/vanar-neutron-memory",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vanar-neutron-memory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vanar-neutron-memory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SETUP.md",
      "SKILL.md",
      "hooks/post-tool-use.sh",
      "hooks/pre-tool-use.sh",
      "scripts/neutron-memory.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "vanar-neutron-memory",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T13:29:30.985Z",
      "expiresAt": "2026-05-17T13:29:30.985Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vanar-neutron-memory",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vanar-neutron-memory",
        "contentDisposition": "attachment; filename=\"vanar-neutron-memory-1.3.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vanar-neutron-memory"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vanar-neutron-memory"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vanar-neutron-memory",
    "downloadUrl": "https://openagent3.xyz/downloads/vanar-neutron-memory",
    "agentUrl": "https://openagent3.xyz/skills/vanar-neutron-memory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vanar-neutron-memory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vanar-neutron-memory/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: naeemmaliki036
- Version: 1.3.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T13:29:30.985Z
- Expires at: 2026-05-17T13:29:30.985Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vanar-neutron-memory)
- [Send to Agent page](https://openagent3.xyz/skills/vanar-neutron-memory/agent)
- [JSON manifest](https://openagent3.xyz/skills/vanar-neutron-memory/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vanar-neutron-memory/agent.md)
- [Download page](https://openagent3.xyz/downloads/vanar-neutron-memory)