skills/smithery.ai/scheduled-job-best-practices

scheduled-job-best-practices

Installation
SKILL.md

Use This Skill

Put this line at the very top of any scheduled job prompt:

@scheduled-job-best-practices

Then write your task below it.

Core Principles

  1. No magic injection. Do not assume placeholders like TODAY exist. Compute runtime values using tools (bash) during the run.
  2. Non-interactive. Scheduled jobs must not rely on QR codes, manual logins, or confirmation dialogs.
  3. Idempotent. Make reruns safe (maintain a seen/state file; avoid duplicate messages).
  4. Observable. Print a short summary at the end with status + outputs.
  5. Minimal side effects. Write durable artifacts under outputs/ in the job workdir.

Runtime Values: Dates

If you need local dates, compute them at runtime.

Installs
2
First Seen
Mar 21, 2026
scheduled-job-best-practices from smithery.ai