Files
nexus/wiki/concepts/ActionItemTracking.md
2026-04-22 16:03:25 +08:00

39 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "ActionItemTracking"
type: concept
tags: []
last_updated: 2026-04-22
---
# ActionItemTracking
从非结构化文本会议记录、邮件、聊天记录中识别行动项并持续追踪其执行状态的方法论。核心要素包括任务描述、负责人Owner、截止日Deadline、状态Status
## Definition
ActionItemTracking 解决的核心问题:团队讨论中产生的行动项往往停留在口头或聊天记录中,缺乏系统化追踪机制导致遗忘和责任不清。该模式通过 AI 自动化实现:
- 从会议转录中提取所有行动项
- 识别每项任务的负责人(通过姓名匹配或说话人归属)
- 提取或推断截止日期(未提及则标记为 TBD
- 自动在项目管理工具中创建任务
- 设置截止日前提醒机制
## Key Attributes
| 属性 | 说明 |
|------|------|
| Task | 需要完成的具体任务描述 |
| Owner | 负责人,通过发言人或@提及识别 |
| Deadline | 截止日,未提及则 TBD |
| Status | 状态Pending / In Progress / Done |
| Source | 来源:会议转录、邮件、聊天等 |
## Implementation
- [[Todoist Task Manager]] — Todoist 中的通用行动项管理
- [[meeting-notes-action-items]] — 从会议转录自动提取行动项
## Related Concepts
- [[MeetingNotes]] — 行动项的主要来源场景
- [[TaskAutomation]] — 行动项的自动化创建