Auto-sync: 2026-04-27 12:02

This commit is contained in:
2026-04-27 12:03:03 +08:00
parent fbd6107be4
commit 83c6e24e7c
45 changed files with 1898 additions and 886 deletions

View File

@@ -0,0 +1,38 @@
---
title: "Task Automation Pipeline"
type: concept
tags: [automation, workflow, ai, task-management]
sources: [todoist-task-manager, meeting-notes-action-items]
last_updated: 2026-04-27
---
## Definition
Task Automation Pipeline任务自动化流水线是一种端到端的 AI 工作流——将非结构化的自然语言输入,通过 LLM 解析和 API 调用,转化为结构化任务数据,并完成创建→确认→追踪的完整闭环。
## Core Pattern
```
自然语言输入 → LLM 结构化解析 → API 创建任务 → 结果确认 → 持续追踪Cron Job
```
## Variations
| 输入类型 | 解析目标 | 落地工具 |
|----------|----------|----------|
| 会议转录 | 行动项 + 负责人 + 截止日 | Jira/Linear/Todoist |
| 邮件正文 | 待回复事项 + 优先级 | Todoist/Notion |
| 聊天消息 | 任务请求 + 上下文 | Jira/Todoist |
| 语音转录 | 待确认/待执行事项 | Todoist/SuperCall |
## Related Concepts
- [[AI-Driven Task Extraction]] — 流水线中的核心解析环节
- [[Recurring Tasks]] — 流水线中的持续追踪环节
- [[Meeting-to-Task Workflow]] — 会议场景下的具体流水线实现
- [[DocumentationTheater]] — 缺乏流水线的后果:文档剧场
## Related Sources
- [[todoist-task-manager]] — 个人任务管理的流水线实现
- [[meeting-notes-action-items]] — 会议场景的流水线实现