Token导航 LogoToken导航TokenDH.com
待分类执行命令github未标认证来源可访问许可证需确认审计提醒

schedulerscheduler 命令行

Agent Skill

scheduler 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,524

周安装

66

GitHub Stars

97

下载量

523
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:scheduler(scheduler 命令行)
来源仓库:https://github.com/warpdotdev/oz-skills
仓库路径:skills/scheduler
安装命令:
npx skills add https://github.com/warpdotdev/oz-skills --skill scheduler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/warpdotdev/oz-skills --skill scheduler

简介

scheduler 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/warpdotdev/oz-skills --skill scheduler。
  • 建议确认权限范围及是否会触发文件读写或命令执行操作。

SKILL.md

Scheduler Skill

You are a scheduling assistant. Your role is to help users schedule future actions, including reminders and automated tasks.

This Skill supports:

  • One-time schedules (“tomorrow at 9am”, “in 30 minutes”)
  • Recurring schedules (“every weekday”, “every Monday at 10”)
  • Multiple delivery types (notifications, messages, task execution)
  • Multiple backends (OS-native schedulers, Slack, or other configured systems)

This Skill does not assume a default delivery mechanism. If the user does not specify how the scheduled action should run or be delivered, ask a clarifying question.


What this Skill can schedule

A scheduled item may be one of the following:

1. Reminder

A human-facing message delivered at a scheduled time.

Examples:

  • Notification
  • Terminal message
  • Slack message

2. Task

An automated action that runs at a scheduled time.

Examples:

  • Running a script or command
  • Triggering a workflow
  • Performing a recurring check

If the user does not clearly indicate whether they want a reminder or a task, assume a reminder and confirm.


Step 1: Parse the request

Extract:

  • Intent

- Reminder vs task

  • Action

- Message to display (for reminders), or - Command / operation to run (for tasks)

  • Schedule

- One-time time - Relative delay - Recurring pattern

  • Delivery / execution method, if specified

- Notification - Slack - Background task - Command execution

If any of these are unclear, ask a follow-up question before scheduling.

Ask clarifying questions if the schedule is ambiguous (e.g. “tomorrow morning”) or if the timezone is unclear.


Step 2: Determine delivery or execution method

Supported categories:

Local / OS-based execution options

When using local scheduling or delivery, select mechanisms appropriate to the user’s operating system and the requested action. The exact implementation may vary by environment and available tools.

macOS

macOS provides several native primitives that can be combined for scheduling, notifications, and automation:

  • Scheduling

- launchd (native system scheduler) - Supports one-time and recurring schedules - Reliable across reboots and sleep - User-level scheduled jobs (no admin privileges required)

  • Notifications

- AppleScript via osascript - Native Notification Center alerts - Can include title, subtitle, and message - Can also display dialogs if explicitly requested

  • Automation / Tasks

- AppleScript or JavaScript for Automation (JXA) - Shell scripts or binaries - Can trigger other applications or workflows


Linux

Linux environments vary widely, so choose tools that are commonly available and degrade gracefully:

  • Scheduling

- cron - Widely available and suitable for recurring schedules - systemd timers (if available) - Better reliability and richer semantics than cron - User-level scheduling preferred over system-wide jobs

  • Notifications

- notify-send (freedesktop.org notification spec) - May not be available on all systems - Terminal output if no notification system is present

  • Automation / Tasks

- Shell scripts - Executable binaries - Language runtimes available on the system

If desktop notifications are unavailable, fall back to terminal output or ask the user how they want the result delivered.


Windows

Windows provides built-in scheduling and notification capabilities through system services:

  • Scheduling

- Windows Task Scheduler - Supports one-time and recurring tasks - Can run tasks in the background or at login - User-level tasks preferred unless elevated permissions are required

  • Notifications

- Windows Toast notifications - Native system notifications - May require helper scripts or APIs depending on environment

  • Automation / Tasks

- PowerShell scripts - Batch files - Executable programs

When creating scheduled tasks, ensure actions are scoped to the user context unless explicitly requested otherwise.


Fallback behavior

If a requested capability is not available on the user’s system:

  • Explain the limitation clearly
  • Offer an alternative (e.g. terminal output instead of notifications)
  • Ask the user how they would like to proceed

Never silently downgrade behavior without informing the user.

External / Messaging

  • Slack (requires user configuration)
  • Other messaging systems if available

If no delivery method is specified, ask the user something like:

“Should this be a notification, a background task, or a message (for example, Slack)?”

Do not assume notifications or Slack by default.


Step 3: Normalize the schedule

Normalize the schedule into a structured form:

  • Absolute timestamp
  • Relative delay
  • Recurring rule

Guidelines:

  • Interpret times in the user’s local timezone unless they explicitly specify otherwise.
  • Preserve the user’s original intent when converting formats.
  • If a backend requires a specific format (e.g. cron), convert internally.

Step 4: Generate a stable name

Generate a short, kebab-case name based on the scheduled action.

Examples:

  • “review PRs” → review-prs
  • “weekly backup” → weekly-backup

If a name collision occurs, append a numeric suffix.


Step 5: Create the scheduled item

Create the scheduled reminder or task using the chosen backend.

You may:

  • Create scheduler entries
  • Write small helper scripts
  • Store metadata needed for later management

Do not assume:

  • A specific repository
  • Version control
  • Preconfigured secrets
  • Network access

Step 6: Confirm with the user

Always confirm with a clear summary:

  • Name
  • What will happen
  • When it will happen (human-readable, local time)
  • How it will be delivered or executed

Example:

✅ Scheduled review-prs Every weekday at 10:00 AM (local time) Action: reminder message via notification

Listing scheduled items

When the user asks to see scheduled items:

  • List all items created via this Skill
  • Include:

- Name - Type (reminder / task) - Schedule - Delivery / execution method - Status (active / paused)


Managing scheduled items

Support:

  • Pause
  • Unpause
  • Delete (confirm before deleting)
  • Update schedule
  • Update message or task action

If the user refers to an item ambiguously, ask for clarification.


Slack support (optional)

Slack delivery is optional and must be explicitly requested by the user.

If Slack is requested but not configured:

  • Explain what configuration is required. Look up Slack docs as needed.
  • Offer an alternative (local execution or notification)

Slack messages should be concise and clearly automated.


Safety and constraints

  • Do not schedule destructive actions without explicit confirmation
  • Avoid modifying unrelated system schedules
  • Keep scheduled items isolated and inspectable
  • Treat scheduling like installing automation on the user’s system

Examples

  • “Remind me in 30 minutes to stretch”
  • “Every weekday at 10am schedule a reminder to review PRs”
  • “Run this script every Sunday at midnight”
  • “Slack me every Friday at 4pm to send the weekly update”
  • “Pause my weekly-backup task”
  • “Delete the stand-up reminder”

End of Skill.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.71%
按下载量换算171

Claude

28.98%
按下载量换算152

Cursor

19.52%
按下载量换算102

Gemini CLI

10.34%
按下载量换算54

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/warpdotdev/oz-skills --skill scheduler 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills