← All skills
Tencent SkillHub Β· AI

pensieve-algorand

High-performance hybrid memory for OpenClaw with strict append-only capture, budgeted daily dream cycles, and optional Algorand anchoring through encrypted n...

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

High-performance hybrid memory for OpenClaw with strict append-only capture, budgeted daily dream cycles, and optional Algorand anchoring through encrypted n...

⬇ 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
server.py, SKILL.md, requirements.txt, references/architecture.md, references/hardening-v21.md, references/ops-runbook.md

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
3.0.0

Documentation

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

MCP server

All functionality is in one file: server.py. Register it in Claude Code settings: { "mcpServers": { "pensieve": { "command": "python3", "args": ["/path/to/server.py"], "env": { "OPENCLAW_WORKSPACE": "/path/to/workspace", "ALGORAND_WALLET_ADDRESS": "<address>", "ALGORAND_WALLET_MNEMONIC": "<25-word mnemonic>", "ALGORAND_NOTE_KEY_HEX": "<64 hex chars = 32 bytes>", "ALGORAND_ALGOD_URL": "https://mainnet-api.algonode.cloud", "ALGORAND_INDEXER_URL": "https://mainnet-idx.algonode.cloud" } } } } Install dependencies (one-time): pip install mcp algosdk cryptography

Tools

ToolPurposepensieve_captureAppend an event to the hash-chained ledger (deduplicates by content)pensieve_dream_cyclePromote 24 h recurring patterns into semantic / procedural / self_modelpensieve_anchorEncrypt + anchor today's memory to Algorand (idempotent, auto-chunks)pensieve_validateRun v2.1 hardening: chain integrity, decrypt, parity, chunk hashespensieve_recoverReconstruct memory from blockchain for a given datepensieve_statusLayer counts, chain tip, last anchor date, today's cost estimate

Daily workflow

Capture events throughout the day with pensieve_capture. At end-of-day, run pensieve_dream_cycle to consolidate patterns. Run pensieve_anchor to encrypt and commit to Algorand. Run pensieve_validate β€” only trust recovery claims when ok=true.

Mandatory operational rules

All *.jsonl files are append-only. Never rewrite or delete lines. Secrets stay in env vars (or .secrets/). Never print them in chat. Anchor encrypted payloads only β€” never plaintext memory. Treat pensieve_validate failures as blocking for disaster-recovery claims.

Security

Sensitive values are read from environment variables at runtime: ALGORAND_WALLET_MNEMONIC β€” never logged, never written to disk by the server. ALGORAND_NOTE_KEY_HEX β€” 64 hex chars (32-byte AES key). Fallback to .secrets/algorand-wallet-nox.json and .secrets/algorand-note-key.bin is supported for local development only. Prefer env vars in all deployments. Use a dedicated low-balance anchoring wallet. Fund it with enough ALGO for your expected daily TX volume (see cost model in server.py module docstring). Never reuse the main OpenClaw operations wallet for anchoring.

Recovery

# Recover and inspect pensieve_recover(date="2026-03-14") # Recover and write files to memory/recovered/ pensieve_recover(date="2026-03-14", restore=True)

Architecture reference

See references/architecture.md for memory layer model and integrity guarantees. See references/hardening-v21.md for the v2.1 pass/fail contract.

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
4 Docs1 Scripts1 Files
  • SKILL.md Primary doc
  • references/architecture.md Docs
  • references/hardening-v21.md Docs
  • references/ops-runbook.md Docs
  • server.py Scripts
  • requirements.txt Files