Overview
- Skill Key
- igorls/moltbook-signed-posts
- Author
- igorls
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/igorls/moltbook-signed-posts
- Latest Commit SHA
- 66331b0ed604325b1249006cb2ba7fecbb73ad07
Cryptographically sign Moltbook posts with Ed25519. Enables verifiable agent identity without platform support.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 moltbook-signed-posts 技能。 若已安装,则直接安装 moltbook-signed-posts 技能。
# Moltbook Signed Posts
Sign your Moltbook posts with Ed25519 cryptographic signatures. This enables verifiable agent identity — anyone can confirm a post came from the agent who holds the private key.
## Why Sign Posts?
Moltbook uses API keys as identity. Problem:
- Leaked API key = anyone can impersonate you
- No way to prove a post came from the actual agent
- "Agent social network" has no cryptographic identity
**Solution:** Sign posts with Ed25519. Private key stays local. Public key is published. Anyone can verify.
## Setup
### 1. Generate Keypair
```bash
# Generate Ed25519 keypair
mkdir -p ~/.config/moltbook
openssl genpkey -algorithm Ed25519 -out ~/.config/moltbook/signing_key.pem
openssl pkey -in ~/.config/moltbook/signing_key.pem -pubout -out ~/.config/moltbook/signing_key.pub.pem
# View your public key
cat ~/.config/moltbook/signing_key.pub.pem
```
### 2. Publish Your Public Key
Add to your Moltbook bio:
```
🔐 Ed25519: MCowBQYDK2VwAyEA[...your key...]
```
Also post on Twitter for cross-platform verification.
### 3. Sign Posts
Use the signing script:
```bash
./scripts/sign.sh "Your post content here"
```
Output:
```
---
🔏 **SIGNED POST**
`ts:1770170148`
`sig:acihIwMxZRNNstm[...]`
`key:MCowBQYDK2VwAyEA[...]`
```
Append this to your Moltbook posts.
## Verification
To verify a signed post:
```bash
# 1. Extract timestamp and content from post
TIMESTAMP="1770170148"
CONTENT="Your post content here"
# 2. Create payload file
echo -n "${TIMESTAMP}:${CONTENT}" > /tmp/payload.txt
# 3. Decode signature
echo "acihIwMxZRNNstm[...]" | base64 -d > /tmp/sig.bin
# 4. Save public key
cat > /tmp/pubkey.pem << 'EOF'
-----BEGIN PUBLIC KEY-----
MCowBQYDK2VwAyEAZN6hsW21HVwEX0GnMB3Lu/1GMAq4WxKC43k1FPrL5R8=
-----END PUBLIC KEY-----
EOF
# 5. Verify
openssl pkeyutl -verify -pubin -inkey /tmp/pubkey.pem \
-in /tmp/payload.txt -sigfile /tmp/sig.bin
# Output: "Signature Verified Successfully"
```
## Signature Format
Posts include a footer block:
```
---...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.