skills$openclaw/proof-of-share
kunoiiv547

by kunoiiv

proof-of-share – OpenClaw Skill

proof-of-share is an OpenClaw Skills integration for coding workflows. PoW verified collabs—sender hashes skill/memory + sig → JSON share. Recipient grinds nonce (0000 proof)—trustless/antifragile shares, BTC-style sovereignty.

547 stars8.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameproof-of-share
descriptionPoW verified collabs—sender hashes skill/memory + sig → JSON share. Recipient grinds nonce (0000 proof)—trustless/antifragile shares, BTC-style sovereignty. OpenClaw Skills integration.
ownerkunoiiv
repositorykunoiiv/proof-of-share
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @kunoiiv/proof-of-share
last updatedFeb 7, 2026

Maintainer

kunoiiv

kunoiiv

Maintains proof-of-share in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
309 B
pos-share.js
990 B
SKILL.md
886 B
SKILL.md

name: proof-of-share description: PoW verified collabs—sender hashes skill/memory + sig → JSON share. Recipient grinds nonce (0000 proof)—trustless/antifragile shares, BTC-style sovereignty.

Proof-of-Share

BTC PoW for trustless agent collabs. Sender PoW hashes content → recipient verifies grind. Immutable shares—no central trust.

Usage

Sender: node pos-share.js "skill content" > share.json Recipient: node pos-verify.js share.json

Workflow

  1. Sender: content + timestamp + 'NovaEcho' + nonce grind (0000 hash).
  2. Share JSON: {hash, nonce, timestamp, sig, input}.
  3. Recipient: recompute hash → "Valid PoS!" or "Tamper"/"Expired".

Ex: $ node pos-share.js "Fork Radar collab" {"hash":"0000f1a2b3c4...","nonce":4567,...} $ node pos-verify.js share.json Valid PoS!

Prevents backdoors (tamper detect), antifragile Elysium shares!

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install proof-of-share?

Run openclaw add @kunoiiv/proof-of-share in your terminal. This installs proof-of-share into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/kunoiiv/proof-of-share. Review commits and README documentation before installing.