Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

ticktick-enhanced滴答声增强

Agent Skill

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

总安装

3,182

周安装

130

GitHub Stars

公开资料未说明

下载量

1,019
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ticktick-enhanced

简介

ticktick-enhanced 增强版 TickTick 任务与项目管理工具。

  • 适用于 OpenClaw 中精细化管控个人或团队待办事项与项目进度。
  • 支持任务增删改查、子任务拆分及优先级标记等高级操作。
  • 安装命令为 openclaw skills install ticktick-enhanced,需绑定 TickTick 账户。
  • 注意接口调用频率限制,避免因频繁请求被临时封禁。

SKILL.md

name
ticktick
description
Manage TickTick tasks and projects
triggers

TickTick Skill

Manage your TickTick tasks and projects directly from OpenClaw.

Setup

Before using, authenticate once (OAuth2):

cd ~/.openclaw/workspace/skills/ticktick
bun run scripts/ticktick.ts auth --client-id YOUR_CLIENT_ID --client-secret YOUR_CLIENT_SECRET

Follow the OAuth flow. Credentials are stored securely in ~/.clawdbot/credentials/ticktick-cli/.

Check status: bun run scripts/ticktick.ts auth --status

Commands

List Projects

/tasks projects or /ticktick projects

Shows all your TickTick projects with IDs and names.

List Tasks

/tasks [options] or /ticktick tasks [options]

List tasks with powerful filtering and sorting.

Options:

  • --project <name> – Filter by project name or ID
  • --status <pending|completed> – Filter by status
  • --due <filter> – Filter by due: today, overdue, none, unspecified
  • --priority <level> – Filter: high, medium, low, none
  • --sort <field> – Sort by: due, priority, title, created
  • --limit <N> – Maximum number of tasks to return
  • --offset <N> – Skip first N tasks (for pagination)
  • --group – Group output by project
  • --format <type> – Output format: plain, rich, json, yaml
  • --verbose – Show API requests for debugging

Examples:

/tasks --project Work --status pending --sort due
/tasks --due overdue --format rich
/tasks --priority high --limit 20
/tasks --project Hobbies --group

Create Task

/tasks add "<title>" [options]

Options:

  • --list <project> – Project (required if no default configured)
  • --due <when> – Due date: "today", "tomorrow", "in 3 days", or ISO date
  • --priority <low|medium|high> – Priority level
  • --content "<notes>" – Task description/notes
  • --tags <tag1 tag2 ...> – Tags to apply

Example:

/tasks add "Upgrade thermostat firmware" --list Hillcrest --due today --priority medium --content "Flash new firmware from repo"

Edit Task

/tasks edit <task-id> [options]

Modify an existing task. Task ID (24-character hex) is required. Obtain IDs from /tasks --json.

Options:

  • --title "<new title>" – Change title
  • --content "<new notes>" – Replace content/notes
  • --due <date> – Change due date
  • --priority <level> – Change priority (none, low, medium, high)
  • --tags <tags...> – Replace tags (space-separated)
  • --json – Output updated task as JSON
  • --verbose – Show diagnostic info

Examples:

/tasks edit 65a54fce2026ccc8b729349b --priority high
/tasks edit 65a54fce2026ccc8b729349b --due "in 3 days" --content "Urgent: complete this week"

Complete Task

/tasks complete <task-id> [--json] or /tasks done <task-id> [--json]

Mark a task as complete. Both complete and done are aliases. Task ID is required.

Abandon Task

/tasks abandon <task-id> [--json]

Mark a task as "won't do" (abandoned). Task ID is required.

Task Details

/tasks details <task-id> [options]

Show full information about a single task. Task ID is required.

Options:

  • --json – Output as JSON
  • --verbose – Show full task object

Example:

/tasks details 65a54fce2026ccc8b729349b

Batch Abandon

/tasks batch-abandon <task-id-1> <task-id-2> ...

Abandon multiple tasks in a single API call using their IDs.

Config

/tasks config get <key> – Get a configuration value /tasks config set <key> <value> – Set a configuration value /tasks config list – Show all config

Configuration keys:

  • default.project – Default project for add when --list omitted
  • default.due – Default due date for new tasks ("none", "today", "tomorrow")
  • display.colors – Enable/disable colored output (true/false)
  • display.timezone – Timezone for date display (e.g., "America/New_York")

Example:

/tasks config set default.project Personal
/tasks config set default.due none
/tasks config list

Config is stored in ~/.config/ticktick-skill/config.json.


ADHD-Friendly Usage

Morning Triage

Use the following to start your day:

/tasks --due overdue --format rich
/tasks --due today --format rich
/tasks --priority high --format rich

Or combine: /tasks --format rich (shows all pending, sorted by urgency)

Quick Wins

Find small tasks to build momentum:

/tasks --priority low --limit 10 --sort title

Or use /tasks details <id> to assess quickly.

Focus Mode

Show only what needs attention today:

/tasks --due today --sort due

Reduce Overwhelm

  • Use --limit to avoid seeing everything at once
  • Group by project: /tasks --group to break into chunks
  • Use colored output (--format rich) to prioritize by color

Notes

  • Task IDs: All commands that operate on a specific task require the 24-character hex ID for reliability. Get IDs from /tasks --json.
  • Project names: Case-insensitive, partial match works (e.g., "Hill" matches "Hillcrest")
  • Due dates: Flexible parsing supports "today", "tomorrow", "in 3 days", "next monday", and ISO dates (YYYY-MM-DD)
  • Rate limits: TickTick API allows ~100 requests/minute. The CLI respects limits; if you hit them, wait a minute and retry.
  • JSON output: Add --json to any command for machine-readable output (useful for scripts)

Troubleshooting

"Task not found"

  • Verify you're using the correct 24-char task ID
  • Get fresh IDs with /tasks --json

"Project not found"

  • List all projects with /tasks projects
  • Project names are case-insensitive but must match exactly (partial match works)

Authentication errors

  • Re-run: bun run scripts/ticktick.ts auth
  • Check credentials exist: ls ~/.clawdbot/credentials/ticktick-cli/

Rate limit exceeded

  • Wait ~60 seconds and retry
  • Use --verbose to see request counts

Dates not parsing

  • Use ISO format: 2026-03-25
  • Or natural language: tomorrow, in 5 days, next friday

Implementation

Wrapper skill uses bun run scripts/ticktick.ts with --json flag and parses responses. Authentication stored in ~/.clawdbot/credentials/ticktick-cli/.

Command Reference Table

CommandPurposeKey Options
projectsList all projects
tasksList tasks--project, --status, --due, --priority, --sort, --limit, --group
addCreate task--list, --due, --priority, --content, --tags
editModify task--title, --content, --due, --priority, --tags
complete / doneMark complete
abandonMark won't-do
detailsShow full task info--json, --verbose
batch-abandonAbandon multiple<task-id>...
configManage configget, set, list

*Happy task managing!*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.43%
按下载量换算993

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills