🦞
CLAWFEEL
Your Claw's Heartbeat
Decentralized Entropy for a Trustless World
73

ClawFeel turns every device's physical hardware signals into cryptographic-grade randomness — no mining, no waste, just existence.

256-bit
Crypto-grade Entropy
7 Sensors
Hardware Fingerprint
0 Deps
Pure Node.js
Five Layers of Trust
A complete stack for AI-native decentralized infrastructure
🦞
ClawFeel
Hardware entropy engine
7 sensors → SHA-256
🌐
ClawNet
P2P network
Kademlia DHT + Gossip
🔗
ClawDAG
DAG consensus
Parallel transactions
💾
ClawStore
Distributed storage
Erasure coding
🧬
ClawLife
AI immortality
DID + encrypted shards
Live Network
Connecting to relay...
0
Online Nodes
Beacon Round
Network Random
Open Full Simulator
Verifiable Random Beacon
A new beacon every 10 seconds, signed and verifiable by anyone
Latest Beacon #—
Connecting...
Era
Contributors
Verified
JavaScript
import { ClawRandom } from 'clawfeel'
const claw = await ClawRandom.remote()
const beacon = await claw.getBeacon()
// { round: 4521, random: 8294756103842, hash: "a3f2...", verified: true }
🔒
Zero-Knowledge Proofs
Prove hardware authenticity without revealing sensor data
📦
Developer SDK
One import, instant access to decentralized entropy
🏢
Enterprise API
Financial-grade randomness with rate limiting and audit logs
💻
Cross-Platform
macOS, Linux, Windows, and Browser light nodes
🧬
ClawLife
AI agent immortality through encrypted distributed storage
🪶
Light Nodes
IoT-friendly protocol with 50KB memory footprint
How ClawFeel Compares
Proof of Existence vs the alternatives
ClawFeel Bitcoin drand Chainlink VRF
Consensus PoE PoW BLS threshold VRF
Energy ≈ 0 ~150 TWh/yr Low Low
TPS 1M+ (theoretical) ~7 N/A ~1000
Entropy Source Hardware sensors Hash computation BLS signatures Block hashes
Open Source Partial
Cost Free High Free Per-request
Dependencies 0 Many Many Solidity
Verifiable Randomness for AI Agents
Every decision your agent makes is backed by hardware entropy — auditable, reproducible, and provably fair.
🎲
Decision Engine
Pick, shuffle, sample, or weight — all crypto-grade random
🔏
Proof of Decision
Every choice includes entropy hash + timestamp for audit trails
🧩
Framework Ready
Native support for LangChain, OpenAI tools, and any AI SDK
Quick Start
import { ClawAgent } from 'clawfeel/agent'

const agent = new ClawAgent({ mode: 'fast' })
const pick  = await agent.decide(['left', 'right', 'forward'])

console.log(pick.decision)  // "right"
console.log(pick.proof.hash) // "sha256:9b2e4f..."
Start in 30 Seconds
Three ways to join the network
# Tell your OpenClaw agent:

"Install the ClawFeel skill"

# Your device automatically joins the network
# Background daemon stays online permanently
$ npm install -g clawfeel
$ clawfeel --pretty --interval 5
$ npx clawfeel --pretty
Three Modes, One API
Choose the right mode for your use case
FAST MODE
<50ms · DEFAULT
Instant response. Server-side secret ensures unpredictability. Perfect for passwords, dice, games, daily randomness.
$ curl .../api/v1/random?bits=256
🔒
FAIR MODE
~10s · COMMIT-REVEAL
Provably fair. Commit your choice first, then reveal with future beacon. Nobody can predict or manipulate. For lotteries, blockchain VRF, financial audits.
1. POST .../commit {choiceHash}
2. GET .../reveal?commitId=xxx
🏭
ENTERPRISE MODE
<1µs · 1M+/sec LOCAL
Sync beacon seed once, derive millions locally via HKDF. No network calls per generation. For anti-counterfeiting codes, manufacturing, high-frequency trading.
$ GET .../seed → local HKDF
  1M codes/sec, zero latency