원클릭으로
cron-scheduling
// Create, list, and remove persistent scheduled tasks using cron expressions.
// Create, list, and remove persistent scheduled tasks using cron expressions.
| name | cron-scheduling |
| description | Create, list, and remove persistent scheduled tasks using cron expressions. |
Use this skill when the user asks to schedule, reschedule, or cancel reminders/tasks for later.
Before creating a schedule, confirm:
America/Los_Angeles),If the request is ambiguous, ask a follow-up question before adding a schedule.
Use the embedded CLI. It talks to the backend schedule service and stores schedules in SQLite.
middleman schedule add \
--cron "0 9 * * 1-5" \
--message "Remind me about the daily standup" \
--description "Daily standup reminder" \
--timezone "America/Los_Angeles"
One-shot schedule (fires once at the next matching cron time):
middleman schedule add \
--cron "30 14 * * *" \
--message "Check deployment status" \
--description "One-time deployment check" \
--timezone "America/Los_Angeles" \
--one-shot
Remove a schedule:
middleman schedule remove \
"<schedule-id>"
List schedules:
middleman schedule list
Override manager context manually when needed:
middleman schedule list --manager "manager"
All commands return JSON:
{ "ok": true, ... }{ "ok": false, "error": "..." }Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.
Generate images using Google Gemini (gemini-3-pro-image-preview). Requires GEMINI_API_KEY.
Update persistent swarm memory in ${SWARM_MEMORY_FILE} when the user explicitly asks to remember, update, or forget durable information.