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

ticktickpowerticktickpower 命令行

Agent Skill

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

总安装

4,134

周安装

174

GitHub Stars

公开资料未说明

下载量

1,448
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ticktickpower

简介

使用 OAuth2 身份验证、批量操作和速率限制处理从命令行管理 TickTick 任务和项目。

SKILL.md

name
ticktick
description
Manage TickTick tasks and projects from the command line with OAuth2 auth, batch operations, and rate limit handling.

TickTick CLI Skill

Manage TickTick tasks and projects from the command line.

Setup

1. Install dependencies

pip install -e .
# or just: pip install requests

2. Register a TickTick Developer App

  1. Go to TickTick Developer Center
  2. Create a new application
  3. Set the redirect URI to http://localhost:8080
  4. Note your Client ID and Client Secret

3. Authenticate

# Set credentials and start OAuth flow
python -m ticktick.cli auth --client-id YOUR_CLIENT_ID --client-secret YOUR_CLIENT_SECRET

# Check authentication status
python -m ticktick.cli auth --status

# Logout (clear tokens, keep credentials)
python -m ticktick.cli auth --logout

If installed via pip install -e ., you can also use:

ticktick auth --client-id YOUR_CLIENT_ID --client-secret YOUR_CLIENT_SECRET

Headless / Manual Authentication

# Use manual mode on headless servers
python -m ticktick.cli auth --client-id YOUR_CLIENT_ID --client-secret YOUR_CLIENT_SECRET --manual

