Files
nexus/wiki/concepts/TaskAutomationPipeline.md
2026-04-27 12:03:03 +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: "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]] — 会议场景的流水线实现