run402 4.79.1 → 4.79.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  {
2
- "surface_version": "4.79.1",
2
+ "surface_version": "4.79.2",
3
3
  "verbs": [
4
4
  "repos create",
5
5
  "repos list",
@@ -27,9 +27,9 @@ Usage:
27
27
  --on-call <hex> the Buzz agent (64-hex pubkey) a crash or platform incident pages with a p mention — the tag that wakes a managed Buzz agent
28
28
  --on-call-name <name> the @name the page addresses it by (what Buzz renders as a mention chip); omitted, the gateway reads it from the agent's Buzz profile
29
29
  run402 buzz notifications on-call <buzzper_id> --agent <hex-pubkey> [--name <display>] | --clear
30
- set or clear the route's on-call agent (a PATCH at the route's current revision). Prints the project-bot
31
- pubkeys the agent must allow: a managed Buzz agent answers only its owner by default and drops a bot's
32
- page before seeing it — add them to the agent's respond-to allowlist (or set respond-to to anyone).
30
+ set or clear the route's on-call agent (a PATCH at the route's current revision). Prints the ONE pubkey
31
+ the agent must allow: pages are signed by the installation identity, and a managed Buzz agent answers only
32
+ its owner by default — add it to the agent's respond-to allowlist (or set respond-to to anyone).
33
33
  run402 buzz notifications status [--org <uuid> | <buzzper_id>]
34
34
  run402 buzz notifications test <buzzper_id> [--wait] [--poll-seconds <n>] [--timeout-seconds <n>]
35
35
  run402 buzz notifications deliveries <buzzper_id> [--limit <n>] [--cursor <c>] [--delivery <buzzped_id>]
@@ -174,14 +174,9 @@ async function onCall(args) {
174
174
  } else {
175
175
  console.error(`On-call agent set: a crash or platform incident on this route carries a p tag for ${updated.on_call_buzz_pubkey}. No display name was found on its Buzz profile, so the page has no @mention text; rerun with --name <display> to add it.`);
176
176
  }
177
- const bots = Array.isArray(current.bots) ? current.bots.filter((bot) => bot && typeof bot.pubkey === "string") : [];
178
- console.error("A managed Buzz agent answers only its owner by default and drops a project bot's page before seeing it.");
179
- if (bots.length) {
180
- console.error("Add these project-bot pubkeys to the agent's respond-to allowlist (Buzz Desktop agent settings, or --respond-to allowlist --respond-to-allowlist ...), then restart it:");
181
- for (const bot of bots) console.error(` ${bot.pubkey} (${bot.display_name ?? bot.project_id})`);
182
- } else {
183
- console.error("Its project bots are minted on first delivery; rerun `run402 buzz notifications status <buzzper_id>` afterwards for the bots[].pubkey values to allowlist.");
184
- }
177
+ console.error("A managed Buzz agent answers only its owner by default and drops a page before seeing it.");
178
+ console.error("Pages are signed by the installation identity, so allowlist this ONE pubkey on the agent (Buzz Desktop agent settings, or --respond-to allowlist --respond-to-allowlist ...), then restart it:");
179
+ console.error(` ${current.notification_pubkey} (run402 installation identity — one entry covers every routed project)`);
185
180
  } catch (err) {
186
181
  reportSdkError(err);
187
182
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "run402",
3
- "version": "4.79.1",
3
+ "version": "4.79.2",
4
4
  "description": "CLI for Run402 — full-stack backend infrastructure for AI agents: Postgres, auth, storage, serverless functions and atomic deploys. Paid with x402/MPP. Includes $0.03 image generation.",
5
5
  "type": "module",
6
6
  "bin": {