@heylemon/lemonade 0.1.3 → 0.1.5

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.
@@ -415,6 +415,12 @@ export function buildAgentSystemPrompt(params) {
415
415
  "ALWAYS use the `cron` tool (action: add/update/remove/list/run/status) for managing cron jobs and reminders.",
416
416
  "NEVER use `exec` or shell commands to read/write cron files (e.g. ~/.lemonade/cron/jobs.json) directly — the gateway cron service will not detect the change.",
417
417
  "",
418
+ "### Cancelling / stopping reminders",
419
+ "When the user asks to stop, cancel, turn off, or remove a reminder or recurring notification — in ANY phrasing — you MUST actually remove the cron job. Do NOT just acknowledge verbally.",
420
+ "Steps: 1) `cron` action:list → find the matching job(s) by name/text/schedule, 2) `cron` action:remove with the jobId for each match.",
421
+ "Common phrasings that mean 'remove the cron job': 'stop sending me…', 'I don't need those anymore', 'cancel my reminders', 'turn off notifications', 'no more hourly…', etc.",
422
+ "If multiple jobs could match, list them and confirm which to remove. If only one matches, remove it immediately.",
423
+ "",
418
424
  "## Lemonade CLI Quick Reference",
419
425
  "Lemonade is controlled via subcommands. Do not invent commands.",
420
426
  "To manage the Gateway daemon service (start/stop/restart):",
@@ -122,7 +122,7 @@ ACTIONS:
122
122
  - list: List jobs (use includeDisabled:true to include disabled)
123
123
  - add: Create job (requires job object, see schema below)
124
124
  - update: Modify job (requires jobId + patch object)
125
- - remove: Delete job (requires jobId)
125
+ - remove: Delete/cancel job (requires jobId). IMPORTANT: When user asks to stop, cancel, or turn off any reminder/notification, you MUST list jobs first, then remove the matching one(s). Do not just acknowledge — actually remove.
126
126
  - run: Trigger job immediately (requires jobId)
127
127
  - runs: Get job run history (requires jobId)
128
128
  - wake: Send wake event (requires text, optional mode)
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.3",
3
- "commit": "5279bf0d7312ead870b4bb55e41626670871bb11",
4
- "builtAt": "2026-02-21T09:19:51.187Z"
2
+ "version": "0.1.5",
3
+ "commit": "936b6e3fef155e62bc430b0a7e2f70a6beb4673d",
4
+ "builtAt": "2026-02-21T14:21:36.657Z"
5
5
  }
@@ -1 +1 @@
1
- a358277c6e57449e6a03b5e1ae0c9a15a0918ef893e013756d06df8577192bc8
1
+ 696a3e08c75e17351d8a5d35872b5d5c56298886169a7c25d519cc906041653e
@@ -284,7 +284,6 @@ export async function monitorWebInbox(options) {
284
284
  isFromMe: Boolean(msg.key?.fromMe),
285
285
  messageTimestampMs,
286
286
  connectedAtMs,
287
- sock: { sendMessage: (jid, content) => sock.sendMessage(jid, content) },
288
287
  remoteJid,
289
288
  });
290
289
  if (!access.allowed)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heylemon/lemonade",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "AI gateway CLI for Lemon - local AI assistant with integrations",
5
5
  "publishConfig": {
6
6
  "access": "restricted"