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 agentmods add commands/yezannnnn/agentgroup/todogit clone --depth 1 https://github.com/yezannnnn/agentGroupWrote 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/commands/yezannnnn/agentgroup/todo)<a href="https://agentmods.dev/commands/yezannnnn/agentgroup/todo"><img src="https://agentmods.dev/badge/commands/yezannnnn/agentgroup/todo.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00000 | $0.00479 |
| Opus 5 | $0.00000 | $0.00239 |
| Sonnet 5 | $0.00000 | $0.00096 |
| Haiku 4.5 | $0.00000 | $0.00048 |
Grade A, and why
todo 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 5d 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.
What it actually says
/todo - 待办事项管理
管理个人待办事项
使用方式
/todo # 查看所有待办
/todo add [内容] # 添加待办
/todo done [序号] # 完成待办
/todo del [序号] # 删除待办
/todo remind [序号] [提前N分钟] # 为待办设置系统提醒
执行步骤
查看待办 (/todo)
- 读取
./todos.md - 按优先级和状态分组展示:
- 🔴 紧急
- 🟡 普通
- ✅ 已完成(最近3条)
添加待办 (/todo add)
- 解析内容,识别优先级标记(!紧急)
- 追加到
./todos.md - 确认添加成功
完成待办 (/todo done)
- 将指定待办标记为已完成
- 记录完成时间
- 询问是否有后续任务
删除待办 (/todo del)
- 确认删除
- 从列表移除
设置提醒 (/todo remind)
- 解析待办序号和提前提醒时间(默认5分钟)
- 从待办中提取时间信息
- 计算提醒时间(待办时间 - 提前分钟数)
- 使用 macOS 提醒事项 App 添加系统提醒:
osascript <<'EOF' tell application "Reminders" set theDate to current date set hours of theDate to [提醒小时] set minutes of theDate to [提醒分钟] set seconds of theDate to 0 tell default list make new reminder with properties {name:"[待办标题]", body:"[原始时间] 开始", due date:theDate, remind me date:theDate} end tell end tell EOF - 确认提醒设置成功
添加待办时快捷设置提醒
在 /todo add 时,如果内容包含具体时间,询问用户是否需要设置系统提醒
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.
- 5d ago First seen · 60 lines · 0 tokens per session scan A 9da61f2860c2
todo is a command published in the GitHub repository yezannnnn/agentGroup (149 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 479 tokens. 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 commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.