网淘吧来吧,欢迎您!

Task Tracker技能使用说明

2026-03-29 新闻来源:网淘吧 围观:9
电脑广告
手机广告
<div align="center">

Task Tracker Python Status Issues Last Updated

包含每日站会和每周回顾的个人任务管理

主页触发模式命令

</div>

任务追踪器

一款用于每日站会和每周回顾的个人任务管理技能。追踪工作任务,呈现优先级,并管理阻碍事项。


本技能功能

  1. 列出任务- 显示您当前的任务清单,可按优先级、状态或截止日期筛选
  2. 每日站会- 展示今日首要任务、阻碍事项以及已完成内容
  3. 每周回顾- 总结上周工作,归档已完成事项,规划本周任务
  4. 添加任务- 创建带优先级和截止日期的新任务
  5. 完成任务- 将任务标记为已完成
  6. 笔记摘录- 从会议记录中提取行动项

文件结构

~/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-DD3月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新任务文件的模板
免责申明
部分文章来自各大搜索引擎,如有侵权,请与我联系删除。
打赏
文章底部电脑广告
手机广告位-内容正文底部

相关文章

您是本站第326253名访客 今日有220篇新文章/评论