From 72be651ca8dffad8ff3617a7145e7ce5e4a46425 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Tue, 7 Apr 2026 23:34:40 +0100 Subject: [PATCH] feat(cli): add --cron flag to remind command Co-Authored-By: Claude Sonnet 4.6 --- apps/cli/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index 4be5b2a..38e2091 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -248,6 +248,7 @@ const main = defineCommand({ extra: { type: "positional", description: "Reminder ID for `cancel`", required: false }, in: { type: "string", description: 'Deliver after duration: `"2h"`, `"30m"`, `"90s"`' }, at: { type: "string", description: 'Deliver at time: `"15:00"` or ISO timestamp' }, + cron: { type: "string", description: 'Recurring cron expression: `"0 */2 * * *"` (every 2h), `"30 9 * * 1-5"` (9:30 weekdays)' }, to: { type: "string", description: "Recipient (default: self). Name, `@group`, `*`, or pubkey" }, mesh: { type: "string", description: "Mesh slug (auto-selected if only one joined)" }, json: { type: "boolean", description: "Output as JSON", default: false },