详细分析 ▾
运行时依赖
版本
智能调度器初始发布: - 为AI代理提供带多时区支持的上下文感知任务调度 - 基于优先级的任务队列与队列管理 - 自动冲突检测与解决 - 自适应调度,支持智能重排与优化 - 可自定义工作时间、缓冲时间与基于规则的调度 - 专为代理任务管理、会议协调、cron作业优化与截止日跟踪而设计
安装命令
点击复制技能文档
# intelligent-scheduler > 具备上下文感知的智能调度器 —— 为 AI agent 处理时区、任务优先级、冲突解决与自适应排程。 ## Skill 元数据 - Slug: intelligent-scheduler - Version: 1.0.0 - Description: 面向 AI agent 的上下文感知调度系统。支持多时区排程、基于优先级的任务队列、冲突检测与解决,并可根据 agent 工作负载与用户偏好进行自适应排程优化。 - Category: automation - Trigger Keywords: scheduler, task scheduling, priority queue, calendar, conflict resolution, timezone, schedule optimization --- ## 功能 ### 1. 任务排程 \\\bash node scheduler.js add "Review PR #42" --time "14:00" --tz "Asia/Shanghai" --priority high node scheduler.js add "Deploy v2.0" --time "2024-03-15 09:00" --tz "America/New_York" --depends "Review PR #42" \\\ ### 2. 优先级队列管理 \\\bash node scheduler.js queue --sort priority node scheduler.js queue --filter today node scheduler.js promote "Urgent hotfix" --to critical \\\ 优先级顺序:critical > high > medium > low > deferred ### 3. 冲突检测 \\\bash node scheduler.js check-conflicts --date 2024-03-15 # Output: CONFLICT: "Team standup" (09:00-09:30) overlaps "Client call" (09:15-10:00) \\\ ### 4. 时区转换 \\\bash node scheduler.js convert "14:00 Asia/Shanghai" --to "America/New_York" # Output: 01:00 EDT (next day) \\\ ### 5. 智能重排 \\\bash node scheduler.js auto-reschedule --fill-gaps --respect-priority \\\ 自动移动任务填补排程空隙,同时兼顾优先级与依赖关系。 --- ## 配置 \\\json // .scheduler/config.json { "timezone": "Asia/Shanghai", "workHours": { "start": "09:00", "end": "18:00" }, "bufferMinutes": 15, "rules": [ "No meetings before 10:00 on Mondays", "Reserve Friday afternoons for deep work", "Critical tasks always scheduled first" ] } \\\ ## 用例 1. Agent 任务管理:对 agent 任务进行排程与优先级划分 2. 会议协调:处理跨时区会议排程 3. Cron Job 优化:分散自动化任务以避免资源竞争 4. 截止日期管理:根据截止日期临近程度跟踪与排序任务 5. 工作与生活平衡:强制执行工作时段与休息排程