From efdd34e61c086ff5c8f06cb411363ead248556ef Mon Sep 17 00:00:00 2001 From: Sweets Sweetman Date: Wed, 25 Feb 2026 10:37:46 -0500 Subject: [PATCH] fix: improve notifications command description for agent clarity The previous description was vague enough that agents looked for a --to flag, didn't find one, and never tried the command. The new description explicitly states the recipient is auto-resolved from the API key. Co-Authored-By: Claude Opus 4.6 --- src/commands/notifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/notifications.ts b/src/commands/notifications.ts index 3eedc0e..f79e6e6 100644 --- a/src/commands/notifications.ts +++ b/src/commands/notifications.ts @@ -3,7 +3,7 @@ import { post } from "../client.js"; import { printJson, printError } from "../output.js"; export const notificationsCommand = new Command("notifications") - .description("Send a notification email to the authenticated account") + .description("Send an email to the account owner. The recipient is automatically resolved from your API key — no --to flag needed. Only --subject is required.") .requiredOption("--subject ", "Email subject line") .option("--text ", "Plain text or Markdown body") .option("--html ", "Raw HTML body (takes precedence over --text)")