Task Tracker技能使用说明
2026-03-29
新闻来源:网淘吧
围观:9
电脑广告
手机广告
<div align="center">
包含每日站会和每周回顾的个人任务管理
</div>任务追踪器
一款用于每日站会和每周回顾的个人任务管理技能。追踪工作任务,呈现优先级,并管理阻碍事项。
本技能功能
- 列出任务- 显示您当前的任务清单,可按优先级、状态或截止日期筛选
- 每日站会- 展示今日首要任务、阻碍事项以及已完成内容
- 每周回顾- 总结上周工作,归档已完成事项,规划本周任务
- 添加任务- 创建带优先级和截止日期的新任务
- 完成任务- 将任务标记为已完成
- 笔记摘录- 从会议记录中提取行动项
文件结构
~/clawd/memory/work/
├── TASKS.md # Active tasks (source of truth)
├── ARCHIVE-2026-Q1.md # Completed tasks by quarter
└── WORKFLOW.md # Workflow documentation
TASKS.md 文件格式:
# Work Tasks
## 🔴 High Priority (This Week)
- [ ] **Set up Apollo.io** — Access for Lilla
- Due: ASAP
- Blocks: Lilla (podcast outreach)
## 🟡 Medium Priority (This Week)
- [ ] **Review newsletter concept** — Figma design
- Due: Before Feb 1
## ✅ Done
- [x] **Set up team calendar** — Shared Google Calendar
快速开始
查看你的任务
python3 ~/clawd/skills/task-tracker/scripts/tasks.py list
每日站会
python3 ~/clawd/skills/task-tracker/scripts/standup.py
每周回顾
python3 ~/clawd/skills/task-tracker/scripts/weekly_review.py
命令参考
列出任务
# All tasks
tasks.py list
# Only high priority
tasks.py list --priority high
# Only blocked
tasks.py list --status blocked
# Due today or this week
tasks.py list --due today
tasks.py list --due this-week
添加任务
# Simple
tasks.py add "Draft project proposal"
# With details
tasks.py add "Draft project proposal" \
--priority high \
--due "Before Mar 15" \
--blocks "Sarah (client review)"
完成任务
tasks.py done "proposal" # Fuzzy match - finds "Draft project proposal"
显示阻塞项
tasks.py blockers # All blocking tasks
tasks.py blockers --person sarah # Only blocking Sarah
从会议记录提取
extract_tasks.py --from-text "Meeting: discuss Q1 planning, Sarah to own budget review"
# Outputs: tasks.py add "Discuss Q1 planning" --priority medium
# tasks.py add "Sarah to own budget review" --owner sarah
优先级级别
| 图标 | 含义 | 何时使用 |
|---|---|---|
| 🔴高 | 关键、阻塞性、截止日期驱动 | 影响收入、阻塞他人 |
| 🟡中 | 重要但不紧急 | 评估、反馈、规划 |
| 🟢低 | 监控、委派 | 等待他人、待办事项 |
状态工作流
Todo → In Progress → Done
↳ Blocked (waiting on external)
↳ Waiting (delegated, monitoring)
自动化(定时任务)
| 作业 | 时间 | 内容 |
|---|---|---|
| 每日站会 | 工作日 早上8:30 | 发布至Telegram日志群组 |
| 每周回顾 | 周一 早上9:00 | 发布总结,归档已完成事项 |
自然语言触发器
| 您说 | 技能执行 |
|---|---|
| "每日站会" | 运行 standup.py,发布至日志群组 |
| "每周回顾" | 运行 weekly_review.py,发布总结 |
| "我手头有什么任务?" | 列出所有任务 |
| "是什么阻碍了Lilla?" | 显示阻碍Lilla的任务 |
| "标记IMCAS为已完成" | 完成匹配的任务 |
| "本周有哪些截止任务?" | 列出本周截止的任务 |
| "添加任务:X" | 将任务X添加到TASKS.md |
| "从以下内容提取任务:[笔记]" | 解析笔记,输出添加命令 |
示例
晨间检查:
$ python3 scripts/standup.py
📋 Daily Standup — Tuesday, January 21
🎯 #1 Priority: Complete project proposal draft
↳ Blocking: Sarah (client review)
⏰ Due Today:
• Complete project proposal draft
• Schedule team sync
🔴 High Priority:
• Review Q1 budget (due: Before Mar 15)
• Draft blog post (due: ASAP)
✅ Recently Completed:
• Set up shared calendar
• Update team documentation
添加任务:
$ python3 scripts/tasks.py add "Draft blog post" --priority high --due ASAP
✅ Added task: Draft blog post
从会议笔记中提取:
$ python3 scripts/extract_tasks.py --from-text "Meeting: Sarah needs budget review, create project timeline"
# Extracted 2 task(s) from meeting notes
# Run these commands to add them:
tasks.py add "Budget review for Sarah" --priority high
tasks.py add "Create project timeline" --priority medium
集成点
- Telegram日志群组:站会/回顾摘要自动发布
- Obsidian:每日站会记录到
01-Daily/YYYY-MM-DD.md - MEMORY.md:模式和重复出现的阻碍在每周回顾中提升
- Cron:自动站会和回顾
故障排除
“未找到任务文件”
# Create from template
python3 scripts/init.py
任务未显示
- 检查 TASKS.md 是否存在于
~/clawd/memory/work/TASKS.md - 验证任务格式(复选框
- [ ],标题## 🔴) - 运行
tasks.py list进行调试
日期解析问题
- 截止日期支持:
尽快、YYYY-MM-DD、3月15日前、产品发布前 check_due_date()处理常见格式
文件
| 文件 | 用途 |
|---|---|
scripts/tasks.py | 主命令行界面 - 列出、添加、完成、阻塞项、归档 |
scripts/standup.py | 每日站会生成器 |
scripts/weekly_review.py | 每周回顾生成器 |
scripts/extract_tasks.py | 从会议记录中提取任务 |
scripts/utils.py | 共享工具函数(遵循DRY原则) |
scripts/init.py | 从模板初始化新的TASKS.md文件 |
references/task-format.md | 任务格式规范 |
assets/templates/TASKS.md | 新任务文件的模板 |
文章底部电脑广告
手机广告位-内容正文底部


微信扫一扫,打赏作者吧~