This prints an authorization URL. Open it in a browser, approve access, then copy the full redirect URL (it looks like http://localhost:8080/?code=XXXXX&state=STATE) and paste it back into the CLI.

Tokens are stored in ~/.clawdbot/credentials/ticktick-cli/config.json.

Commands

List Tasks

# List all tasks
python -m ticktick.cli tasks

# List tasks from a specific project
python -m ticktick.cli tasks --list "Work"

# Filter by status
python -m ticktick.cli tasks --status pending
python -m ticktick.cli tasks --status completed

# JSON output
python -m ticktick.cli tasks --json

Create Task

# Basic task creation
python -m ticktick.cli task "Buy groceries" --list "Personal"

# With description and priority
python -m ticktick.cli task "Review PR" --list "Work" --content "Check the new auth changes" --priority high

# With due date
python -m ticktick.cli task "Submit report" --list "Work" --due tomorrow
python -m ticktick.cli task "Plan vacation" --list "Personal" --due "in 7 days"
python -m ticktick.cli task "Meeting" --list "Work" --due "2024-12-25"

# With tags
python -m ticktick.cli task "Research" --list "Work" --tag research important

# With start and due date (creates a time block)
python -m ticktick.cli task "Meeting" --list "Work" --start "2026-04-26T14:00:00+02:00" --due "2026-04-26T15:30:00+02:00"

Update Task

# Update by task name or ID
python -m ticktick.cli task "Buy groceries" --update --priority medium
python -m ticktick.cli task "abc123" --update --due tomorrow --content "Updated notes"

# Rename a task
python -m ticktick.cli task "Old Name" --update --new-title "New Name"

# Limit search to specific project
python -m ticktick.cli task "Review PR" --update --list "Work" --priority low

# Update with start and due date (time block)
python -m ticktick.cli task "Meeting" --update --start "2026-04-26T14:00:00+02:00" --due "2026-04-26T15:30:00+02:00"

Complete Task

# Mark task as complete
python -m ticktick.cli complete "Buy groceries"

# Complete with project filter
python -m ticktick.cli complete "Review PR" --list "Work"

Abandon Task (Won't Do)

# Mark task as won't do
python -m ticktick.cli abandon "Old task"

# Abandon with project filter
python -m ticktick.cli abandon "Obsolete item" --list "Do"

Batch Abandon (Multiple Tasks)

# Abandon multiple tasks in a single API call
python -m ticktick.cli batch-abandon <taskId1> <taskId2> <taskId3>

# With JSON output
python -m ticktick.cli batch-abandon abc123def456... xyz789... --json

Note: batch-abandon requires task IDs (24-character hex strings), not task names. Use tasks --json to get task IDs first.

Attach File to Task

# Attach a file by task name
python -m ticktick.cli attach "Buy groceries" /path/to/file.pdf --list "Personal"

# Attach by task ID
python -m ticktick.cli attach abc123def456789012345678 /path/to/image.png

# JSON output
python -m ticktick.cli attach "Report" /tmp/report.pdf --list "Work" --json

Note: Attachment upload requires sessionCookie and v2DeviceId in the credentials config file. These use the TickTick web session API, not OAuth. If uploads fail with 401/403, the session cookie has expired — get a fresh t cookie from your browser.

List Projects

# List all projects
python -m ticktick.cli lists

# JSON output
python -m ticktick.cli lists --json

Create Project

# Create new project
python -m ticktick.cli list "New Project"

# With color
python -m ticktick.cli list "Work Tasks" --color "#FF5733"

Update Project

# Rename project
python -m ticktick.cli list "Old Name" --update --new-name "New Name"

# Change color
python -m ticktick.cli list "Work" --update --color "#00FF00"

Options Reference

Priority Levels

  • none - No priority (default)
  • low - Low priority
  • medium - Medium priority
  • high - High priority

Start / Due Date Formats

  • today - Today
  • tomorrow - Tomorrow
  • in N days - In N days (e.g., "in 3 days")
  • next monday - Next occurrence of weekday
  • ISO date with timezone - 2026-04-26T17:00:00+02:00 (preferred for precision)
  • ISO date - YYYY-MM-DD or full ISO format

Important: Always use explicit timezone offsets (e.g. +02:00) for ISO dates to avoid UTC conversion issues.

Global Options

  • --json - Output results in JSON format (useful for scripting)
  • --help - Show help for any command

Agent Usage Tips

When using this skill as an AI agent:

  1. Always use --json flag for machine-readable output
  2. List projects first with lists --json to get valid project IDs
  3. Use project IDs rather than names when possible for reliability
  4. Check task status before completing to avoid errors

Example agent workflow:

# 1. Get available projects
python -m ticktick.cli lists --json

# 2. Create a task in a specific project
python -m ticktick.cli task "Agent task" --list "PROJECT_ID" --priority high --json

# 3. Later, mark it complete
python -m ticktick.cli complete "Agent task" --list "PROJECT_ID" --json

Configuration

Tokens are stored in ~/.clawdbot/credentials/ticktick-cli/config.json:

{
  "clientId": "YOUR_CLIENT_ID",
  "clientSecret": "YOUR_CLIENT_SECRET",
  "accessToken": "...",
  "refreshToken": "...",
  "tokenExpiry": 1234567890000,
  "redirectUri": "http://localhost:8080"
}

Note: Credentials are stored in plaintext. The CLI sets file permissions to 700/600; treat this file as sensitive.

The CLI automatically refreshes tokens when they expire.

Troubleshooting

"Not authenticated" error

Run python -m ticktick.cli auth to authenticate.

"Project not found" error

Use python -m ticktick.cli lists to see available projects and their IDs.

"Task not found" error

  • Check the task title matches exactly (case-insensitive)
  • Try using the task ID instead
  • Use --list to narrow the search to a specific project

Token expired errors

The CLI auto-refreshes tokens. If issues persist, run python -m ticktick.cli auth again.

File Attachments

The CLI supports file attachments via the attach command. Attachments use a different API (/api/v1/, NOT /open/v1/) and require a session cookie — not OAuth.

Requirements

  • Session cookie (t cookie from ticktick.com browser login) — stored in config as sessionCookie
  • X-Device header — JSON with platform, version, id fields
  • OAuth tokens do NOT work for attachments

Manual curl upload (alternative to attach command)

# Read credentials
CONFIG="$HOME/.clawdbot/credentials/ticktick-cli/config.json"
COOKIE=$(python3 -c "import json; print(json.load(open('$CONFIG'))['sessionCookie'])")
DEVICE_ID=$(python3 -c "import json; print(json.load(open('$CONFIG')).get('v2DeviceId','clawagent00000000000001'))")
XDEVICE="{\"platform\":\"web\",\"version\":6430,\"id\":\"$DEVICE_ID\"}"

# Generate attachment ID (24-char hex)
ATT_ID=$(python3 -c "import secrets; print(secrets.token_hex(12))")

# Upload
curl -s -X POST \
  "https://api.ticktick.com/api/v1/attachment/upload/{PROJECT_ID}/{TASK_ID}/$ATT_ID" \
  -H "Cookie: t=$COOKIE" \
  -H "X-Device: $XDEVICE" \
  -H "User-Agent: Mozilla/5.0 (rv:145.0) Firefox/145.0" \
  -H "Origin: https://ticktick.com" \
  -H "Referer: https://ticktick.com/webapp/" \
  -F "file=@/path/to/file.pdf;type=application/pdf;filename=myfile.pdf"

Upload endpoint details

  • URL: https://api.ticktick.com/api/v1/attachment/upload/{projectId}/{taskId}/{attachmentId}
  • Method: POST multipart/form-data
  • Auth: Cookie t={sessionCookie} + X-Device header (JSON)
  • File field: file (standard multipart)
  • Response: JSON with id, refId, path, size, fileName, fileType, createdTime
  • fileType values: IMAGE, PDF, OTHER (auto-detected by server)

Important notes

  • The attachmentId is client-generated (24-char hex, e.g. secrets.token_hex(12))
  • Session cookies expire. When you get 401/403/access_forbidden on attachment uploads, the cookie is dead. Ask the user for a fresh t cookie from their browser (ticktick.com → DevTools → Application → Cookies → t). Update sessionCookie in config. Never ask for the user's password.
  • The V1 API (/open/v1/) does NOT return attachments in task responses
  • V2 batch endpoint (/api/v2/batch/task) needs session cookie + X-Device header to work

API Notes

This CLI uses the TickTick Open API v1.

Rate Limits

  • 100 requests per minute
  • 300 requests per 5 minutes

The CLI makes multiple API calls per operation (listing projects to find a task), so bulk operations can hit limits quickly.

Batch Endpoint

The CLI supports TickTick's batch endpoint for bulk operations:

POST https://api.ticktick.com/open/v1/batch/task
{
  "add": [...],
  "update": [...],
  "delete": [...]
}

Use batch-abandon to abandon multiple tasks in one API call.

Other Limitations

  • Maximum 500 tasks per project
  • Some advanced features (focus time, habits) not supported by the API

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.69%
按下载量换算1,110

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills