[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-ticktick":3,"mdc--nvjwh6-key":34,"related-repo-minimax-ticktick":871,"related-org-minimax-ticktick":958},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"ticktick","manage TickTick tasks and habits","Manage TickTick (international, ticktick.com) tasks, lists, habits, focus records and countdowns through the official TickTick MCP server at mcp.ticktick.com. Use when the user asks to check, plan, create, update, complete or review tasks and habits on TickTick, or asks about focus history and countdowns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"minimax","MiniMax","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fminimax.jpg","MiniMax-AI",[13,17,20],{"name":14,"slug":15,"type":16},"MCP","mcp","tag",{"name":18,"slug":19,"type":16},"Scheduling","scheduling",{"name":21,"slug":22,"type":16},"Task Management","task-management",5,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMiniMax-Code-Plugins","2026-08-18T03:49:42.187465",null,2,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Community registry and contribution toolkit for MiniMax Code plugins.","https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMiniMax-Code-Plugins\u002Ftree\u002FHEAD\u002Fplugins\u002FHopeYin\u002Fticktick\u002Fskills\u002Fticktick","---\nname: ticktick\ndescription: Manage TickTick (international, ticktick.com) tasks, lists, habits, focus records and countdowns through the official TickTick MCP server at mcp.ticktick.com. Use when the user asks to check, plan, create, update, complete or review tasks and habits on TickTick, or asks about focus history and countdowns.\n---\n\n# TickTick task management\n\nManage the user's tasks, lists, habits, focus records and countdowns through the official TickTick MCP server (`https:\u002F\u002Fmcp.ticktick.com`, Streamable HTTP). This Skill is for **international TickTick (ticktick.com) accounts only**; for the China version (滴答清单 \u002F dida365.com) use the `dida365` plugin instead.\n\n## Before you start\n\n- The user must have completed authorization (OAuth or API Token). If any tool call returns an authentication error, tell the user: TickTick web app → avatar → Settings → Account → API Token, or redo the OAuth flow.\n- On first use, call `list_projects` to learn the user's list structure before operating on tasks.\n\n## Operating rules\n\n1. **Look before you change.** Before updating, completing, moving or deleting a task, locate it with `search_task` or `filter_tasks`, show the user exactly what you are about to do, then act.\n2. **Deletion is irreversible.** `delete_task` moves a task to the trash, `delete_project_group` dissolves every list inside the folder, `delete_comment` removes a comment permanently, and `delete_focus` removes a focus record permanently — always get explicit user confirmation before any of them.\n3. **Be specific.** When a request is ambiguous (no list name, date or priority), ask before creating or modifying anything. Do not guess.\n4. **Split complex requests.** \"Review last week and reschedule this week\" should run as: query → summarize to the user → confirm → batch operation.\n\n## Tool map\n\n- **Query**: `search_task` (keywords), `get_task_by_id`, `list_undone_tasks_by_time_query` (today \u002F tomorrow \u002F last7day \u002F next7day, etc.), `list_undone_tasks_by_date` (max 14-day span), `list_completed_tasks_by_date`, `filter_tasks` (multi-condition)\n- **Lists**: `list_projects`, `create_project`, `update_project`, `get_project_with_undone_tasks`; columns via `list_columns` \u002F `create_column` \u002F `update_column`; folders via `list_project_groups` \u002F `create_project_group` \u002F `update_project_group` \u002F `delete_project_group`\n- **Tasks**: `create_task`, `batch_add_tasks`, `complete_task`, `complete_tasks_in_project` (max 20 per call), `update_task`, `move_task`, `batch_update_tasks`, `delete_task` (requires both `task_id` and `project_id`)\n- **Comments & assignment**: `get_comment`, `add_comment`, `delete_comment`, `assign_task`, `unassign_task`, `project_member`\n- **Tags**: `list_tags`, `create_tag`\n- **Habits**: `list_habits`, `create_habit`, `update_habit`, `get_habit_checkins`, `upsert_habit_checkins` (check-ins limited to the last 90 days)\n- **Focus records**: `get_focuses_by_time` (max one month per call), `create_focus`, `delete_focus`\n- **Countdowns**: `list_countdowns`\n\n## Parameter conventions\n\n- **Object parameters must be real JSON objects, never stringified JSON.** Testing shows some models (e.g. MiniMax-M3) emit `task` as a string and quote integers, corrupting every inner field type:\n  - ❌ Wrong: `\"task\": \"{\\\"title\\\": \\\"x\\\", \\\"priority\\\": 5}\"`\n  - ✅ Correct: `\"task\": {\"title\": \"x\", \"priority\": 5}`\n  - If the server's `Received arguments` echo shows quoted values, the call was stringified — immediately resend in object form.\n- Priority: 0 = none, 1 = low, 3 = medium, 5 = high. \"High priority\" means 5.\n- **Pass `priority` as a JSON number** (`\"priority\": 5`, never quoted). If the server replies `task.priority: must be integer`, the value was stringified somewhere in the call chain: confirm you sent a number and retry once; if it still fails, the client's serialization layer is at fault — create the task without a priority and tell the user to set the flag manually in the TickTick app.\n- Use ISO 8601 datetimes with an explicit offset, e.g. `2026-08-16T15:00:00-07:00`. The offset must contain a colon (`+08:00`); `+0800` is rejected by the date-time format check.\n- Prefer `batch_add_tasks` \u002F `batch_update_tasks` over repeated single calls.\n\n## Typical flows\n\n- **Today overview**: \"What's on my plate today?\" → `list_undone_tasks_by_time_query` (today), grouped by list and priority.\n- **Plan breakdown**: \"Split this week's exam prep into daily tasks\" → confirm list and daily schedule first, then `batch_add_tasks`.\n- **Evening review**: \"What did I finish today? Check in my habits.\" → `list_completed_tasks_by_date` + `get_habit_checkins`, summarize, then `upsert_habit_checkins`.\n- **Focus stats**: \"How much did I focus this month?\" → `get_focuses_by_time` and summarize the trend.\n\n## Troubleshooting\n\n- Task not found: ask for the list name, date or a keyword, or list candidates with `search_task` and let the user pick.\n- Create\u002Fupdate failures: check parameters against the conventions above, split the request into smaller steps and retry.\n- This MCP covers only basic operations for tasks, lists, habits, focus records and countdowns. Advanced features such as calendar views and smart lists are out of scope — do not promise them.\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,48,79,86,109,115,207,213,599,605,750,756,840,846],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"ticktick-task-management",[45],{"type":46,"value":47},"text","TickTick task management",{"type":40,"tag":49,"props":50,"children":51},"p",{},[52,54,61,63,69,71,77],{"type":46,"value":53},"Manage the user's tasks, lists, habits, focus records and countdowns through the official TickTick MCP server (",{"type":40,"tag":55,"props":56,"children":58},"code",{"className":57},[],[59],{"type":46,"value":60},"https:\u002F\u002Fmcp.ticktick.com",{"type":46,"value":62},", Streamable HTTP). This Skill is for ",{"type":40,"tag":64,"props":65,"children":66},"strong",{},[67],{"type":46,"value":68},"international TickTick (ticktick.com) accounts only",{"type":46,"value":70},"; for the China version (滴答清单 \u002F dida365.com) use the ",{"type":40,"tag":55,"props":72,"children":74},{"className":73},[],[75],{"type":46,"value":76},"dida365",{"type":46,"value":78}," plugin instead.",{"type":40,"tag":80,"props":81,"children":83},"h2",{"id":82},"before-you-start",[84],{"type":46,"value":85},"Before you start",{"type":40,"tag":87,"props":88,"children":89},"ul",{},[90,96],{"type":40,"tag":91,"props":92,"children":93},"li",{},[94],{"type":46,"value":95},"The user must have completed authorization (OAuth or API Token). If any tool call returns an authentication error, tell the user: TickTick web app → avatar → Settings → Account → API Token, or redo the OAuth flow.",{"type":40,"tag":91,"props":97,"children":98},{},[99,101,107],{"type":46,"value":100},"On first use, call ",{"type":40,"tag":55,"props":102,"children":104},{"className":103},[],[105],{"type":46,"value":106},"list_projects",{"type":46,"value":108}," to learn the user's list structure before operating on tasks.",{"type":40,"tag":80,"props":110,"children":112},{"id":111},"operating-rules",[113],{"type":46,"value":114},"Operating rules",{"type":40,"tag":116,"props":117,"children":118},"ol",{},[119,145,187,197],{"type":40,"tag":91,"props":120,"children":121},{},[122,127,129,135,137,143],{"type":40,"tag":64,"props":123,"children":124},{},[125],{"type":46,"value":126},"Look before you change.",{"type":46,"value":128}," Before updating, completing, moving or deleting a task, locate it with ",{"type":40,"tag":55,"props":130,"children":132},{"className":131},[],[133],{"type":46,"value":134},"search_task",{"type":46,"value":136}," or ",{"type":40,"tag":55,"props":138,"children":140},{"className":139},[],[141],{"type":46,"value":142},"filter_tasks",{"type":46,"value":144},", show the user exactly what you are about to do, then act.",{"type":40,"tag":91,"props":146,"children":147},{},[148,153,155,161,163,169,171,177,179,185],{"type":40,"tag":64,"props":149,"children":150},{},[151],{"type":46,"value":152},"Deletion is irreversible.",{"type":46,"value":154}," ",{"type":40,"tag":55,"props":156,"children":158},{"className":157},[],[159],{"type":46,"value":160},"delete_task",{"type":46,"value":162}," moves a task to the trash, ",{"type":40,"tag":55,"props":164,"children":166},{"className":165},[],[167],{"type":46,"value":168},"delete_project_group",{"type":46,"value":170}," dissolves every list inside the folder, ",{"type":40,"tag":55,"props":172,"children":174},{"className":173},[],[175],{"type":46,"value":176},"delete_comment",{"type":46,"value":178}," removes a comment permanently, and ",{"type":40,"tag":55,"props":180,"children":182},{"className":181},[],[183],{"type":46,"value":184},"delete_focus",{"type":46,"value":186}," removes a focus record permanently — always get explicit user confirmation before any of them.",{"type":40,"tag":91,"props":188,"children":189},{},[190,195],{"type":40,"tag":64,"props":191,"children":192},{},[193],{"type":46,"value":194},"Be specific.",{"type":46,"value":196}," When a request is ambiguous (no list name, date or priority), ask before creating or modifying anything. Do not guess.",{"type":40,"tag":91,"props":198,"children":199},{},[200,205],{"type":40,"tag":64,"props":201,"children":202},{},[203],{"type":46,"value":204},"Split complex requests.",{"type":46,"value":206}," \"Review last week and reschedule this week\" should run as: query → summarize to the user → confirm → batch operation.",{"type":40,"tag":80,"props":208,"children":210},{"id":209},"tool-map",[211],{"type":46,"value":212},"Tool map",{"type":40,"tag":87,"props":214,"children":215},{},[216,271,357,439,488,510,555,584],{"type":40,"tag":91,"props":217,"children":218},{},[219,224,226,231,233,239,241,247,249,255,257,263,264,269],{"type":40,"tag":64,"props":220,"children":221},{},[222],{"type":46,"value":223},"Query",{"type":46,"value":225},": ",{"type":40,"tag":55,"props":227,"children":229},{"className":228},[],[230],{"type":46,"value":134},{"type":46,"value":232}," (keywords), ",{"type":40,"tag":55,"props":234,"children":236},{"className":235},[],[237],{"type":46,"value":238},"get_task_by_id",{"type":46,"value":240},", ",{"type":40,"tag":55,"props":242,"children":244},{"className":243},[],[245],{"type":46,"value":246},"list_undone_tasks_by_time_query",{"type":46,"value":248}," (today \u002F tomorrow \u002F last7day \u002F next7day, etc.), ",{"type":40,"tag":55,"props":250,"children":252},{"className":251},[],[253],{"type":46,"value":254},"list_undone_tasks_by_date",{"type":46,"value":256}," (max 14-day span), ",{"type":40,"tag":55,"props":258,"children":260},{"className":259},[],[261],{"type":46,"value":262},"list_completed_tasks_by_date",{"type":46,"value":240},{"type":40,"tag":55,"props":265,"children":267},{"className":266},[],[268],{"type":46,"value":142},{"type":46,"value":270}," (multi-condition)",{"type":40,"tag":91,"props":272,"children":273},{},[274,279,280,285,286,292,293,299,300,306,308,314,316,322,323,329,331,337,338,344,345,351,352],{"type":40,"tag":64,"props":275,"children":276},{},[277],{"type":46,"value":278},"Lists",{"type":46,"value":225},{"type":40,"tag":55,"props":281,"children":283},{"className":282},[],[284],{"type":46,"value":106},{"type":46,"value":240},{"type":40,"tag":55,"props":287,"children":289},{"className":288},[],[290],{"type":46,"value":291},"create_project",{"type":46,"value":240},{"type":40,"tag":55,"props":294,"children":296},{"className":295},[],[297],{"type":46,"value":298},"update_project",{"type":46,"value":240},{"type":40,"tag":55,"props":301,"children":303},{"className":302},[],[304],{"type":46,"value":305},"get_project_with_undone_tasks",{"type":46,"value":307},"; columns via ",{"type":40,"tag":55,"props":309,"children":311},{"className":310},[],[312],{"type":46,"value":313},"list_columns",{"type":46,"value":315}," \u002F ",{"type":40,"tag":55,"props":317,"children":319},{"className":318},[],[320],{"type":46,"value":321},"create_column",{"type":46,"value":315},{"type":40,"tag":55,"props":324,"children":326},{"className":325},[],[327],{"type":46,"value":328},"update_column",{"type":46,"value":330},"; folders via ",{"type":40,"tag":55,"props":332,"children":334},{"className":333},[],[335],{"type":46,"value":336},"list_project_groups",{"type":46,"value":315},{"type":40,"tag":55,"props":339,"children":341},{"className":340},[],[342],{"type":46,"value":343},"create_project_group",{"type":46,"value":315},{"type":40,"tag":55,"props":346,"children":348},{"className":347},[],[349],{"type":46,"value":350},"update_project_group",{"type":46,"value":315},{"type":40,"tag":55,"props":353,"children":355},{"className":354},[],[356],{"type":46,"value":168},{"type":40,"tag":91,"props":358,"children":359},{},[360,365,366,372,373,379,380,386,387,393,395,401,402,408,409,415,416,421,423,429,431,437],{"type":40,"tag":64,"props":361,"children":362},{},[363],{"type":46,"value":364},"Tasks",{"type":46,"value":225},{"type":40,"tag":55,"props":367,"children":369},{"className":368},[],[370],{"type":46,"value":371},"create_task",{"type":46,"value":240},{"type":40,"tag":55,"props":374,"children":376},{"className":375},[],[377],{"type":46,"value":378},"batch_add_tasks",{"type":46,"value":240},{"type":40,"tag":55,"props":381,"children":383},{"className":382},[],[384],{"type":46,"value":385},"complete_task",{"type":46,"value":240},{"type":40,"tag":55,"props":388,"children":390},{"className":389},[],[391],{"type":46,"value":392},"complete_tasks_in_project",{"type":46,"value":394}," (max 20 per call), ",{"type":40,"tag":55,"props":396,"children":398},{"className":397},[],[399],{"type":46,"value":400},"update_task",{"type":46,"value":240},{"type":40,"tag":55,"props":403,"children":405},{"className":404},[],[406],{"type":46,"value":407},"move_task",{"type":46,"value":240},{"type":40,"tag":55,"props":410,"children":412},{"className":411},[],[413],{"type":46,"value":414},"batch_update_tasks",{"type":46,"value":240},{"type":40,"tag":55,"props":417,"children":419},{"className":418},[],[420],{"type":46,"value":160},{"type":46,"value":422}," (requires both ",{"type":40,"tag":55,"props":424,"children":426},{"className":425},[],[427],{"type":46,"value":428},"task_id",{"type":46,"value":430}," and ",{"type":40,"tag":55,"props":432,"children":434},{"className":433},[],[435],{"type":46,"value":436},"project_id",{"type":46,"value":438},")",{"type":40,"tag":91,"props":440,"children":441},{},[442,447,448,454,455,461,462,467,468,474,475,481,482],{"type":40,"tag":64,"props":443,"children":444},{},[445],{"type":46,"value":446},"Comments & assignment",{"type":46,"value":225},{"type":40,"tag":55,"props":449,"children":451},{"className":450},[],[452],{"type":46,"value":453},"get_comment",{"type":46,"value":240},{"type":40,"tag":55,"props":456,"children":458},{"className":457},[],[459],{"type":46,"value":460},"add_comment",{"type":46,"value":240},{"type":40,"tag":55,"props":463,"children":465},{"className":464},[],[466],{"type":46,"value":176},{"type":46,"value":240},{"type":40,"tag":55,"props":469,"children":471},{"className":470},[],[472],{"type":46,"value":473},"assign_task",{"type":46,"value":240},{"type":40,"tag":55,"props":476,"children":478},{"className":477},[],[479],{"type":46,"value":480},"unassign_task",{"type":46,"value":240},{"type":40,"tag":55,"props":483,"children":485},{"className":484},[],[486],{"type":46,"value":487},"project_member",{"type":40,"tag":91,"props":489,"children":490},{},[491,496,497,503,504],{"type":40,"tag":64,"props":492,"children":493},{},[494],{"type":46,"value":495},"Tags",{"type":46,"value":225},{"type":40,"tag":55,"props":498,"children":500},{"className":499},[],[501],{"type":46,"value":502},"list_tags",{"type":46,"value":240},{"type":40,"tag":55,"props":505,"children":507},{"className":506},[],[508],{"type":46,"value":509},"create_tag",{"type":40,"tag":91,"props":511,"children":512},{},[513,518,519,525,526,532,533,539,540,546,547,553],{"type":40,"tag":64,"props":514,"children":515},{},[516],{"type":46,"value":517},"Habits",{"type":46,"value":225},{"type":40,"tag":55,"props":520,"children":522},{"className":521},[],[523],{"type":46,"value":524},"list_habits",{"type":46,"value":240},{"type":40,"tag":55,"props":527,"children":529},{"className":528},[],[530],{"type":46,"value":531},"create_habit",{"type":46,"value":240},{"type":40,"tag":55,"props":534,"children":536},{"className":535},[],[537],{"type":46,"value":538},"update_habit",{"type":46,"value":240},{"type":40,"tag":55,"props":541,"children":543},{"className":542},[],[544],{"type":46,"value":545},"get_habit_checkins",{"type":46,"value":240},{"type":40,"tag":55,"props":548,"children":550},{"className":549},[],[551],{"type":46,"value":552},"upsert_habit_checkins",{"type":46,"value":554}," (check-ins limited to the last 90 days)",{"type":40,"tag":91,"props":556,"children":557},{},[558,563,564,570,572,578,579],{"type":40,"tag":64,"props":559,"children":560},{},[561],{"type":46,"value":562},"Focus records",{"type":46,"value":225},{"type":40,"tag":55,"props":565,"children":567},{"className":566},[],[568],{"type":46,"value":569},"get_focuses_by_time",{"type":46,"value":571}," (max one month per call), ",{"type":40,"tag":55,"props":573,"children":575},{"className":574},[],[576],{"type":46,"value":577},"create_focus",{"type":46,"value":240},{"type":40,"tag":55,"props":580,"children":582},{"className":581},[],[583],{"type":46,"value":184},{"type":40,"tag":91,"props":585,"children":586},{},[587,592,593],{"type":40,"tag":64,"props":588,"children":589},{},[590],{"type":46,"value":591},"Countdowns",{"type":46,"value":225},{"type":40,"tag":55,"props":594,"children":596},{"className":595},[],[597],{"type":46,"value":598},"list_countdowns",{"type":40,"tag":80,"props":600,"children":602},{"id":601},"parameter-conventions",[603],{"type":46,"value":604},"Parameter conventions",{"type":40,"tag":87,"props":606,"children":607},{},[608,664,669,703,732],{"type":40,"tag":91,"props":609,"children":610},{},[611,616,618,624,626],{"type":40,"tag":64,"props":612,"children":613},{},[614],{"type":46,"value":615},"Object parameters must be real JSON objects, never stringified JSON.",{"type":46,"value":617}," Testing shows some models (e.g. MiniMax-M3) emit ",{"type":40,"tag":55,"props":619,"children":621},{"className":620},[],[622],{"type":46,"value":623},"task",{"type":46,"value":625}," as a string and quote integers, corrupting every inner field type:\n",{"type":40,"tag":87,"props":627,"children":628},{},[629,640,651],{"type":40,"tag":91,"props":630,"children":631},{},[632,634],{"type":46,"value":633},"❌ Wrong: ",{"type":40,"tag":55,"props":635,"children":637},{"className":636},[],[638],{"type":46,"value":639},"\"task\": \"{\\\"title\\\": \\\"x\\\", \\\"priority\\\": 5}\"",{"type":40,"tag":91,"props":641,"children":642},{},[643,645],{"type":46,"value":644},"✅ Correct: ",{"type":40,"tag":55,"props":646,"children":648},{"className":647},[],[649],{"type":46,"value":650},"\"task\": {\"title\": \"x\", \"priority\": 5}",{"type":40,"tag":91,"props":652,"children":653},{},[654,656,662],{"type":46,"value":655},"If the server's ",{"type":40,"tag":55,"props":657,"children":659},{"className":658},[],[660],{"type":46,"value":661},"Received arguments",{"type":46,"value":663}," echo shows quoted values, the call was stringified — immediately resend in object form.",{"type":40,"tag":91,"props":665,"children":666},{},[667],{"type":46,"value":668},"Priority: 0 = none, 1 = low, 3 = medium, 5 = high. \"High priority\" means 5.",{"type":40,"tag":91,"props":670,"children":671},{},[672,685,687,693,695,701],{"type":40,"tag":64,"props":673,"children":674},{},[675,677,683],{"type":46,"value":676},"Pass ",{"type":40,"tag":55,"props":678,"children":680},{"className":679},[],[681],{"type":46,"value":682},"priority",{"type":46,"value":684}," as a JSON number",{"type":46,"value":686}," (",{"type":40,"tag":55,"props":688,"children":690},{"className":689},[],[691],{"type":46,"value":692},"\"priority\": 5",{"type":46,"value":694},", never quoted). If the server replies ",{"type":40,"tag":55,"props":696,"children":698},{"className":697},[],[699],{"type":46,"value":700},"task.priority: must be integer",{"type":46,"value":702},", the value was stringified somewhere in the call chain: confirm you sent a number and retry once; if it still fails, the client's serialization layer is at fault — create the task without a priority and tell the user to set the flag manually in the TickTick app.",{"type":40,"tag":91,"props":704,"children":705},{},[706,708,714,716,722,724,730],{"type":46,"value":707},"Use ISO 8601 datetimes with an explicit offset, e.g. ",{"type":40,"tag":55,"props":709,"children":711},{"className":710},[],[712],{"type":46,"value":713},"2026-08-16T15:00:00-07:00",{"type":46,"value":715},". The offset must contain a colon (",{"type":40,"tag":55,"props":717,"children":719},{"className":718},[],[720],{"type":46,"value":721},"+08:00",{"type":46,"value":723},"); ",{"type":40,"tag":55,"props":725,"children":727},{"className":726},[],[728],{"type":46,"value":729},"+0800",{"type":46,"value":731}," is rejected by the date-time format check.",{"type":40,"tag":91,"props":733,"children":734},{},[735,737,742,743,748],{"type":46,"value":736},"Prefer ",{"type":40,"tag":55,"props":738,"children":740},{"className":739},[],[741],{"type":46,"value":378},{"type":46,"value":315},{"type":40,"tag":55,"props":744,"children":746},{"className":745},[],[747],{"type":46,"value":414},{"type":46,"value":749}," over repeated single calls.",{"type":40,"tag":80,"props":751,"children":753},{"id":752},"typical-flows",[754],{"type":46,"value":755},"Typical flows",{"type":40,"tag":87,"props":757,"children":758},{},[759,776,793,823],{"type":40,"tag":91,"props":760,"children":761},{},[762,767,769,774],{"type":40,"tag":64,"props":763,"children":764},{},[765],{"type":46,"value":766},"Today overview",{"type":46,"value":768},": \"What's on my plate today?\" → ",{"type":40,"tag":55,"props":770,"children":772},{"className":771},[],[773],{"type":46,"value":246},{"type":46,"value":775}," (today), grouped by list and priority.",{"type":40,"tag":91,"props":777,"children":778},{},[779,784,786,791],{"type":40,"tag":64,"props":780,"children":781},{},[782],{"type":46,"value":783},"Plan breakdown",{"type":46,"value":785},": \"Split this week's exam prep into daily tasks\" → confirm list and daily schedule first, then ",{"type":40,"tag":55,"props":787,"children":789},{"className":788},[],[790],{"type":46,"value":378},{"type":46,"value":792},".",{"type":40,"tag":91,"props":794,"children":795},{},[796,801,803,808,810,815,817,822],{"type":40,"tag":64,"props":797,"children":798},{},[799],{"type":46,"value":800},"Evening review",{"type":46,"value":802},": \"What did I finish today? Check in my habits.\" → ",{"type":40,"tag":55,"props":804,"children":806},{"className":805},[],[807],{"type":46,"value":262},{"type":46,"value":809}," + ",{"type":40,"tag":55,"props":811,"children":813},{"className":812},[],[814],{"type":46,"value":545},{"type":46,"value":816},", summarize, then ",{"type":40,"tag":55,"props":818,"children":820},{"className":819},[],[821],{"type":46,"value":552},{"type":46,"value":792},{"type":40,"tag":91,"props":824,"children":825},{},[826,831,833,838],{"type":40,"tag":64,"props":827,"children":828},{},[829],{"type":46,"value":830},"Focus stats",{"type":46,"value":832},": \"How much did I focus this month?\" → ",{"type":40,"tag":55,"props":834,"children":836},{"className":835},[],[837],{"type":46,"value":569},{"type":46,"value":839}," and summarize the trend.",{"type":40,"tag":80,"props":841,"children":843},{"id":842},"troubleshooting",[844],{"type":46,"value":845},"Troubleshooting",{"type":40,"tag":87,"props":847,"children":848},{},[849,861,866],{"type":40,"tag":91,"props":850,"children":851},{},[852,854,859],{"type":46,"value":853},"Task not found: ask for the list name, date or a keyword, or list candidates with ",{"type":40,"tag":55,"props":855,"children":857},{"className":856},[],[858],{"type":46,"value":134},{"type":46,"value":860}," and let the user pick.",{"type":40,"tag":91,"props":862,"children":863},{},[864],{"type":46,"value":865},"Create\u002Fupdate failures: check parameters against the conventions above, split the request into smaller steps and retry.",{"type":40,"tag":91,"props":867,"children":868},{},[869],{"type":46,"value":870},"This MCP covers only basic operations for tasks, lists, habits, focus records and countdowns. Advanced features such as calendar views and smart lists are out of scope — do not promise them.",{"items":872,"total":957},[873,885,894,910,921,937,951],{"slug":874,"name":874,"fn":875,"description":876,"org":877,"tags":878,"stars":23,"repoUrl":24,"updatedAt":884},"article2tasks","convert articles into Dida365 tasks","将技术周报（批量）或单篇文章整理为滴答清单待办事项，自动分类到已有清单并打标签，全程通过 MCP 写入，跨平台无需任何本地脚本。当用户提供周报内容、文章链接，或提及「周报」「文章汇总」「添加到滴答」时，使用此技能。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[879,882,883],{"name":880,"slug":881,"type":16},"Content Creation","content-creation",{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},"2026-08-18T03:49:38.751656",{"slug":76,"name":76,"fn":886,"description":887,"org":888,"tags":889,"stars":23,"repoUrl":24,"updatedAt":893},"manage Dida365 tasks and habits","Manage 滴答清单 (Dida365 China) tasks, lists, habits, focus records and countdowns through the official Dida365 MCP server at mcp.dida365.com. Use when the user asks to check, plan, create, update, complete or review tasks and habits on dida365.com, or asks about focus history and countdowns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[890,891,892],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},"2026-08-18T03:49:37.126385",{"slug":895,"name":895,"fn":896,"description":897,"org":898,"tags":899,"stars":23,"repoUrl":24,"updatedAt":909},"github-explore","explore and audit GitHub repositories","Use when the user wants to search\u002Fdiscover\u002Fsummarize\u002Faudit GitHub (find repos about X, explore a topic's landscape, what's trending, repo overview, similar projects, code search, issue\u002FPR search, org audit) or run gh CLI operations. Prefer scripts\u002F for discovery; raw gh commands for management ops.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[900,903,906],{"name":901,"slug":902,"type":16},"Code Analysis","code-analysis",{"name":904,"slug":905,"type":16},"GitHub","github",{"name":907,"slug":908,"type":16},"Research","research","2026-08-18T03:49:39.302333",{"slug":911,"name":911,"fn":912,"description":913,"org":914,"tags":915,"stars":23,"repoUrl":24,"updatedAt":920},"mcp-server-patterns","design and debug MCP servers","Reference patterns for designing, evaluating, integrating, and debugging MCP servers. Use this Skill whenever the task involves deciding whether to add an MCP server, reviewing a server design, integrating one into a workflow, or diagnosing why one fails.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[916,919],{"name":917,"slug":918,"type":16},"Architecture","architecture",{"name":14,"slug":15,"type":16},"2026-08-18T03:49:42.711595",{"slug":922,"name":922,"fn":923,"description":924,"org":925,"tags":926,"stars":23,"repoUrl":24,"updatedAt":936},"minimax-code-trajectory","visualize MiniMax code session trajectories","Inspect or visualize privacy-aware timelines for local MiniMax Code sessions. Use when the user asks to show, draw, open, review, or diagnose a task trajectory, summarize tool or token activity, inspect compaction or failure events, or compare recent session metadata without opening raw ledger files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[927,930,933],{"name":928,"slug":929,"type":16},"Debugging","debugging",{"name":931,"slug":932,"type":16},"Observability","observability",{"name":934,"slug":935,"type":16},"Tracing","tracing","2026-08-18T03:49:38.218712",{"slug":938,"name":938,"fn":939,"description":940,"org":941,"tags":942,"stars":23,"repoUrl":24,"updatedAt":950},"search-first","enforce search-before-edit code workflows","Enforce a search-before-edit workflow for code changes. Use this Skill whenever a task involves changing code, tracing behavior, or understanding an unfamiliar area, so the agent searches and reads the relevant files before proposing or implementing edits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[943,946,947],{"name":944,"slug":945,"type":16},"Best Practices","best-practices",{"name":901,"slug":902,"type":16},{"name":948,"slug":949,"type":16},"Engineering","engineering","2026-08-18T03:49:37.673989",{"slug":4,"name":4,"fn":5,"description":6,"org":952,"tags":953,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[954,955,956],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},8,{"items":959,"total":1160},[960,984,1000,1019,1034,1054,1072,1090,1105,1121,1140,1150],{"slug":961,"name":961,"fn":962,"description":963,"org":964,"tags":965,"stars":981,"repoUrl":982,"updatedAt":983},"android-native-dev","develop Android native applications","Android native application development and UI design guide. Covers Material Design 3, Kotlin\u002FCompose development, project configuration, accessibility, and build troubleshooting. Read this before Android native application development.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[966,969,972,975,978],{"name":967,"slug":968,"type":16},"Accessibility","accessibility",{"name":970,"slug":971,"type":16},"Android","android",{"name":973,"slug":974,"type":16},"Kotlin","kotlin",{"name":976,"slug":977,"type":16},"Mobile","mobile",{"name":979,"slug":980,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":985,"name":985,"fn":986,"description":987,"org":988,"tags":989,"stars":981,"repoUrl":982,"updatedAt":999},"buddy-sings","generate singing performances for AI companions","Use when user wants their Claude Code pet (\u002Fbuddy) to sing a song. Triggers on any request that combines the concept of their Claude Code buddy, pet, or companion with singing or music. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[990,993,996],{"name":991,"slug":992,"type":16},"Agents","agents",{"name":994,"slug":995,"type":16},"Audio","audio",{"name":997,"slug":998,"type":16},"Creative","creative","2026-07-13T06:16:35.130644",{"slug":1001,"name":1001,"fn":1002,"description":1003,"org":1004,"tags":1005,"stars":981,"repoUrl":982,"updatedAt":1018},"color-font-skill","select color palettes and font pairings","Choose presentation-ready color palettes and font pairings for PPT\u002Fdesign tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: 配色, 色板, 字体, color palette, font, PPT配色, 字体搭配.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1006,1009,1012,1015],{"name":1007,"slug":1008,"type":16},"Design","design",{"name":1010,"slug":1011,"type":16},"Presentations","presentations",{"name":1013,"slug":1014,"type":16},"Themes","themes",{"name":1016,"slug":1017,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":1020,"name":1020,"fn":1021,"description":1022,"org":1023,"tags":1024,"stars":981,"repoUrl":982,"updatedAt":1033},"design-style-skill","select visual design systems for presentations","Select a consistent visual design system for PPT slides using radius\u002Fspacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp\u002FSoft\u002FRounded\u002FPill recipes, component mappings, typography\u002Fspacing rules, and mixing guidance. Triggers: 风格, style, radius, spacing, 圆角, 间距, PPT风格, 视觉风格, design style, component style.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1025,1026,1029,1032],{"name":1007,"slug":1008,"type":16},{"name":1027,"slug":1028,"type":16},"Design System","design-system",{"name":1030,"slug":1031,"type":16},"PowerPoint","powerpoint",{"name":1010,"slug":1011,"type":16},"2026-07-13T06:17:10.398389",{"slug":1035,"name":1035,"fn":1036,"description":1037,"org":1038,"tags":1039,"stars":981,"repoUrl":982,"updatedAt":1053},"flutter-dev","build cross-platform apps with Flutter","Flutter cross-platform development guide covering widget patterns, Riverpod\u002FBloc state management, GoRouter navigation, performance optimization, and platform-specific implementations. Includes const optimization, responsive layouts, testing strategies, and DevTools profiling.\nUse when: building Flutter apps, implementing state management (Riverpod\u002FBloc), setting up GoRouter navigation, creating custom widgets, optimizing performance, writing widget tests, cross-platform development.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1040,1043,1046,1047,1050],{"name":1041,"slug":1042,"type":16},"Dart","dart",{"name":1044,"slug":1045,"type":16},"Flutter","flutter",{"name":976,"slug":977,"type":16},{"name":1048,"slug":1049,"type":16},"Performance","performance",{"name":1051,"slug":1052,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":1055,"name":1055,"fn":1056,"description":1057,"org":1058,"tags":1059,"stars":981,"repoUrl":982,"updatedAt":1071},"frontend-dev","build visually striking frontend web pages","Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with real media, advanced motion, and compelling copy.\nUse when: building landing pages, marketing sites, product pages, dashboards,\ngenerating media assets (image\u002Fvideo\u002Faudio\u002Fmusic), writing conversion copy,\ncreating generative art, or implementing cinematic scroll animations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1060,1063,1064,1065,1068],{"name":1061,"slug":1062,"type":16},"Animation","animation",{"name":997,"slug":998,"type":16},{"name":1007,"slug":1008,"type":16},{"name":1066,"slug":1067,"type":16},"Frontend","frontend",{"name":1069,"slug":1070,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":1073,"name":1073,"fn":1074,"description":1075,"org":1076,"tags":1077,"stars":981,"repoUrl":982,"updatedAt":1089},"fullstack-dev","build full-stack web applications","Full-stack backend architecture and frontend-backend integration guide.\nTRIGGER when: building a full-stack app, creating REST API with frontend, scaffolding backend service,\nbuilding todo app, building CRUD app, building real-time app, building chat app,\nExpress + React, Next.js API, Node.js backend, Python backend, Go backend,\ndesigning service layers, implementing error handling, managing config\u002Fauth,\nsetting up API clients, implementing auth flows, handling file uploads,\nadding real-time features (SSE\u002FWebSocket), hardening for production.\nDO NOT TRIGGER when: pure frontend UI work, pure CSS\u002Fstyling, database schema only.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1078,1081,1082,1085,1088],{"name":1079,"slug":1080,"type":16},"Backend","backend",{"name":1066,"slug":1067,"type":16},{"name":1083,"slug":1084,"type":16},"Full-stack","full-stack",{"name":1086,"slug":1087,"type":16},"REST API","rest-api",{"name":1069,"slug":1070,"type":16},"2026-07-13T06:16:43.219005",{"slug":1091,"name":1091,"fn":1092,"description":1093,"org":1094,"tags":1095,"stars":981,"repoUrl":982,"updatedAt":1104},"gif-sticker-maker","create animated GIF stickers from photos","Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert photos to Funko Pop \u002F Pop Mart blind box style animations.\nTriggers: sticker, GIF, cartoon, emoji, expression pack, avatar animation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1096,1097,1098,1101],{"name":1061,"slug":1062,"type":16},{"name":997,"slug":998,"type":16},{"name":1099,"slug":1100,"type":16},"Images","images",{"name":1102,"slug":1103,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":981,"repoUrl":982,"updatedAt":1120},"ios-application-dev","develop iOS applications with SwiftUI and UIKit","iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI components, and SwiftUI design guidelines. For detailed references on specific topics, see the reference files.\nUse when: developing iOS apps, implementing UI, reviewing iOS code, working with UIKit\u002FSnapKit\u002FSwiftUI layouts, building iPhone interfaces, Swift mobile development, Apple HIG compliance, iOS accessibility implementation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1111,1112,1115,1116,1119],{"name":967,"slug":968,"type":16},{"name":1113,"slug":1114,"type":16},"iOS","ios",{"name":976,"slug":977,"type":16},{"name":1117,"slug":1118,"type":16},"SwiftUI","swiftui",{"name":979,"slug":980,"type":16},"2026-07-13T06:16:55.686092",{"slug":1122,"name":1122,"fn":1123,"description":1124,"org":1125,"tags":1126,"stars":981,"repoUrl":982,"updatedAt":1139},"minimax-docx","create and edit DOCX documents","Professional DOCX document creation, editing, and formatting using OpenXML SDK (.NET). Three pipelines: (A) create new documents from scratch, (B) fill\u002Fedit content in existing documents, (C) apply template formatting with XSD validation gate-check. MUST use this skill whenever the user wants to produce, modify, or format a Word document — including when they say \"write a report\", \"draft a proposal\", \"make a contract\", \"fill in this form\", \"reformat to match this template\", or any task whose final output is a .docx file. Even if the user doesn't mention \"docx\" explicitly, if the task implies a printable\u002Fformal document, use this skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1127,1130,1133,1136],{"name":1128,"slug":1129,"type":16},"Documents","documents",{"name":1131,"slug":1132,"type":16},"DOCX","docx",{"name":1134,"slug":1135,"type":16},"Office","office",{"name":1137,"slug":1138,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":1141,"name":1141,"fn":1142,"description":1143,"org":1144,"tags":1145,"stars":981,"repoUrl":982,"updatedAt":1149},"minimax-music-gen","generate music and audio tracks","Use when user wants to generate music, songs, or audio tracks. Triggers on any request involving music creation, song writing, lyrics generation, audio production, or covers. Also triggers when user provides lyrics and wants them turned into a song, or describes a mood\u002Fscene and wants background music. Supports multilingual triggers — match equivalent phrases in any language. Do NOT use for music playback of existing files, music theory questions, or music recommendation without generation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1146,1147,1148],{"name":994,"slug":995,"type":16},{"name":997,"slug":998,"type":16},{"name":1102,"slug":1103,"type":16},"2026-07-13T06:16:50.381758",{"slug":1151,"name":1151,"fn":1152,"description":1153,"org":1154,"tags":1155,"stars":981,"repoUrl":982,"updatedAt":1159},"minimax-music-playlist","generate personalized music playlists","Generate personalized music playlists by analyzing the user's music taste and generation feedback history. Triggers on any request involving playlist generation, music taste profiling, or personalized music recommendations. Supports multilingual triggers — match equivalent phrases in any language.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1156,1157,1158],{"name":994,"slug":995,"type":16},{"name":997,"slug":998,"type":16},{"name":1102,"slug":1103,"type":16},"2026-07-13T06:16:57.002997",56]