schedule-tasks

schedule-tasks is a skill for Claude Code, Codex from zts212653/clowder-ai. It costs 138 tokens per session (1,581 once invoked), scanned A, original, MIT.

A scheduling guide for registering and managing tasks that run later or repeat on a schedule. It supports reminders, website summaries, and activity tracking for GitHub repositories.

In plain words
What is it for?
Use it to set reminders, fetch and summarize a web page on a schedule, or monitor new issues and pull requests in a GitHub repository.
Why use it?
It removes the need to remember recurring checks or manually start the same task each time. Scheduled runs can also deliver results such as summaries, reports, images, or interactive prompts.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to set reminders, fetch and summarize a web page on a schedule, or monitor new issues and pull requests in a GitHub repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zts212653/clowder-ai/schedule-tasks
About the project

Clowder AI is a self-hosted workspace where AI agents from different model families work together as a persistent team, retaining identities, shared evidence, and memory across tasks. It is for people who want to coordinate multiple AI agents without repeatedly rebuilding their context.

zts212653/clowder-ai · 2,924 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zts212653/clowder-ai --skill schedule-tasks
Clone the repo
git clone --depth 1 https://github.com/zts212653/clowder-ai

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for schedule-tasks

README.md
[![agentmods](https://agentmods.dev/badge/skills/zts212653/clowder-ai/schedule-tasks.svg)](https://agentmods.dev/skills/zts212653/clowder-ai/schedule-tasks)
Your own site
<a href="https://agentmods.dev/skills/zts212653/clowder-ai/schedule-tasks"><img src="https://agentmods.dev/badge/skills/zts212653/clowder-ai/schedule-tasks.svg" alt="Measured on agentmods" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,581 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00138 $0.01581
Opus 5 $0.00069 $0.00790
Sonnet 5 $0.00028 $0.00316
Haiku 4.5 $0.00014 $0.00158

Measured 7d ago against content hash 895c78c236de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

schedule-tasks scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

cat-cafe-skills/schedule-tasks/SKILL.md · 143 lines

How it starts

The opening of the file, as written. The whole thing — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Schedule Tasks — 定时任务注册与管理

用户在对话中表达"定时/定期/每天/提醒我"等意图时,引导他们通过对话注册定时任务。

你的能力

被定时任务唤醒后,你拥有完整的 invocation 能力——和用户 @ 你一模一样:

能力 示例
发图片 media_gallery rich block(优先用已有图片 /avatars//uploads/
发语音 audio rich block(早安问候、新闻播报)
发卡片 card rich block(状态报告、新闻摘要)
发 HTML 面板 html_widget rich block(数据可视化、图表)
搜索 WebSearch / WebFetch / search_evidence
生成图片 image-generation skill(Chrome MCP → Gemini)
交互选择 interactive rich block(让用户确认/选择)

重要:不要只发纯文本!被唤醒后主动用 rich block 让输出更丰富。

注册流程(对话式,4 步)

1. 识别意图

用户说:"每天早上 9 点提醒我喝水" / "每小时给我 anthropic 新闻"

2. 匹配模板

调用 cat_cafe_list_schedule_templates 查看可用模板:

模板 用途 关键参数
reminder 定时提醒(唤醒猫处理提醒内容) message: 提醒内容, targetCatId: 唤醒哪只猫(MCP 自动注入当前猫 ID,通常不需手动填)
web-digest 网页摘要(定时抓取网页并总结;JS 重站点会唤醒猫走 browser-automation) url: 目标网页, topic: 关注主题, targetCatId: 浏览器抓取时唤醒哪只猫(MCP 自动注入当前猫 ID,通常不需手动填)
repo-activity 仓库动态(追踪 GitHub repo 新 issue/PR) repo: owner/repo

3. 预览确认

调用 cat_cafe_preview_scheduled_task 生成 draft,展示给用户确认:

模板: reminder
触发: 每天 09:00(cron: 0 9 * * *)
参数: message = "检查 backlog 并汇报进度"
投递: 当前 thread

4. 注册

用户确认后调用 cat_cafe_register_scheduled_task 持久化任务。

Trigger 语法速查

周期触发(recurring)

用户说 trigger JSON
每天早上 9 点 {"type":"cron","expression":"0 9 * * *"}
每小时 {"type":"interval","ms":3600000}
每 30 分钟 {"type":"interval","ms":1800000}
每周一早上 10 点 {"type":"cron","expression":"0 10 * * 1"}
每 5 分钟 {"type":"interval","ms":300000}

一次性触发(once — #415)

用户说 trigger JSON
2 分钟后提醒我 {"type":"once","delayMs":120000}
1 小时后查天气 {"type":"once","delayMs":3600000}
30 秒后通知我 {"type":"once","delayMs":30000}

一次性任务执行后会自动退役(从 runtime 注销 + 从 SQLite 删除),不会重复触发。 路由层会将 delayMs 归一化为绝对时间 fireAt(epoch ms),确保重启后触发时间不漂移。

管理

操作 工具
查看所有任务 SchedulePanel(Workspace 调度 Tab)
暂停/恢复 SchedulePanel UI(目前无 MCP 工具,只能在面板操作)
删除 cat_cafe_remove_scheduled_task
手动触发 SchedulePanel UI "立即执行" 按钮(目前无 MCP 工具)

Read the full file on GitHub · 143 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 143 lines · 138 tokens per session scan A 895c78c236de

Subscribe to this mod's changes

schedule-tasks is a skill published in the GitHub repository zts212653/clowder-ai (2,924 stars, last pushed today), licensed MIT. It adds 138 tokens to every session and 1,581 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

autotask-creator

Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.

Orkas-AI/Orkas · 5 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens