agent-self-scheduling

仓库创建 2026年1月15日最近提交 3 小时前SkillHot 收录 3 小时前
▸ 精选理由

强调避免不安全的高频自治调度,适合长期任务。

▸ 风险提示

不当配置可能导致无限循环或资源滥用,需要限制频率与权限。

这个 Skill 做什么

为代理提供 cron、循环或外部时钟的安全调度策略与建议。

为 AI 代理设计安全的定时方案:用 cron、循环或外部时钟触发任务,同时避免不受控的高频自主定时器。适合需要代理做周期性、心跳或循环工作的场景,会判断是用代理内建 scheduler 还是由外部掌控时钟。还会给出最低频率建议(比如 cron 最少 1 分钟)和选型理由,防止资源暴涨或竞态问题。

▸ 展开 SKILL.md 英文原文

Schedule AI agent runs with cron, loops, or external clocks while avoiding unsafe tight autonomous timers.

自动化集成调度定时任务周期执行安全通用
4.4w
Stars
6.5k
Forks
40
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/sickn33/agentic-awesome-skills/main/skills/agent-self-scheduling/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/sickn33/agentic-awesome-skills/main/skills/agent-self-scheduling/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Agent Self-Scheduling

## When to Use

- Use when the user asks for recurring, scheduled, heartbeat, or looped agent work.
- Use when you need to choose between cron, external schedulers, hooks, or built-in agent scheduling.

First question: does the agent have a built-in scheduler (Hermes → Camp B), or do you own the clock (everything else → Camp A)?

Universal floor: cron is 1 minute minimum (5-field expr, no seconds) — every camp. For sub-minute you MUST use a `while ...; sleep N; done` loop, a TS extension, or an event hook. Never put an LLM on a tight timer.

## Camp A — one-shot agents, you own the clock

These run once and exit (amnesiac unless resumed). Schedule them externally.

`
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有