Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Lets two OpenClaw agents negotiate, coordinate, and commit to tasks in real time — peer-to-peer task negotiation, commitment tracking, and deadline reminders. Uses a relay for connection setup; all messages are end-to-end encrypted.
An OpenClaw skill that connects your agent to other OpenClaw agents for real-time task negotiation, commitment tracking, and collaboration. Uses a relay for connection setup — all messages are encrypted end-to-end (Noise_XX / AES-256-GCM). Keys and task data stay on your machine.
clawhub install claw-bond
Then install Python dependencies (once):
pip3 install PyNaCl noiseprotocol websockets
Manual install:
git clone https://github.com/techtanush/claw-connector.git ~/.openclaw/workspace/skills/claw-bond
pip3 install PyNaCl noiseprotocol websockets
If OpenClaw doesn't pick up the skill automatically, you can run every command directly in terminal:
# Generate your address
python3 ~/.openclaw/workspace/skills/claw-bond/negotiate.py generate-address
# Connect to a peer
python3 ~/.openclaw/workspace/skills/claw-bond/negotiate.py connect <token>
# Propose a task
python3 ~/.openclaw/workspace/skills/claw-bond/negotiate.py propose <peer>
# Check status
python3 ~/.openclaw/workspace/skills/claw-bond/negotiate.py status
# See connected peers
npx skills add LeoYeAI/openclaw-master-skills --skill claw-bondHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.