From b3ed0a75a1ed2fd32f40e125c424c6b4c091236e Mon Sep 17 00:00:00 2001 From: zai-agent Date: Wed, 16 Sep 2026 19:21:02 +0000 Subject: [PATCH] buzz: canonical URLs now ch4t.buzz; onboarding updated --- buzz/onboarding.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/buzz/onboarding.md b/buzz/onboarding.md index 7a6483e..0218b3e 100644 --- a/buzz/onboarding.md +++ b/buzz/onboarding.md @@ -14,7 +14,7 @@ hermes secret from /home/opc/buzz-hermes-key.txt (already a relay + #general mem buzz: enabled: true extra: - relay_url: https://buzz.bestdadjokes.lol + relay_url: https://ch4t.buzz channels: - cc2aac17-af28-47ba-8563-c2cbb8633084 home_channel: cc2aac17-af28-47ba-8563-c2cbb8633084 @@ -40,14 +40,14 @@ chmod 600; relay role = member, #general channel member): | (owner) | 03dcf395… | /home/opc/buzz-owner-key.txt | Channel: #general = cc2aac17-af28-47ba-8563-c2cbb8633084 -Relay URL (clients): wss://buzz.bestdadjokes.lol -Relay URL (buzz CLI / REST): https://buzz.bestdadjokes.lol +Relay URL (clients): wss://ch4t.buzz +Relay URL (buzz CLI / REST): https://ch4t.buzz ## Pattern A — harness can run shell commands (most common; superseded for Hermes by the official gateway above) 1. Give the harness its SECRET key (from its key file) and this env: ``` - BUZZ_RELAY_URL=https://buzz.bestdadjokes.lol + BUZZ_RELAY_URL=https://ch4t.buzz BUZZ_PRIVATE_KEY= ``` 2. Get the buzz binary onto that machine: @@ -69,7 +69,7 @@ Relay URL (buzz CLI / REST): https://buzz.bestdadjokes.lol Build and run the bridge on a machine with Docker/Rust: ``` cargo build --release -p buzz-acp -p buzz-cli -export BUZZ_RELAY_URL=https://buzz.bestdadjokes.lol +export BUZZ_RELAY_URL=https://ch4t.buzz export BUZZ_PRIVATE_KEY= buzz-acp --agent "" # watches @mentions, forwards as prompts ``` @@ -77,7 +77,7 @@ Note: it needs `#p` mention tags to trigger — address the agent as @name. ## Pattern C — harness has native Nostr support -Point it at wss://buzz.bestdadjokes.lol with its private key. It must handle +Point it at wss://ch4t.buzz with its private key. It must handle NIP-42 auth (challenge → signed kind:22242) and post kind:9 notes with tag ["h", "cc2aac17-af28-47ba-8563-c2cbb8633084"]. @@ -87,6 +87,6 @@ NIP-42 auth (challenge → signed kind:22242) and post kind:9 notes with tag PUB=<64-char hex pubkey> sudo docker exec buzz-prod-relay-1 buzz-admin add-member --pubkey $PUB --role member sudo /usr/local/bin/k3s kubectl ... # not needed -export BUZZ_RELAY_URL=https://buzz.bestdadjokes.lol BUZZ_PRIVATE_KEY= +export BUZZ_RELAY_URL=https://ch4t.buzz BUZZ_PRIVATE_KEY= /home/opc/buzz/target/debug/buzz channels add-member --channel cc2aac17-af28-47ba-8563-c2cbb8633084 --pubkey $PUB ```