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.
npx skills add hyqibot/token-free-openclaw --skill crongit clone --depth 1 https://github.com/hyqibot/token-free-openclawWrote 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.
[](https://agentmods.dev/skills/hyqibot/token-free-openclaw/cron)<a href="https://agentmods.dev/skills/hyqibot/token-free-openclaw/cron"><img src="https://agentmods.dev/badge/skills/hyqibot/token-free-openclaw/cron/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/hyqibot/token-free-openclaw/cron"><img src="https://agentmods.dev/badge/skills/hyqibot/token-free-openclaw/cron.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00079 | $0.01376 |
| Opus 5 | $0.00039 | $0.00688 |
| Sonnet 5 | $0.00016 | $0.00275 |
| Haiku 4.5 | $0.00008 | $0.00138 |
Grade A, and why
cron 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 205 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Cron(定时任务管理)
什么时候用
只有在需要未来某个时间自动执行,或按周期重复执行时,使用本 skill。
应该使用
- 用户要求"每天 / 每周 / 每小时"执行某事
- 用户要求"明天 9 点 / 下周一 / 某个时间"自动提醒或执行
- 需要长期周期性通知、检查、汇报
不应使用
- 只是要现在立即执行一次
- 只是当前会话中的正常回复
- 用户没有明确执行时间或周期
- 目标 channel / user / session 还不明确
决策规则
- 只有在未来定时执行或周期执行时才使用 cron
- 如果只是立即做一次,通常不要创建 cron
- 创建前必须确认执行时间/周期、目标 channel、target-user、target-session
- 所有 cron 命令都必须显式传
--agent-id - 不要依赖默认 agent,否则任务可能落到 default workspace
硬规则
必须显式指定 --agent-id
所有 copaw cron 命令都必须传:
--agent-id <your_agent_id>
你的 agent_id 在系统提示中的 Agent Identity 部分(Your agent id is ...)。
不得省略,否则任务可能错误创建到 default agent 的 workspace。
常用命令
# 列出任务
copaw cron list --agent-id <agent_id>
# 查看任务详情
copaw cron get <job_id> --agent-id <agent_id>
# 查看任务状态
copaw cron state <job_id> --agent-id <agent_id>
# 创建任务
copaw cron create --agent-id <agent_id> ...
# 删除任务
copaw cron delete <job_id> --agent-id <agent_id>
# 暂停 / 恢复任务
copaw cron pause <job_id> --agent-id <agent_id>
copaw cron resume <job_id> --agent-id <agent_id>
# 立即执行一次已有任务
copaw cron run <job_id> --agent-id <agent_id>
创建任务
支持两种类型:
- text:定时发送固定消息
- agent:定时向 agent 提问,并把回复发送到目标 channel
创建前最少要确认
--type--name--cron--channel--target-user--target-session--text--agent-id
如果缺少这些信息,应先向用户确认,再创建任务。
创建示例
copaw cron create \
--agent-id <agent_id> \
--type text \
--name "每日早安" \
--cron "0 9 * * *" \
--channel imessage \
--target-user "CHANGEME" \
--target-session "CHANGEME" \
--text "早上好!"
copaw cron create \
--agent-id <agent_id> \
--type agent \
--name "检查待办" \
--cron "0 */2 * * *" \
--channel dingtalk \
--target-user "CHANGEME" \
--target-session "CHANGEME" \
--text "我有什么待办事项?"
从 JSON 创建
copaw cron create --agent-id <agent_id> -f job_spec.json
最小工作流
1. 判断是否真的是"未来定时"或"周期执行"
2. 确认执行时间/周期
3. 确认 channel、target-user、target-session
4. 显式带上 --agent-id
5. copaw cron create 创建任务
6. 后续用 list / state / pause / resume / delete 管理
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.
- 11d ago First seen · 205 lines · 79 tokens per session scan A c6b7eadce8b3
cron is a skill published in the GitHub repository hyqibot/token-free-openclaw (123 stars, last pushed 18d ago), licensed Apache-2.0. It adds 79 tokens to every session and 1,376 once invoked, about $0.0004 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.
Other skills, from other repositories
tmux
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
cron
Schedule reminders and recurring tasks.
welcome
Introduce yourself to a newly connected channel. Triggered automatically when a channel is first wired. Send a friendly greeting and brief overview of what you can do.
add-teams
Add Microsoft Teams channel integration via Chat SDK.
meeting-note-summarizer
Turn meeting notes or transcripts into factual summaries, decisions, questions, and action items. Use when a user wants a concise recap or needs explicit owners and deadlines extracted without filling in missing details.
daily-standup-journal
Generate concise daily standups, reflection prompts, and weekly retrospectives for individuals or teams. Use for planning a day, surfacing blockers, reviewing user-provided entries, or drafting a check-in without assuming prior history.