AutomationPython

Cron Manager

by countbot-ai

Cron Manager is an Automation skill for Claude Code, published by countbot-ai in CountBot.

767 stars100 forkson countbot-ai/CountBotAdded 2026/08/23Repository updated 2026/08/11
agent-skillsai-agentsai-assistedassistantdeepseek-v4official
Install in seconds
Install Cron Manager
Copy Cron Manager into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/countbot-ai/CountBot/tree/main/workspace/skills/cron-manager ~/.claude/skills/cron-manager

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/countbot-ai/CountBot.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
workspace/skills/cron-manager/SKILL.md in countbot-ai/CountBot
Installs to
~/.claude/skills/cron-manager
Collection
One of 14 skills cataloged from this repository
Category
Automation1523 skills

What Cron Manager does

Cron Manager manages scheduled tasks from the command line, including create, view, update, delete, enable, disable, run, and message cleanup. Use it when setting reminders, recurring jobs, or managing cron-backed sessions.

Cron Manager is cataloged under Automation on DirSkills. Cron Manager comes from a repository tagged agent-skills, ai-agents, ai-assisted, assistant and deepseek-v4.

Documentation

README

定时任务管理

通过命令行管理 CountBot 的定时任务系统,支持完整的 CRUD 操作和会话数据管理。

使用场景

  • 用户说"每天早上9点提醒我开会" -> 创建定时任务
  • 用户说"帮我设置一个每小时查天气的任务" -> 创建定时任务
  • 用户说"看看我有哪些定时任务" -> 列出任务
  • 用户说"把那个天气任务改成每2小时执行" -> 修改任务
  • 用户说"删掉那个新闻任务" -> 删除任务
  • 用户说"暂停/恢复某个任务" -> 禁用/启用任务
  • 用户说"立即执行一次那个任务" -> 手动触发
  • 用户说"看看天气任务的历史消息" -> 查看会话消息
  • 用户说"清理一下定时任务的历史记录" -> 清理会话

命令行调用

开始前先快速确认后端可用:

curl -s http://127.0.0.1:8000/api/cron/jobs || echo "后端服务没在运行!"

所有操作优先通过 exec 工具执行这个脚本:

python3 skills/cron-manager/scripts/cron_manager.py <command> [args]

硬性规则:

  • 只用 skills/cron-manager/scripts/cron_manager.py 这个脚本名,不要猜 cron.py
  • info/delete/enable/disable/run/messages/clean/reset 都优先传位置参数 <job_id>
  • 不要先 ls、再 help、再试错多次;优先直接按下面的准确命令执行
  • 只有在命令返回参数错误时,才补一条 -h 查看帮助

创建任务

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Cron Manager

  • What else does countbot-ai publish alongside Cron Manager?

    Cron Manager is one of 14 skills that DirSkills catalogs from countbot-ai/CountBot, the repository it ships in. Its siblings there include Agent Browser, Agent Team Manager and Baidu Search. Each one is a separate skill with its own page in this directory, installs the same way Cron Manager does, and is maintained by countbot-ai in that same repository. The rest of the collection is listed on the countbot-ai/CountBot page.

  • How does Cron Manager compare to other Automation skills?

    Cron Manager ranks #1001 by stars among the 1523 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Cron Manager against them. Open each page to compare what they document and how they install.