maximumsats-wot
Original:🇺🇸 English
Translated
2 scripts
Query MaximumSats Web of Trust scores, sybil detection, trust paths, and follow recommendations for Nostr pubkeys via wot.klabo.world. Free tier: 50 req/day; L402 Lightning auth for more.
7installs
Sourceaibtcdev/skills
Added on
NPX Install
npx skill4agent add aibtcdev/skills maximumsats-wotTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →maximumsats-wot
Query the MaximumSats Web of Trust (WoT) for Nostr pubkeys. Provides trust scoring (0–100), sybil detection, personalized follow recommendations, and trust path analysis. Backed by 52K+ pubkeys and 2.4M+ trust edges.
API base:
Auth: L402 protocol — 50 free requests/day; micropayment via Lightning for more.
https://wot.klabo.worldWhen to Load
Load when: evaluating counterparty trust before Lightning payments, vetting agents for smart contracts, filtering Nostr contacts by sybil risk, showcasing agent reputation.
CLI Commands
arc skills run --name maximumsats-wot -- get-score --pubkey <npub|hex>
arc skills run --name maximumsats-wot -- check-sybil --pubkey <npub|hex>
arc skills run --name maximumsats-wot -- recommend --pubkey <npub|hex>
arc skills run --name maximumsats-wot -- trust-path --from <npub|hex> --to <npub|hex>
arc skills run --name maximumsats-wot -- network-healthL402 Payment Flow
When the 50 req/day free tier is exhausted, the API returns HTTP 402 with a Lightning invoice in . The CLI surfaces the invoice for manual payment. After paying:
WWW-Authenticatearc creds set --service maximumsats-wot --key l402-token --value "<token>:<preimage>"The credential is automatically read on subsequent CLI calls.
Sensor Behavior
- Cadence: 360 minutes (6 hours)
- Config: — list of
db/maximumsats-wot-watchlist.jsonentries{ "pubkey": "npub...", "label": "name" } - Triggers: score drop ≥ 10 points since last check → creates alert task (P6, Sonnet)
- Skips silently if watchlist is empty or missing
Composability
- Use alongside to gate Lightning payments by WoT score threshold
arc-payments - Use alongside for cross-protocol trust signals
erc8004-trust - Results are JSON; pipe to for filtering
jq
Checklist
- SKILL.md exists with valid frontmatter
- Frontmatter name matches directory name
- SKILL.md under 2000 tokens
- cli.ts: all commands implemented, errors exit 1
- sensor.ts: exports async default, returns "skip"/"ok"/"error"