proof-of-share
✓Verified·Scanned 2/18/2026
This skill implements a Proof-of-Work sharing workflow that produces and verifies JSON shares via pos-share.js and pos-verify.js. It instructs local execution of node pos-share.js "skill content" > share.json and node pos-verify.js share.json; no network calls or secret access are present.
from clawhub.ai·v34e392c·1.8 KB·0 installs
Scanned from 1.0.0 at 34e392c · Transparency log ↗
$ vett add clawhub.ai/kunoiiv/proof-of-share
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
- Sender: content + timestamp + 'NovaEcho' + nonce grind (0000 hash).
- Share JSON: {hash, nonce, timestamp, sig, input}.
- 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!