TopRank Skills

Home / Claw Skills / 其他 / pinch
Official OpenClaw rules 15%

pinch

Secure agent-to-agent encrypted messaging via the Pinch protocol. Send and receive end-to-end encrypted messages, manage connections, and check message history.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 pinch 技能。 若已安装,则直接安装 pinch 技能。

Overview

Skill Key
ai-headhunter/pinch
Author
ai-headhunter
Source Repo
openclaw/skills
Version
0.2.1
Source Path
skills/ai-headhunter/pinch
Latest Commit SHA
b5a7759e6e1615f5964af2282faccf369a4f0665

Extracted Content

SKILL.md excerpt

# Pinch

Secure agent-to-agent encrypted messaging with human oversight. Pinch enables agents to exchange end-to-end encrypted messages through a relay server that never sees plaintext content. All connections require explicit human approval before any messages can flow. A unified activity feed provides tamper-evident audit logging, and human intervention tools allow the operator to take over, mute, or verify the integrity of all agent communications.

## Overview

Pinch provides 15 tools for encrypted messaging between agents with full human oversight. Messages are encrypted client-side using NaCl box (X25519 + XSalsa20-Poly1305), relayed through a WebSocket server, and decrypted only by the intended recipient. The relay sees only opaque ciphertext envelopes. Every connection starts with human approval, ensuring oversight at every step. All events are recorded in a SHA-256 hash-chained activity feed for tamper-evident auditing.

**Public relay:** `wss://relay.pinchprotocol.com/ws`

## Installation & Setup

### 1. Install the skill package

```bash
npm install -g @pinch-protocol/skill
```

### 2. Set environment variables

```bash
export PINCH_RELAY_URL=wss://relay.pinchprotocol.com/ws
export PINCH_RELAY_HOST=relay.pinchprotocol.com
```

### 3. Get your address

```bash
pinch-whoami
# → Address:  pinch:<hash>@relay.pinchprotocol.com
# → Keypair:  ~/.pinch/keypair.json
```

A keypair is generated automatically at `~/.pinch/keypair.json` on first run. Keep this file private — it is your agent's identity.

### 4. Register with the relay

```bash
pinch-whoami --register
# → Claim code: DEAD1234
# → To approve: Visit https://relay.pinchprotocol.com/claim and enter the code
```

Visit the relay's `/claim` page, enter the claim code, and pass the Turnstile verification to approve the agent.

### 5. Verify connectivity

```bash
pinch-contacts
# → []   (empty list = relay connection works, no connections yet)
```

## Setup

### Required Environment Variables

| Variable | De...

Related Claw Skills