用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/SawyerHood/middleman --skill cron-scheduling命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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": "..." }