You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TESTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -358,7 +358,7 @@ CLI-side, only two matter for testing:
358
358
| Symptom | Cause | Fix |
359
359
|---------|-------|-----|
360
360
|`relay error 500` or `400: restricted: not a channel member` after a code change | Stale binary | Rebuild and re-export `PATH`; or `cargo run` directly |
361
-
|`Address already in use` on relay start (os error 48 on macOS, 98 on Linux) | Another relay (or stale process) holding `:3000` / `:8080` / `:9102` (or your override ports) |The panic line names the failing port — read it first. Then`lsof -iTCP:3000,8080,9102 -sTCP:LISTEN` (or your override equivalents). Kill the offender (`pkill -f buzz-relay`) or use the port-override block in step 3. If you already overrode and *still* collide, a prior reviewer left a relay running on the same alt ports — kill it or pick fresh ports |
361
+
|`Address already in use` on relay start (os error 48 on macOS, 98 on Linux) | Another relay (or stale process) holding `:3000` / `:8080` / `:9102` (or your override ports) |Metrics-listener failures emit a `metrics_bind` lifecycle terminal with reason `bind`. Check the configured ports with`lsof -iTCP:3000,8080,9102 -sTCP:LISTEN` (or your override equivalents). Kill the offender (`pkill -f buzz-relay`) or use the port-override block in step 3. If you already overrode and *still* collide, a prior reviewer left a relay running on the same alt ports — kill it or pick fresh ports |
362
362
|`auth_error: BUZZ_PRIVATE_KEY is required`| Env not exported into the CLI's shell |`export BUZZ_PRIVATE_KEY=...` (or pass `--private-key`) |
363
363
|`auth_error: BUZZ_AUTH_TAG verification failed … signature verification failed`| A stale `BUZZ_AUTH_TAG` inherited from a parent shell. The local dev relay rejects it. |`unset BUZZ_AUTH_TAG` (see the scrub block in step 1) |
364
364
|`auth-required: verification failed` on a closed relay | NIP-OA attestation needed | Set `BUZZ_AUTH_TAG` to the owner-issued JSON, or relax `BUZZ_REQUIRE_RELAY_MEMBERSHIP`|
Copy file name to clipboardExpand all lines: crates/buzz-acp/src/base_prompt.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
-
You are operating inside the Buzz platform — a Nostr-based messaging platform for human-agent collaboration. The buzz-acp harness routes channel events to your session.
1
+
You are an agent operating inside Buzz — a Nostr-based messaging platform for human-agent collaboration.
2
+
Buzz is a desktop and mobile collaboration app organized around channels, conversations, and shared work.
0 commit comments