Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

dida365dida365 搜索

Agent Skill

dida365 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

326

周安装

14

GitHub Stars

公开资料未说明

下载量

114
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cshen/skills --skill dida365

简介

用于TickTick/Dida365任务管理器CLI操作,支持任务增删改查与项目管理。

  • 适用于个人待办清单同步、项目进度跟踪与Open API集成场景。
  • 通过GitHub安装,需预先设置TICKTICK_TOKEN环境变量获取认证凭证。
  • 纯Python实现零依赖,支持跨平台运行与JSON格式数据交互。
  • 提供tt.py脚本直接调用,命令模式遵循python3 {path} <command> [options]规范。

SKILL.md

Dida365 — TickTick Task Manager ✅

Manage your TickTick / Dida365 tasks and projects directly from the CLI. Pure Python, zero external dependencies.

Prerequisites

  • TICKTICK_TOKEN environment variable must be set with a valid Dida365/TickTick Open API bearer token
  • If the token is missing, stop and tell the user to set it: export TICKTICK_TOKEN="..."
  • Token can be obtained at https://developer.dida365.com/manage

Tool Location

The CLI script is bundled with this skill:

{baseDir}/tt.py

All commands follow the pattern:

python3 {baseDir}/tt.py <command> [options]

When to Use This Skill

Activate when the user wants to:

  • List, view, or check their tasks or to-do items
  • Add, create, or schedule a new task
  • Complete, finish, or check off a task
  • Delete or remove a task
  • Update, edit, reschedule, or reprioritize a task
  • List, create, or delete projects (task lists/folders)
  • Anything related to TickTick, Dida365, their calendar tasks, or daily planning

Trigger phrases: "add a task", "what are my tasks", "mark it done", "show my to-dos", "create a project", "schedule", "my dida365", "ticktick", "what's on my plate", "to-do list", "任务" (Chinese for task), "待办" (to-do)

Commands Reference

List Projects

python3 {baseDir}/tt.py projects

Returns all projects with their IDs and names. Use project IDs or names in other commands.

List Tasks

# Inbox (default)
python3 {baseDir}/tt.py tasks

# Specific project (by name or ID)
python3 {baseDir}/tt.py tasks --project "Work"
python3 {baseDir}/tt.py tasks --project 6478a1b2c3d4e5f6a7b8c9d0

Shows pending (incomplete) tasks sorted by priority then start date.

Add a Task

python3 {baseDir}/tt.py add "Task title" [options]
OptionDescriptionDefault
`--project <name\id>`Target projectinbox
`--priority <none\low\med\high>`Priority levelnone
--start <YYYY-MM-DDTHH:MM:SS>Start date (timezone auto-appended)
--notes <text>Description body
--tag <tag1,tag2>Comma-separated tags

Examples:

# Simple task
python3 {baseDir}/tt.py add "Buy groceries"

# Full options
python3 {baseDir}/tt.py add "Deploy v2.0" \
  --project Work \
  --priority high \
  --start 2026-03-20T18:00:00 \
  --notes "Run regression suite first" \
  --tag "release,urgent"

Returns the created task's ID — save it for complete/update/delete operations.

Complete a Task

python3 {baseDir}/tt.py complete <taskId> [--project <name|id>]

If --project is omitted, inbox is assumed.

Update a Task

python3 {baseDir}/tt.py update <taskId> [options]
OptionDescription
`--project <name\id>`Project the task belongs to (default: inbox)
--title <text>New title
`--priority <none\low\med\high>`New priority
--start <YYYY-MM-DDTHH:MM:SS>New start date

Delete a Task

python3 {baseDir}/tt.py delete <taskId> [--project <name|id>]

Add a Project

python3 {baseDir}/tt.py add-project "Project Name" [--color "#FF6B6B"]

Delete a Project

python3 {baseDir}/tt.py delete-project <projectId>

Important Details

Date Format

  • User provides: YYYY-MM-DDTHH:MM:SS (e.g., 2026-03-20T18:00:00)
  • The script auto-appends +0800 (Asia/Shanghai timezone)
  • The API requires RFC 822 offset format (+0800, not +08:00)

Priority Mapping

User saysFlag valueAPI value
nonenone0
lowlow1
mediummed or medium3
highhigh5

Project Resolution

  • inbox → built-in inbox project
  • A 24-char hex string → used as-is (it's already an ID)
  • Anything else → case-insensitive name lookup via the API

Error Handling

All errors print to stderr and exit code 1. Common issues:

  • TICKTICK_TOKEN not set — user needs to export the token
  • Project 'X' not found — check project name with projects command
  • API errors — token may be expired or invalid

Behavioral Rules

  1. Always run commands with python3 — the script has no shebang-based auto-execution guarantee.
  2. When the user asks to add a task, ask for the brief task description at minimum, which is the notes for the command line. Infer priority/project/date from context if the user provides them naturally. Summarize the task details using no more than 10 words in ENGLISH and use that as the task title.
  3. When the user says "my tasks" or "what's on my plate", default to listing inbox tasks. Ask which project if they have context suggesting a specific one.
  4. After creating a task, report the task ID back to the user — they'll need it for complete/update/delete.
  5. After completing or deleting, confirm the action with the task ID.
  6. If a command fails, read stderr output and explain the issue to the user in plain language.
  7. Never hardcode task IDs — always get them from tasks output or add output first.
  8. Quote titles and notes that contain spaces when building the command.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.71%
按下载量换算38

Claude

32.94%
按下载量换算38

Cursor

21.01%
按下载量换算24

Gemini CLI

10.25%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills