[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-dida365":3,"mdc--ifryc1-key":34,"related-org-minimax-dida365":862,"related-repo-minimax-dida365":1065},{"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},"dida365","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},"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:37.126385",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\u002Fdida365\u002Fskills\u002Fdida365","---\nname: dida365\ndescription: 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.\n---\n\n# 滴答清单任务管理\n\n通过滴答清单官方 MCP 服务器（`https:\u002F\u002Fmcp.dida365.com`，Streamable HTTP）管理用户的任务、清单、习惯、专注记录和纪念日。本 Skill 只适用于**中国版滴答清单（dida365.com）账号**；国际版 TickTick 账号请使用 `ticktick` 插件。\n\n## 使用前确认\n\n- 用户必须已完成授权（OAuth 或 API 口令）。如果任何工具调用返回认证错误，提示用户：网页版滴答清单 → 头像 → 设置 → 账户与安全 → API 口令，或重新走 OAuth 授权。\n- 首次协助时，可以先调用 `list_projects` 了解用户的清单结构，再执行任务操作。\n\n## 操作守则\n\n1. **先查后改**。更新、完成、移动、删除任务前，先通过 `search_task` 或 `filter_tasks` 确认目标任务，把将要执行的操作告诉用户，再执行。\n2. **删除不可逆**。`delete_task` 会把任务移入垃圾箱，`delete_project_group` 会解散文件夹下所有清单，`delete_comment` 和 `delete_focus` 会永久删除评论和专注记录 —— 执行这些操作前必须得到用户的明确确认。\n3. **描述要明确**。用户表述模糊时（没说是哪个清单、哪天、什么优先级），先问清楚再创建或修改，不要猜。\n4. **复杂请求拆步执行**。例如「把上周任务复盘并重新安排这周」应拆成：查询 → 汇总给用户 → 确认后批量操作。\n\n## 工具速查\n\n- **查询**：`search_task`（关键词）、`get_task_by_id`、`list_undone_tasks_by_time_query`（today \u002F tomorrow \u002F last7day \u002F next7day 等）、`list_undone_tasks_by_date`（跨度最大 14 天）、`list_completed_tasks_by_date`、`filter_tasks`（多条件组合）\n- **清单**：`list_projects`、`create_project`、`update_project`、`get_project_with_undone_tasks`；分组用 `list_columns` \u002F `create_column` \u002F `update_column`；文件夹用 `list_project_groups` \u002F `create_project_group` \u002F `update_project_group` \u002F `delete_project_group`\n- **任务**：`create_task`、`batch_add_tasks`、`complete_task`、`complete_tasks_in_project`（每次最多 20 个）、`update_task`、`move_task`、`batch_update_tasks`、`delete_task`（需同时提供 `task_id` 和 `project_id`）\n- **评论与指派**：`get_comment`、`add_comment`、`delete_comment`、`assign_task`、`unassign_task`、`project_member`\n- **标签**：`list_tags`、`create_tag`\n- **习惯**：`list_habits`、`create_habit`、`update_habit`、`get_habit_checkins`、`upsert_habit_checkins`（打卡范围限最近 90 天）\n- **专注记录**：`get_focuses_by_time`（一次最多查一个月）、`create_focus`、`delete_focus`\n- **纪念日**：`list_countdowns`\n\n## 参数约定\n\n- **对象参数必须传真正的 JSON 对象，绝不能传字符串化的 JSON**。实测发现部分模型（如 MiniMax-M3）会把 `task` 写成字符串、把整数加引号，导致内部字段类型全部失真：\n  - ❌ 错误：`\"task\": \"{\\\"title\\\": \\\"x\\\", \\\"priority\\\": 5}\"`\n  - ✅ 正确：`\"task\": {\"title\": \"x\", \"priority\": 5}`\n  - 若服务端回显的 `Received arguments` 里参数值带引号，说明本次调用已被字符串化，立即改用对象形式重发。\n- 优先级：0 = 无，1 = 低，3 = 中，5 = 高。用户说「高优先级」时用 5。\n- **`priority` 必须以 JSON 数字类型传递**（`\"priority\": 5`，不要加引号）。若服务端报 `task.priority: must be integer`，说明值在链路上被字符串化：先确认自己传的是数字后原样重试；仍失败则说明客户端序列化层存在问题，改为不带优先级创建任务，并告知用户在滴答清单 App 里手动设置旗标。\n- 日期时间使用 ISO 8601 并带时区，例如 `2026-08-16T15:00:00+08:00`。注意偏移量必须带冒号（`+08:00`），`+0800` 会被 date-time 格式校验拒绝。\n- 批量操作建议优先用 `batch_add_tasks` \u002F `batch_update_tasks`，减少调用次数。\n\n## 典型场景\n\n- **今日概览**：「我今天有哪些任务？」→ `list_undone_tasks_by_time_query`（today），按清单和优先级整理输出。\n- **学习计划拆解**：「帮我把这周的高数复习拆成每天的任务」→ 先确认清单和每天的时间安排，再用 `batch_add_tasks` 批量创建。\n- **晚间复盘**：「看看我今天完成了什么，给习惯打卡」→ `list_completed_tasks_by_date` + `get_habit_checkins`，汇总后用 `upsert_habit_checkins` 补打卡。\n- **专注统计**：「我这个月专注了多久？」→ `get_focuses_by_time`，按月汇总趋势。\n\n## 失败排查\n\n- 找不到任务：让用户补充清单名、日期或关键词，或先 `search_task` 列出候选让用户指认。\n- 创建 \u002F 更新失败：检查参数是否符合上方约定，把复杂请求拆小后重试。\n- 该 MCP 仅支持任务、清单、习惯、专注、纪念日的基础操作；日历视图、智能清单等高级功能不在能力范围内，不要承诺。\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,47,78,84,107,112,204,209,594,599,742,747,832,837],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"滴答清单任务管理",[45],{"type":46,"value":43},"text",{"type":40,"tag":48,"props":49,"children":50},"p",{},[51,53,60,62,68,70,76],{"type":46,"value":52},"通过滴答清单官方 MCP 服务器（",{"type":40,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":46,"value":59},"https:\u002F\u002Fmcp.dida365.com",{"type":46,"value":61},"，Streamable HTTP）管理用户的任务、清单、习惯、专注记录和纪念日。本 Skill 只适用于",{"type":40,"tag":63,"props":64,"children":65},"strong",{},[66],{"type":46,"value":67},"中国版滴答清单（dida365.com）账号",{"type":46,"value":69},"；国际版 TickTick 账号请使用 ",{"type":40,"tag":54,"props":71,"children":73},{"className":72},[],[74],{"type":46,"value":75},"ticktick",{"type":46,"value":77}," 插件。",{"type":40,"tag":79,"props":80,"children":82},"h2",{"id":81},"使用前确认",[83],{"type":46,"value":81},{"type":40,"tag":85,"props":86,"children":87},"ul",{},[88,94],{"type":40,"tag":89,"props":90,"children":91},"li",{},[92],{"type":46,"value":93},"用户必须已完成授权（OAuth 或 API 口令）。如果任何工具调用返回认证错误，提示用户：网页版滴答清单 → 头像 → 设置 → 账户与安全 → API 口令，或重新走 OAuth 授权。",{"type":40,"tag":89,"props":95,"children":96},{},[97,99,105],{"type":46,"value":98},"首次协助时，可以先调用 ",{"type":40,"tag":54,"props":100,"children":102},{"className":101},[],[103],{"type":46,"value":104},"list_projects",{"type":46,"value":106}," 了解用户的清单结构，再执行任务操作。",{"type":40,"tag":79,"props":108,"children":110},{"id":109},"操作守则",[111],{"type":46,"value":109},{"type":40,"tag":113,"props":114,"children":115},"ol",{},[116,142,184,194],{"type":40,"tag":89,"props":117,"children":118},{},[119,124,126,132,134,140],{"type":40,"tag":63,"props":120,"children":121},{},[122],{"type":46,"value":123},"先查后改",{"type":46,"value":125},"。更新、完成、移动、删除任务前，先通过 ",{"type":40,"tag":54,"props":127,"children":129},{"className":128},[],[130],{"type":46,"value":131},"search_task",{"type":46,"value":133}," 或 ",{"type":40,"tag":54,"props":135,"children":137},{"className":136},[],[138],{"type":46,"value":139},"filter_tasks",{"type":46,"value":141}," 确认目标任务，把将要执行的操作告诉用户，再执行。",{"type":40,"tag":89,"props":143,"children":144},{},[145,150,152,158,160,166,168,174,176,182],{"type":40,"tag":63,"props":146,"children":147},{},[148],{"type":46,"value":149},"删除不可逆",{"type":46,"value":151},"。",{"type":40,"tag":54,"props":153,"children":155},{"className":154},[],[156],{"type":46,"value":157},"delete_task",{"type":46,"value":159}," 会把任务移入垃圾箱，",{"type":40,"tag":54,"props":161,"children":163},{"className":162},[],[164],{"type":46,"value":165},"delete_project_group",{"type":46,"value":167}," 会解散文件夹下所有清单，",{"type":40,"tag":54,"props":169,"children":171},{"className":170},[],[172],{"type":46,"value":173},"delete_comment",{"type":46,"value":175}," 和 ",{"type":40,"tag":54,"props":177,"children":179},{"className":178},[],[180],{"type":46,"value":181},"delete_focus",{"type":46,"value":183}," 会永久删除评论和专注记录 —— 执行这些操作前必须得到用户的明确确认。",{"type":40,"tag":89,"props":185,"children":186},{},[187,192],{"type":40,"tag":63,"props":188,"children":189},{},[190],{"type":46,"value":191},"描述要明确",{"type":46,"value":193},"。用户表述模糊时（没说是哪个清单、哪天、什么优先级），先问清楚再创建或修改，不要猜。",{"type":40,"tag":89,"props":195,"children":196},{},[197,202],{"type":40,"tag":63,"props":198,"children":199},{},[200],{"type":46,"value":201},"复杂请求拆步执行",{"type":46,"value":203},"。例如「把上周任务复盘并重新安排这周」应拆成：查询 → 汇总给用户 → 确认后批量操作。",{"type":40,"tag":79,"props":205,"children":207},{"id":206},"工具速查",[208],{"type":46,"value":206},{"type":40,"tag":85,"props":210,"children":211},{},[212,267,353,434,483,505,550,579],{"type":40,"tag":89,"props":213,"children":214},{},[215,220,222,227,229,235,237,243,245,251,253,259,260,265],{"type":40,"tag":63,"props":216,"children":217},{},[218],{"type":46,"value":219},"查询",{"type":46,"value":221},"：",{"type":40,"tag":54,"props":223,"children":225},{"className":224},[],[226],{"type":46,"value":131},{"type":46,"value":228},"（关键词）、",{"type":40,"tag":54,"props":230,"children":232},{"className":231},[],[233],{"type":46,"value":234},"get_task_by_id",{"type":46,"value":236},"、",{"type":40,"tag":54,"props":238,"children":240},{"className":239},[],[241],{"type":46,"value":242},"list_undone_tasks_by_time_query",{"type":46,"value":244},"（today \u002F tomorrow \u002F last7day \u002F next7day 等）、",{"type":40,"tag":54,"props":246,"children":248},{"className":247},[],[249],{"type":46,"value":250},"list_undone_tasks_by_date",{"type":46,"value":252},"（跨度最大 14 天）、",{"type":40,"tag":54,"props":254,"children":256},{"className":255},[],[257],{"type":46,"value":258},"list_completed_tasks_by_date",{"type":46,"value":236},{"type":40,"tag":54,"props":261,"children":263},{"className":262},[],[264],{"type":46,"value":139},{"type":46,"value":266},"（多条件组合）",{"type":40,"tag":89,"props":268,"children":269},{},[270,275,276,281,282,288,289,295,296,302,304,310,312,318,319,325,327,333,334,340,341,347,348],{"type":40,"tag":63,"props":271,"children":272},{},[273],{"type":46,"value":274},"清单",{"type":46,"value":221},{"type":40,"tag":54,"props":277,"children":279},{"className":278},[],[280],{"type":46,"value":104},{"type":46,"value":236},{"type":40,"tag":54,"props":283,"children":285},{"className":284},[],[286],{"type":46,"value":287},"create_project",{"type":46,"value":236},{"type":40,"tag":54,"props":290,"children":292},{"className":291},[],[293],{"type":46,"value":294},"update_project",{"type":46,"value":236},{"type":40,"tag":54,"props":297,"children":299},{"className":298},[],[300],{"type":46,"value":301},"get_project_with_undone_tasks",{"type":46,"value":303},"；分组用 ",{"type":40,"tag":54,"props":305,"children":307},{"className":306},[],[308],{"type":46,"value":309},"list_columns",{"type":46,"value":311}," \u002F ",{"type":40,"tag":54,"props":313,"children":315},{"className":314},[],[316],{"type":46,"value":317},"create_column",{"type":46,"value":311},{"type":40,"tag":54,"props":320,"children":322},{"className":321},[],[323],{"type":46,"value":324},"update_column",{"type":46,"value":326},"；文件夹用 ",{"type":40,"tag":54,"props":328,"children":330},{"className":329},[],[331],{"type":46,"value":332},"list_project_groups",{"type":46,"value":311},{"type":40,"tag":54,"props":335,"children":337},{"className":336},[],[338],{"type":46,"value":339},"create_project_group",{"type":46,"value":311},{"type":40,"tag":54,"props":342,"children":344},{"className":343},[],[345],{"type":46,"value":346},"update_project_group",{"type":46,"value":311},{"type":40,"tag":54,"props":349,"children":351},{"className":350},[],[352],{"type":46,"value":165},{"type":40,"tag":89,"props":354,"children":355},{},[356,361,362,368,369,375,376,382,383,389,391,397,398,404,405,411,412,417,419,425,426,432],{"type":40,"tag":63,"props":357,"children":358},{},[359],{"type":46,"value":360},"任务",{"type":46,"value":221},{"type":40,"tag":54,"props":363,"children":365},{"className":364},[],[366],{"type":46,"value":367},"create_task",{"type":46,"value":236},{"type":40,"tag":54,"props":370,"children":372},{"className":371},[],[373],{"type":46,"value":374},"batch_add_tasks",{"type":46,"value":236},{"type":40,"tag":54,"props":377,"children":379},{"className":378},[],[380],{"type":46,"value":381},"complete_task",{"type":46,"value":236},{"type":40,"tag":54,"props":384,"children":386},{"className":385},[],[387],{"type":46,"value":388},"complete_tasks_in_project",{"type":46,"value":390},"（每次最多 20 个）、",{"type":40,"tag":54,"props":392,"children":394},{"className":393},[],[395],{"type":46,"value":396},"update_task",{"type":46,"value":236},{"type":40,"tag":54,"props":399,"children":401},{"className":400},[],[402],{"type":46,"value":403},"move_task",{"type":46,"value":236},{"type":40,"tag":54,"props":406,"children":408},{"className":407},[],[409],{"type":46,"value":410},"batch_update_tasks",{"type":46,"value":236},{"type":40,"tag":54,"props":413,"children":415},{"className":414},[],[416],{"type":46,"value":157},{"type":46,"value":418},"（需同时提供 ",{"type":40,"tag":54,"props":420,"children":422},{"className":421},[],[423],{"type":46,"value":424},"task_id",{"type":46,"value":175},{"type":40,"tag":54,"props":427,"children":429},{"className":428},[],[430],{"type":46,"value":431},"project_id",{"type":46,"value":433},"）",{"type":40,"tag":89,"props":435,"children":436},{},[437,442,443,449,450,456,457,462,463,469,470,476,477],{"type":40,"tag":63,"props":438,"children":439},{},[440],{"type":46,"value":441},"评论与指派",{"type":46,"value":221},{"type":40,"tag":54,"props":444,"children":446},{"className":445},[],[447],{"type":46,"value":448},"get_comment",{"type":46,"value":236},{"type":40,"tag":54,"props":451,"children":453},{"className":452},[],[454],{"type":46,"value":455},"add_comment",{"type":46,"value":236},{"type":40,"tag":54,"props":458,"children":460},{"className":459},[],[461],{"type":46,"value":173},{"type":46,"value":236},{"type":40,"tag":54,"props":464,"children":466},{"className":465},[],[467],{"type":46,"value":468},"assign_task",{"type":46,"value":236},{"type":40,"tag":54,"props":471,"children":473},{"className":472},[],[474],{"type":46,"value":475},"unassign_task",{"type":46,"value":236},{"type":40,"tag":54,"props":478,"children":480},{"className":479},[],[481],{"type":46,"value":482},"project_member",{"type":40,"tag":89,"props":484,"children":485},{},[486,491,492,498,499],{"type":40,"tag":63,"props":487,"children":488},{},[489],{"type":46,"value":490},"标签",{"type":46,"value":221},{"type":40,"tag":54,"props":493,"children":495},{"className":494},[],[496],{"type":46,"value":497},"list_tags",{"type":46,"value":236},{"type":40,"tag":54,"props":500,"children":502},{"className":501},[],[503],{"type":46,"value":504},"create_tag",{"type":40,"tag":89,"props":506,"children":507},{},[508,513,514,520,521,527,528,534,535,541,542,548],{"type":40,"tag":63,"props":509,"children":510},{},[511],{"type":46,"value":512},"习惯",{"type":46,"value":221},{"type":40,"tag":54,"props":515,"children":517},{"className":516},[],[518],{"type":46,"value":519},"list_habits",{"type":46,"value":236},{"type":40,"tag":54,"props":522,"children":524},{"className":523},[],[525],{"type":46,"value":526},"create_habit",{"type":46,"value":236},{"type":40,"tag":54,"props":529,"children":531},{"className":530},[],[532],{"type":46,"value":533},"update_habit",{"type":46,"value":236},{"type":40,"tag":54,"props":536,"children":538},{"className":537},[],[539],{"type":46,"value":540},"get_habit_checkins",{"type":46,"value":236},{"type":40,"tag":54,"props":543,"children":545},{"className":544},[],[546],{"type":46,"value":547},"upsert_habit_checkins",{"type":46,"value":549},"（打卡范围限最近 90 天）",{"type":40,"tag":89,"props":551,"children":552},{},[553,558,559,565,567,573,574],{"type":40,"tag":63,"props":554,"children":555},{},[556],{"type":46,"value":557},"专注记录",{"type":46,"value":221},{"type":40,"tag":54,"props":560,"children":562},{"className":561},[],[563],{"type":46,"value":564},"get_focuses_by_time",{"type":46,"value":566},"（一次最多查一个月）、",{"type":40,"tag":54,"props":568,"children":570},{"className":569},[],[571],{"type":46,"value":572},"create_focus",{"type":46,"value":236},{"type":40,"tag":54,"props":575,"children":577},{"className":576},[],[578],{"type":46,"value":181},{"type":40,"tag":89,"props":580,"children":581},{},[582,587,588],{"type":40,"tag":63,"props":583,"children":584},{},[585],{"type":46,"value":586},"纪念日",{"type":46,"value":221},{"type":40,"tag":54,"props":589,"children":591},{"className":590},[],[592],{"type":46,"value":593},"list_countdowns",{"type":40,"tag":79,"props":595,"children":597},{"id":596},"参数约定",[598],{"type":46,"value":596},{"type":40,"tag":85,"props":600,"children":601},{},[602,658,663,695,724],{"type":40,"tag":89,"props":603,"children":604},{},[605,610,612,618,620],{"type":40,"tag":63,"props":606,"children":607},{},[608],{"type":46,"value":609},"对象参数必须传真正的 JSON 对象，绝不能传字符串化的 JSON",{"type":46,"value":611},"。实测发现部分模型（如 MiniMax-M3）会把 ",{"type":40,"tag":54,"props":613,"children":615},{"className":614},[],[616],{"type":46,"value":617},"task",{"type":46,"value":619}," 写成字符串、把整数加引号，导致内部字段类型全部失真：\n",{"type":40,"tag":85,"props":621,"children":622},{},[623,634,645],{"type":40,"tag":89,"props":624,"children":625},{},[626,628],{"type":46,"value":627},"❌ 错误：",{"type":40,"tag":54,"props":629,"children":631},{"className":630},[],[632],{"type":46,"value":633},"\"task\": \"{\\\"title\\\": \\\"x\\\", \\\"priority\\\": 5}\"",{"type":40,"tag":89,"props":635,"children":636},{},[637,639],{"type":46,"value":638},"✅ 正确：",{"type":40,"tag":54,"props":640,"children":642},{"className":641},[],[643],{"type":46,"value":644},"\"task\": {\"title\": \"x\", \"priority\": 5}",{"type":40,"tag":89,"props":646,"children":647},{},[648,650,656],{"type":46,"value":649},"若服务端回显的 ",{"type":40,"tag":54,"props":651,"children":653},{"className":652},[],[654],{"type":46,"value":655},"Received arguments",{"type":46,"value":657}," 里参数值带引号，说明本次调用已被字符串化，立即改用对象形式重发。",{"type":40,"tag":89,"props":659,"children":660},{},[661],{"type":46,"value":662},"优先级：0 = 无，1 = 低，3 = 中，5 = 高。用户说「高优先级」时用 5。",{"type":40,"tag":89,"props":664,"children":665},{},[666,677,679,685,687,693],{"type":40,"tag":63,"props":667,"children":668},{},[669,675],{"type":40,"tag":54,"props":670,"children":672},{"className":671},[],[673],{"type":46,"value":674},"priority",{"type":46,"value":676}," 必须以 JSON 数字类型传递",{"type":46,"value":678},"（",{"type":40,"tag":54,"props":680,"children":682},{"className":681},[],[683],{"type":46,"value":684},"\"priority\": 5",{"type":46,"value":686},"，不要加引号）。若服务端报 ",{"type":40,"tag":54,"props":688,"children":690},{"className":689},[],[691],{"type":46,"value":692},"task.priority: must be integer",{"type":46,"value":694},"，说明值在链路上被字符串化：先确认自己传的是数字后原样重试；仍失败则说明客户端序列化层存在问题，改为不带优先级创建任务，并告知用户在滴答清单 App 里手动设置旗标。",{"type":40,"tag":89,"props":696,"children":697},{},[698,700,706,708,714,716,722],{"type":46,"value":699},"日期时间使用 ISO 8601 并带时区，例如 ",{"type":40,"tag":54,"props":701,"children":703},{"className":702},[],[704],{"type":46,"value":705},"2026-08-16T15:00:00+08:00",{"type":46,"value":707},"。注意偏移量必须带冒号（",{"type":40,"tag":54,"props":709,"children":711},{"className":710},[],[712],{"type":46,"value":713},"+08:00",{"type":46,"value":715},"），",{"type":40,"tag":54,"props":717,"children":719},{"className":718},[],[720],{"type":46,"value":721},"+0800",{"type":46,"value":723}," 会被 date-time 格式校验拒绝。",{"type":40,"tag":89,"props":725,"children":726},{},[727,729,734,735,740],{"type":46,"value":728},"批量操作建议优先用 ",{"type":40,"tag":54,"props":730,"children":732},{"className":731},[],[733],{"type":46,"value":374},{"type":46,"value":311},{"type":40,"tag":54,"props":736,"children":738},{"className":737},[],[739],{"type":46,"value":410},{"type":46,"value":741},"，减少调用次数。",{"type":40,"tag":79,"props":743,"children":745},{"id":744},"典型场景",[746],{"type":46,"value":744},{"type":40,"tag":85,"props":748,"children":749},{},[750,767,784,815],{"type":40,"tag":89,"props":751,"children":752},{},[753,758,760,765],{"type":40,"tag":63,"props":754,"children":755},{},[756],{"type":46,"value":757},"今日概览",{"type":46,"value":759},"：「我今天有哪些任务？」→ ",{"type":40,"tag":54,"props":761,"children":763},{"className":762},[],[764],{"type":46,"value":242},{"type":46,"value":766},"（today），按清单和优先级整理输出。",{"type":40,"tag":89,"props":768,"children":769},{},[770,775,777,782],{"type":40,"tag":63,"props":771,"children":772},{},[773],{"type":46,"value":774},"学习计划拆解",{"type":46,"value":776},"：「帮我把这周的高数复习拆成每天的任务」→ 先确认清单和每天的时间安排，再用 ",{"type":40,"tag":54,"props":778,"children":780},{"className":779},[],[781],{"type":46,"value":374},{"type":46,"value":783}," 批量创建。",{"type":40,"tag":89,"props":785,"children":786},{},[787,792,794,799,801,806,808,813],{"type":40,"tag":63,"props":788,"children":789},{},[790],{"type":46,"value":791},"晚间复盘",{"type":46,"value":793},"：「看看我今天完成了什么，给习惯打卡」→ ",{"type":40,"tag":54,"props":795,"children":797},{"className":796},[],[798],{"type":46,"value":258},{"type":46,"value":800}," + ",{"type":40,"tag":54,"props":802,"children":804},{"className":803},[],[805],{"type":46,"value":540},{"type":46,"value":807},"，汇总后用 ",{"type":40,"tag":54,"props":809,"children":811},{"className":810},[],[812],{"type":46,"value":547},{"type":46,"value":814}," 补打卡。",{"type":40,"tag":89,"props":816,"children":817},{},[818,823,825,830],{"type":40,"tag":63,"props":819,"children":820},{},[821],{"type":46,"value":822},"专注统计",{"type":46,"value":824},"：「我这个月专注了多久？」→ ",{"type":40,"tag":54,"props":826,"children":828},{"className":827},[],[829],{"type":46,"value":564},{"type":46,"value":831},"，按月汇总趋势。",{"type":40,"tag":79,"props":833,"children":835},{"id":834},"失败排查",[836],{"type":46,"value":834},{"type":40,"tag":85,"props":838,"children":839},{},[840,852,857],{"type":40,"tag":89,"props":841,"children":842},{},[843,845,850],{"type":46,"value":844},"找不到任务：让用户补充清单名、日期或关键词，或先 ",{"type":40,"tag":54,"props":846,"children":848},{"className":847},[],[849],{"type":46,"value":131},{"type":46,"value":851}," 列出候选让用户指认。",{"type":40,"tag":89,"props":853,"children":854},{},[855],{"type":46,"value":856},"创建 \u002F 更新失败：检查参数是否符合上方约定，把复杂请求拆小后重试。",{"type":40,"tag":89,"props":858,"children":859},{},[860],{"type":46,"value":861},"该 MCP 仅支持任务、清单、习惯、专注、纪念日的基础操作；日历视图、智能清单等高级功能不在能力范围内，不要承诺。",{"items":863,"total":1064},[864,888,904,923,938,958,976,994,1009,1025,1044,1054],{"slug":865,"name":865,"fn":866,"description":867,"org":868,"tags":869,"stars":885,"repoUrl":886,"updatedAt":887},"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},[870,873,876,879,882],{"name":871,"slug":872,"type":16},"Accessibility","accessibility",{"name":874,"slug":875,"type":16},"Android","android",{"name":877,"slug":878,"type":16},"Kotlin","kotlin",{"name":880,"slug":881,"type":16},"Mobile","mobile",{"name":883,"slug":884,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":889,"name":889,"fn":890,"description":891,"org":892,"tags":893,"stars":885,"repoUrl":886,"updatedAt":903},"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},[894,897,900],{"name":895,"slug":896,"type":16},"Agents","agents",{"name":898,"slug":899,"type":16},"Audio","audio",{"name":901,"slug":902,"type":16},"Creative","creative","2026-07-13T06:16:35.130644",{"slug":905,"name":905,"fn":906,"description":907,"org":908,"tags":909,"stars":885,"repoUrl":886,"updatedAt":922},"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},[910,913,916,919],{"name":911,"slug":912,"type":16},"Design","design",{"name":914,"slug":915,"type":16},"Presentations","presentations",{"name":917,"slug":918,"type":16},"Themes","themes",{"name":920,"slug":921,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":924,"name":924,"fn":925,"description":926,"org":927,"tags":928,"stars":885,"repoUrl":886,"updatedAt":937},"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},[929,930,933,936],{"name":911,"slug":912,"type":16},{"name":931,"slug":932,"type":16},"Design System","design-system",{"name":934,"slug":935,"type":16},"PowerPoint","powerpoint",{"name":914,"slug":915,"type":16},"2026-07-13T06:17:10.398389",{"slug":939,"name":939,"fn":940,"description":941,"org":942,"tags":943,"stars":885,"repoUrl":886,"updatedAt":957},"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},[944,947,950,951,954],{"name":945,"slug":946,"type":16},"Dart","dart",{"name":948,"slug":949,"type":16},"Flutter","flutter",{"name":880,"slug":881,"type":16},{"name":952,"slug":953,"type":16},"Performance","performance",{"name":955,"slug":956,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":959,"name":959,"fn":960,"description":961,"org":962,"tags":963,"stars":885,"repoUrl":886,"updatedAt":975},"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},[964,967,968,969,972],{"name":965,"slug":966,"type":16},"Animation","animation",{"name":901,"slug":902,"type":16},{"name":911,"slug":912,"type":16},{"name":970,"slug":971,"type":16},"Frontend","frontend",{"name":973,"slug":974,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":977,"name":977,"fn":978,"description":979,"org":980,"tags":981,"stars":885,"repoUrl":886,"updatedAt":993},"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},[982,985,986,989,992],{"name":983,"slug":984,"type":16},"Backend","backend",{"name":970,"slug":971,"type":16},{"name":987,"slug":988,"type":16},"Full-stack","full-stack",{"name":990,"slug":991,"type":16},"REST API","rest-api",{"name":973,"slug":974,"type":16},"2026-07-13T06:16:43.219005",{"slug":995,"name":995,"fn":996,"description":997,"org":998,"tags":999,"stars":885,"repoUrl":886,"updatedAt":1008},"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},[1000,1001,1002,1005],{"name":965,"slug":966,"type":16},{"name":901,"slug":902,"type":16},{"name":1003,"slug":1004,"type":16},"Images","images",{"name":1006,"slug":1007,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":1010,"name":1010,"fn":1011,"description":1012,"org":1013,"tags":1014,"stars":885,"repoUrl":886,"updatedAt":1024},"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},[1015,1016,1019,1020,1023],{"name":871,"slug":872,"type":16},{"name":1017,"slug":1018,"type":16},"iOS","ios",{"name":880,"slug":881,"type":16},{"name":1021,"slug":1022,"type":16},"SwiftUI","swiftui",{"name":883,"slug":884,"type":16},"2026-07-13T06:16:55.686092",{"slug":1026,"name":1026,"fn":1027,"description":1028,"org":1029,"tags":1030,"stars":885,"repoUrl":886,"updatedAt":1043},"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},[1031,1034,1037,1040],{"name":1032,"slug":1033,"type":16},"Documents","documents",{"name":1035,"slug":1036,"type":16},"DOCX","docx",{"name":1038,"slug":1039,"type":16},"Office","office",{"name":1041,"slug":1042,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":1045,"name":1045,"fn":1046,"description":1047,"org":1048,"tags":1049,"stars":885,"repoUrl":886,"updatedAt":1053},"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},[1050,1051,1052],{"name":898,"slug":899,"type":16},{"name":901,"slug":902,"type":16},{"name":1006,"slug":1007,"type":16},"2026-07-13T06:16:50.381758",{"slug":1055,"name":1055,"fn":1056,"description":1057,"org":1058,"tags":1059,"stars":885,"repoUrl":886,"updatedAt":1063},"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},[1060,1061,1062],{"name":898,"slug":899,"type":16},{"name":901,"slug":902,"type":16},{"name":1006,"slug":1007,"type":16},"2026-07-13T06:16:57.002997",56,{"items":1066,"total":1151},[1067,1079,1085,1101,1112,1128,1142],{"slug":1068,"name":1068,"fn":1069,"description":1070,"org":1071,"tags":1072,"stars":23,"repoUrl":24,"updatedAt":1078},"article2tasks","convert articles into Dida365 tasks","将技术周报（批量）或单篇文章整理为滴答清单待办事项，自动分类到已有清单并打标签，全程通过 MCP 写入，跨平台无需任何本地脚本。当用户提供周报内容、文章链接，或提及「周报」「文章汇总」「添加到滴答」时，使用此技能。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1073,1076,1077],{"name":1074,"slug":1075,"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":4,"name":4,"fn":5,"description":6,"org":1080,"tags":1081,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1082,1083,1084],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"slug":1086,"name":1086,"fn":1087,"description":1088,"org":1089,"tags":1090,"stars":23,"repoUrl":24,"updatedAt":1100},"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},[1091,1094,1097],{"name":1092,"slug":1093,"type":16},"Code Analysis","code-analysis",{"name":1095,"slug":1096,"type":16},"GitHub","github",{"name":1098,"slug":1099,"type":16},"Research","research","2026-08-18T03:49:39.302333",{"slug":1102,"name":1102,"fn":1103,"description":1104,"org":1105,"tags":1106,"stars":23,"repoUrl":24,"updatedAt":1111},"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},[1107,1110],{"name":1108,"slug":1109,"type":16},"Architecture","architecture",{"name":14,"slug":15,"type":16},"2026-08-18T03:49:42.711595",{"slug":1113,"name":1113,"fn":1114,"description":1115,"org":1116,"tags":1117,"stars":23,"repoUrl":24,"updatedAt":1127},"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},[1118,1121,1124],{"name":1119,"slug":1120,"type":16},"Debugging","debugging",{"name":1122,"slug":1123,"type":16},"Observability","observability",{"name":1125,"slug":1126,"type":16},"Tracing","tracing","2026-08-18T03:49:38.218712",{"slug":1129,"name":1129,"fn":1130,"description":1131,"org":1132,"tags":1133,"stars":23,"repoUrl":24,"updatedAt":1141},"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},[1134,1137,1138],{"name":1135,"slug":1136,"type":16},"Best Practices","best-practices",{"name":1092,"slug":1093,"type":16},{"name":1139,"slug":1140,"type":16},"Engineering","engineering","2026-08-18T03:49:37.673989",{"slug":75,"name":75,"fn":1143,"description":1144,"org":1145,"tags":1146,"stars":23,"repoUrl":24,"updatedAt":1150},"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},[1147,1148,1149],{"name":14,"slug":15,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},"2026-08-18T03:49:42.187465",8]