Install
openclaw skills install ticktick-enhancedManage TickTick tasks and projects
openclaw skills install ticktick-enhancedManage your TickTick tasks and projects directly from OpenClaw.
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
/tasks projects or /ticktick projects
Shows all your TickTick projects with IDs and names.
/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 debuggingExamples:
/tasks --project Work --status pending --sort due
/tasks --due overdue --format rich
/tasks --priority high --limit 20
/tasks --project Hobbies --group
/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 applyExample:
/tasks add "Upgrade thermostat firmware" --list Hillcrest --due today --priority medium --content "Flash new firmware from repo"
/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 infoExamples:
/tasks edit 65a54fce2026ccc8b729349b --priority high
/tasks edit 65a54fce2026ccc8b729349b --due "in 3 days" --content "Urgent: complete this week"
/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.
/tasks abandon <task-id> [--json]
Mark a task as "won't do" (abandoned). Task ID is required.
/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 objectExample:
/tasks details 65a54fce2026ccc8b729349b
/tasks batch-abandon <task-id-1> <task-id-2> ...
Abandon multiple tasks in a single API call using their IDs.
/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 omitteddefault.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.
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)
Find small tasks to build momentum:
/tasks --priority low --limit 10 --sort title
Or use /tasks details <id> to assess quickly.
Show only what needs attention today:
/tasks --due today --sort due
--limit to avoid seeing everything at once/tasks --group to break into chunks--format rich) to prioritize by color/tasks --json.--json to any command for machine-readable output (useful for scripts)"Task not found"
/tasks --json"Project not found"
/tasks projectsAuthentication errors
bun run scripts/ticktick.ts authls ~/.clawdbot/credentials/ticktick-cli/Rate limit exceeded
--verbose to see request countsDates not parsing
2026-03-25tomorrow, in 5 days, next fridayWrapper skill uses bun run scripts/ticktick.ts with --json flag and parses responses. Authentication stored in ~/.clawdbot/credentials/ticktick-cli/.
| Command | Purpose | Key Options |
|---|---|---|
projects | List all projects | – |
tasks | List tasks | --project, --status, --due, --priority, --sort, --limit, --group |
add | Create task | --list, --due, --priority, --content, --tags |
edit | Modify task | --title, --content, --due, --priority, --tags |
complete / done | Mark complete | – |
abandon | Mark won't-do | – |
details | Show full task info | --json, --verbose |
batch-abandon | Abandon multiple | <task-id>... |
config | Manage config | get, set, list |
Happy task managing!