Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

todoist-cli-skilltodoist CLI 技能

Agent Skill

todoist-cli-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,683

周安装

428

GitHub Stars

1

下载量

3,458
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:todoist-cli-skill(todoist CLI 技能)
来源仓库:https://github.com/leaofelipe/todoist-cli-skill
安装命令:
openclaw skills install todoist-cli-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install todoist-cli-skill

简介

todoist-cli-skill 利用官方 Todoist CLI 工具管理任务和项目,适合偏好命令行操作的用户。

  • 适用于批量导入导出、定时同步或脚本集成场景,提升自动化程度。
  • 安装后需先配置 CLI 工具与 API 密钥,确保本地环境支持子进程调用。
  • 使用前应测试基础命令(如 list tasks)是否正常,排查依赖缺失问题。
  • 注意 CLI 工具可能有版本差异,建议锁定特定版本以保证行为一致。

SKILL.md

name
todoist-cli-skill
version
1.0.5
description
Manage tasks and projects in Todoist using the Official Todoist CLI tool (https://github.com/Doist/todoist-cli). Use when user asks about tasks, to-dos, reminders, productivity, or when the todoist-official skill is explicitly requested. Supports tasks, projects, labels, sections, reminders, comments, activity logs, stats, and workspaces.
homepage
https://github.com/leaofelipe/todoist-cli-skill
metadata
clawdbot
emoji
requires
bins
["td"]
env
["TODOIST_API_TOKEN"]

Todoist CLI (td)

Uses the Official Todoist CLI tool for task management.

AI/LLM note (from the CLI itself): Use td task add (not td add) for structured task creation. Use --json or --ndjson for parseable output.

Installation

npm install -g @doist/todoist-cli

Setup

Get your API token at: https://todoist.com/app/settings/integrations/developer

td auth token "your-token"
# or
export TODOIST_API_TOKEN="your-token"

Viewing Tasks

td today                          # Today + overdue
td upcoming                       # Next 7 days
td upcoming 14                    # Next N days
td inbox                          # Inbox tasks
td completed                      # Completed today
td completed --since 2026-01-01   # Completed since date

Adding Tasks

Prefer td task add with structured flags for reliability:

td task add "Review PR" --due "today" --priority p1 --project "Work"
td task add "Call mom" --due "sunday" --labels "family"
td task add "Prep slides" --project "Work" --section "Q1" --order 0  # 0 = top
td task add "Subtask" --parent <ref>
td task add "Meeting" --due "tomorrow 10am" --duration 1h

Quick add (natural language, for humans — avoid in automation):

td add "Buy milk tomorrow p1 #Shopping @errands"

Listing & Viewing Tasks

td task list                          # All tasks
td task list --project "Work"         # By project
td task list --priority p1            # By priority
td task list --label "urgent"         # By label
td task list --due today              # Due today
td task list --filter "p1 & today"    # Raw Todoist filter query
td task list --json                   # JSON output
td task view <ref>                    # Task details
td view <todoist-url>                 # View any entity by URL

Managing Tasks

td task complete <ref>                # Complete task
td task complete <ref> --forever      # Complete recurring task permanently
td task uncomplete id:<id>            # Reopen task (requires id:xxx)
td task update <ref> --due "next week" --priority p2
td task update <ref> --content "New title"
td task update <ref> --labels "a,b"   # Replaces existing labels
td task move <ref> --project "Personal"
td task reschedule <ref> "next monday" # Preserves recurrence
td task delete <ref>

Projects

td project list
td project create --name "New Project"
td project view <ref>
td project update <ref> --name "Renamed"
td project archive <ref>
td project delete <ref>               # Must have no uncompleted tasks

Sections

td section list <project>
td section create --project "Work" --name "Q2"
td section update <id> --name "Renamed"
td section delete <id>

Labels

td label list
td label create --name "urgent"
td label update <ref> --name "renamed"
td label delete <name>
td label view <ref>                   # View label + its tasks

Comments

td comment list <task-ref>
td comment add <task-ref> "Note about this task"
td comment add <task-ref> --project   # Comment on project instead
td comment update <id> "Updated text"
td comment delete <id>

Reminders

td reminder list <task-ref>
td reminder add <task-ref> --due "tomorrow 9am"
td reminder update <id> --due "friday 10am"
td reminder delete <id>

Activity & Stats

td activity                           # Recent activity log
td activity --type task --event completed --since 2026-03-01
td stats                              # Karma + productivity stats

Usage Examples

User: "What do I have today?"

td today

User: "Add 'buy milk' to my tasks"

td task add "Buy milk" --due "today"

User: "Remind me to call the dentist tomorrow"

td task add "Call the dentist" --due "tomorrow"

User: "Mark the grocery task as done"

td task list --filter "search: grocery" --json   # Find ref
td task complete <ref>

User: "What's on my work project?"

td task list --project "Work"

User: "Show my high priority tasks"

td task list --priority p1

User: "What did I complete this week?"

td completed --since 2026-03-10

Notes

  • <ref> can be a task name (fuzzy match), URL, or id:xxx
  • --order 0 = top of list (differs from mjrussell's --order top)
  • Priority: p1 = highest, p4 = lowest
  • Due dates support natural language ("tomorrow", "next monday", "jan 15")
  • --json / --ndjson recommended for any programmatic parsing
  • --full adds all fields to JSON output
  • --accessible / TD_ACCESSIBLE=1 adds text labels to color-coded output (useful in non-TTY contexts)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.01%
按下载量换算2,836

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills