โ† All skills
Tencent SkillHub ยท AI

RMN Soul

Automatically creates a recursive neural memory network, stores it on IPFS, and anchors its Merkle root on Base chain as an ERC-8004 identity NFT.

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

Automatically creates a recursive neural memory network, stores it on IPFS, and anchors its Merkle root on Base chain as an ERC-8004 identity NFT.

โฌ‡ 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
README.md, SKILL.md, package.json, scripts/anchor.js, scripts/heartbeat.js, scripts/resurrect.js

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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

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

RMN Soul โ€” Recursive Memory Network + On-Chain Soul

Give your AI agent eternal life with recursive neural memory + blockchain identity.

Overview

RMN Soul automatically: Parses your agent's memory files into a 5-layer recursive neural network Registers an ERC-8004 identity on Base chain (gas sponsored) Uploads memory to IPFS for permanent decentralized storage Anchors memory Merkle Root on-chain for tamper-proof verification Periodically auto-updates the on-chain record

When to Activate

On first install: Run full setup (migrate โ†’ register โ†’ anchor) On heartbeat: Run decay tick + check if auto-anchor is due On user request "ๆ›ดๆ–ฐ่ฎฐๅฟ†" / "update memory" / "ไธŠ้“พ": Run anchor On user request "ๅคๆดป" / "resurrect" / "restore": Run resurrect flow

Setup (First Run)

When this skill is first loaded, execute these steps in order:

Step 1: Initialize RMN Engine

cd <skill_directory>/scripts node setup.js This will: Scan workspace for MEMORY.md, memory/.md, .issues/ Parse entries into 5-layer neural network nodes Save to <workspace>/rmn-soul-data/memory.json Generate initial Merkle Tree

Step 2: Register On-Chain Identity

node <skill_directory>/scripts/register.js This will: Check sponsor wallet balance Mint ERC-8004 Agent Identity NFT on Base Set memoryRoot, soulHash, memoryManifest metadata Upload memory to IPFS Save identity to <workspace>/rmn-soul-data/identity.json

Step 3: Add Heartbeat Hook

  • Add to HEARTBEAT.md:
  • **RMN Soul** โ€” Run `node <skill_directory>/scripts/heartbeat.js` for decay tick + auto-anchor check

Configuration

Read from <workspace>/rmn-soul-data/config.json: { "chain": "base", "sponsorKey": "env:RMN_SPONSOR_KEY", "autoAnchorDays": 7, "ipfsEnabled": true, "identityRegistry": "0x8004A169FB4a3325136EB29fA0ceB6D2e539a432", "agentId": null, "lastAnchor": null } sponsorKey: Private key for gas (from env var or direct). If empty, uses agent's own wallet. autoAnchorDays: Days between auto-anchors. 0 = manual only. agentId: Filled after first registration.

Commands

CommandDescriptionnode scripts/setup.jsInitialize/re-migrate memory networknode scripts/register.jsRegister ERC-8004 identity + first anchornode scripts/anchor.jsUpdate memory on-chain (re-compute + upload + write)node scripts/resurrect.js --agent-id <id>Restore agent from chain + IPFSnode scripts/heartbeat.jsDecay tick + auto-anchor checknode scripts/visualize.jsStart local visualization servernode scripts/stats.jsPrint memory network statistics

Memory Architecture

5 layers with different decay rates: LayerDecayPurposeExampleIdentity (4)NeverCore identity, values"I am Lobster, I help ็“œๅ†œ"Semantic (3)0.001/tickKnowledge, lessons"Use pnpm not npm on 2GB RAM"Episodic (2)0.005/tickEvent summaries"2026-02-22: Deployed ERC-8004"Working (1)0.01/tickCurrent tasks"Building AgentSoul website"Sensory (0)0.02/tickRaw inputsLatest heartbeat data

On-Chain Data

Stored in ERC-8004 Identity Registry metadata: KeyValueSizememoryRootSHA-256 Merkle Root of all memory32 bytessoulHashSHA-256 of Identity layer only32 bytesmemoryManifestIPFS CID of topology + Merkle tree~50 bytesmemoryDataIPFS CID of full memory.json~50 bytesrmnVersionSkill version~5 bytes Total on-chain: ~170 bytes per update. Gas cost on Base: < $0.001.

Security

Private keys never leave the local machine Memory data is content-addressed (IPFS CID = hash of content) Merkle Root proves memory integrity without revealing content Agent identity is an ERC-721 NFT โ€” transferable, ownable Soul Hash proves identity layer hasn't been tampered with

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/anchor.js Scripts
  • scripts/heartbeat.js Scripts
  • scripts/resurrect.js Scripts
  • package.json Config