π¦ ClawHub
TickTick
by @byungkyu
TickTick API integration with managed OAuth. Manage tasks, projects, and task lists. Use this skill when users want to create, update, complete, or organize...
π‘ Examples
# List all projects
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/ticktick/open/v1/project')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
π Tips & Best Practices
status values: 0 = Active, 2 = Completed2026-02-15T10:00:00+0000)viewMode for projects: list, kanban, or timelinecolumns field in project data is used for Kanban board columnsjq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environmentsTERMINAL
clawhub install ticktick-api-skill