Files
nexus/wiki/entities/Todoist.md

1.2 KiB
Raw Blame History

title, type, tags, last_updated
title type tags last_updated
Todoist entity
2026-05-02

Overview

Todoist 是一个流行的 SaaS 任务管理工具,提供 REST API v2支持任务Tasks、评论Comments、项目Projects、分区Sections等对象的 CRUD 操作。

Role in Agent Workflows

Todoist 常被用作 AI Agent 的外部状态同步层:

  • 创建/更新任务状态In Progress / Waiting / Done
  • 外化 Agent 的内部 Plan 到任务描述
  • 追加子步骤日志为评论
  • 接收 Cron Job 的逾期提醒通知

API Capabilities

  • Tasks API:创建、更新、移动、关闭任务
  • Comments API:在任务下追加评论
  • Sections API:创建分区组织任务(如 🟡 In Progress
  • Labels API:为任务添加标签
  • Projects API:组织多个项目

Integration Pattern

典型集成方式(参考 TodoistTaskManager

./todoist_api.sh <endpoint> <method> [data_json]
./sync_task.sh <content> <status> [task_id] [description] [labels]
./add_comment.sh <task_id> <comment_text>