[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-minimax-literature-search":3,"mdc-3o1pha-key":31,"related-org-minimax-literature-search":1561,"related-repo-minimax-literature-search":1764},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"literature-search","search and retrieve academic literature","当用户需要检索学术文献、按主题找论文、收集综述素材、查询某篇文献的元数据或 DOI、追踪某方向最新进展或预印本、做开题文献调研时使用。同义场景：文献检索、 论文搜索、查文献、找论文、文献调研、资料收集、题录补全、 \"帮我找关于 X 的论文\"\"这个主题有哪些代表性工作\"\"查一下这篇文献的 DOI 和出处\"。",{"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],{"name":14,"slug":15,"type":16},"Research","research","tag",{"name":18,"slug":19,"type":16},"Reference","reference",5,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMiniMax-Code-Plugins","2026-08-21T03:59:57.896279",null,2,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"Community registry and contribution toolkit for MiniMax Code plugins.","https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002FMiniMax-Code-Plugins\u002Ftree\u002FHEAD\u002Fplugins\u002FHylouis233\u002Fopenscience\u002Fskills\u002Fliterature-search","---\nname: literature-search\ndescription: >-\n  当用户需要检索学术文献、按主题找论文、收集综述素材、查询某篇文献的元数据或\n  DOI、追踪某方向最新进展或预印本、做开题文献调研时使用。同义场景：文献检索、\n  论文搜索、查文献、找论文、文献调研、资料收集、题录补全、\n  \"帮我找关于 X 的论文\"\"这个主题有哪些代表性工作\"\"查一下这篇文献的 DOI 和出处\"。\nargument-hint: '[检索问题或关键词]'\nmetadata:\n  domains: [literature]\n  last_reviewed: '2026-08-18'\n---\n\n# literature-search：多源文献检索路由器\n\n## 目的\n\n把用户的检索问题路由到最合适的文献数据源（provider），执行检索，\n多源结果去重后统一为 PaperDocument JSON 落盘，供 literature-survey 等下游\n技能直接使用。\n\n核心原则：诚实路由、失败留痕——哪个源失败了、为什么失败，必须结构化记录\n在 manifest 中，不得静默缺失；也不得把失败伪装成「该源没有结果」。\n\n## 前置检查\n\n1. paper-search 技能与其脚本 `scripts\u002Fsearch_papers.py` 存在；`python` 可用。\n2. 网络可用；离线时直接说明无法检索并终止。\n3. 检索问题足够具体：若用户输入过于宽泛（如「人工智能」），先与用户收敛到\n   一个可检索的问题或关键词组再执行。\n4. 计算 slug：检索问题规范化（Unicode NFKC 规范化、转小写、去首尾空白、\n   连续空白折叠为单个空格）后取 sha1 十六进制摘要前 8 位。\n\n## 操作规程\n\n### 1. 路由：按问题类型选 provider\n\n| 问题类型 | 首选 provider | 当前版本说明 |\n| --- | --- | --- |\n| 综合主题检索 \u002F 引文网络 \u002F 领域全景 | OpenAlex | 脚本直连，覆盖广、元数据丰富 |\n| 精确元数据 \u002F DOI 解析 \u002F 题录补全 | Crossref | 脚本直连，DOI 注册数据权威 |\n| 生物医学 \u002F 临床 \u002F 生命科学 | PubMed | 当前版本脚本未直连；以 OpenAlex 兜底（其收录 PubMed 源文献），并在 manifest 记 warn |\n| 预印本 \u002F 最新进展 | arXiv（数理信息类）\u002F bioRxiv（生物类） | arXiv 脚本直连；bioRxiv 经 Crossref \u002F OpenAlex 检索其 DOI，manifest 记 warn |\n| 中文文献 | CNKI \u002F 万方 | 转交本插件的 cn-literature 技能（CNKI 导出题录解析 + 万方 API），不在本技能内重复实现 |\n\n路由决策与理由写入 manifest；用户也可直接指定 provider 跳过路由。\n\n### 2. 执行检索\n\n- 按 paper-search 技能的规程构建 query 并执行：\n  `python scripts\u002Fsearch_papers.py --query \"...\" --provider \u003Cp> --limit \u003Cn> --format json`。\n- 同一问题可路由到多个 provider；逐源串行执行、逐源记录结果。\n\n### 3. 失败结构化记录\n\n任一 provider 返回 `{\"error\": {...}}` 或执行异常时：\n\n- 在 manifest 的 `errors` 数组记录：provider、type（`network` \u002F `rate_limited` \u002F\n  `parse`）、message；\n- 回复中如实告知「X 源本次检索失败及原因」；\n- `rate_limited` → 按指数退避稍后重试一次；仍失败则留痕，\n  不得当作「该源结果为 0」。\n\n### 4. 多源去重与统一\n\n- 合并各源返回的 PaperDocument 数组。\n- 去重优先级：① DOI（统一小写、去掉 `https:\u002F\u002Fdoi.org\u002F` 前缀后比较）；\n  ② 标题模糊匹配（小写、去标点、折叠空白后比较；判定重复时保留元数据\n  更全的一条）。\n- 重复条目的 `source` 记录为来源列表（如 `[\"openalex\", \"crossref\"]`）。\n- 输出统一 PaperDocument：\n  `{id, title, authors, year, venue, doi, url, abstract, source, retrieved_at}`\n  （`source` 为字符串数组）。\n\n### 5. 落盘\n\n目录 `output\u002Fliterature-search\u002F\u003Cslug>\u002Flatest\u002F`：\n\n- `papers.json`：去重后的 PaperDocument 数组；\n- `manifest.json`：query、路由决策、各源命中数、errors、执行时间、去重统计。\n\n### 6. 路由决策示例\n\n- 「帮我找 Transformer 相关的代表性工作」→ 综合主题 → OpenAlex；\n- 「查 10.1145\u002Fxxxx 这篇的完整题录」→ 精确元数据 → Crossref；\n- 「最近半年扩散模型有哪些预印本」→ 最新进展 → arXiv；\n- 「肺癌筛查影像 AI 的临床研究」→ 生物医学 → OpenAlex 兜底并记 warn；\n- 「查中文核心期刊上关于乡村振兴的研究」→ 中文文献 → 转交 cn-literature\n  技能处理（CNKI 导出题录解析 + 万方 API）。\n\n### 7. 合并顺序与字段取舍\n\n- 多源执行顺序按路由表优先级：OpenAlex → Crossref → arXiv；\n- 同一论文多源命中时按字段择优：DOI 以 Crossref 为准；abstract 以\n  OpenAlex \u002F arXiv 为准（Crossref 常缺摘要）；venue 以正式发表信息为准，\n  预印本 venue 只在无正式版时保留；\n- PubMed \u002F bioRxiv 走兜底源时，manifest 记 warn：「该源经 OpenAlex \u002F\n  Crossref 间接覆盖，结果可能不完整」；\n- 去重后被舍弃的条目不清空，在 manifest 记录其 id 以便追溯。\n\n## 输出模板\n\n### papers.json\n\n```json\n[\n  {\n    \"id\": \"https:\u002F\u002Fopenalex.org\u002FW0123456789\",\n    \"title\": \"Attention Is All You Need\",\n    \"authors\": [\"Ashish Vaswani\", \"Noam Shazeer\"],\n    \"year\": 2017,\n    \"venue\": \"Advances in Neural Information Processing Systems\",\n    \"doi\": \"10.48550\u002FarXiv.1706.03762\",\n    \"url\": \"https:\u002F\u002Farxiv.org\u002Fabs\u002F1706.03762\",\n    \"abstract\": \"The dominant sequence transduction models ...\",\n    \"source\": [\"openalex\", \"arxiv\"],\n    \"retrieved_at\": \"2026-08-18T00:00:00+00:00\"\n  }\n]\n```\n\n### manifest.json\n\n```json\n{\n  \"query\": \"large language model agents\",\n  \"slug\": \"1a2b3c4d\",\n  \"routing\": [{\"provider\": \"openalex\", \"reason\": \"综合主题检索\"}],\n  \"hits\": {\"openalex\": 20},\n  \"errors\": [{\"provider\": \"arxiv\", \"type\": \"rate_limited\", \"message\": \"HTTP 429\"}],\n  \"dedup\": {\"before\": 22, \"after\": 20},\n  \"executed_at\": \"2026-08-18T00:00:00+00:00\"\n}\n```\n\n## 本技能不做什么\n\n- 不获取付费墙全文；abstract 之外的正文不可得时如实标注。\n- 不评价论文质量、不筛选「重要」文献（排序建议由 paper-search 给出，\n  质量判断留给 literature-survey 与用户）。\n- 不在本技能内检索中文文献：CNKI \u002F 万方需求转交 cn-literature 技能处理。\n- 不把 provider 失败伪装成「检索结果为 0」。\n- 不做综述分析与成文（交给 literature-survey \u002F review-writing）。\n\n## 收尾与下一步\n\n1. 汇总：各源命中数、去重后数量、失败源及原因，5 行内说明。\n2. 指向 `output\u002Fliterature-search\u002F\u003Cslug>\u002Flatest\u002Fpapers.json`。\n3. 建议下一步：运行 literature-survey 做证据提取与全局分析；\n   或调整 query 重新检索（换关键词、换 provider、调 limit）。\n4. 若全部 provider 均失败，明确告知「本次检索整体失败」，\n   不产出空 papers.json 冒充成功。\n",{"data":32,"body":38},{"name":4,"description":6,"argument-hint":33,"metadata":34},"[检索问题或关键词]",{"domains":35,"last_reviewed":37},[36],"literature","2026-08-18",{"type":39,"children":40},"root",[41,50,56,62,67,72,114,119,126,249,254,260,282,288,301,356,362,424,430,443,468,474,502,508,531,536,541,1010,1015,1487,1492,1520,1525,1555],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"literature-search多源文献检索路由器",[47],{"type":48,"value":49},"text","literature-search：多源文献检索路由器",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"目的",[55],{"type":48,"value":53},{"type":42,"tag":57,"props":58,"children":59},"p",{},[60],{"type":48,"value":61},"把用户的检索问题路由到最合适的文献数据源（provider），执行检索，\n多源结果去重后统一为 PaperDocument JSON 落盘，供 literature-survey 等下游\n技能直接使用。",{"type":42,"tag":57,"props":63,"children":64},{},[65],{"type":48,"value":66},"核心原则：诚实路由、失败留痕——哪个源失败了、为什么失败，必须结构化记录\n在 manifest 中，不得静默缺失；也不得把失败伪装成「该源没有结果」。",{"type":42,"tag":51,"props":68,"children":70},{"id":69},"前置检查",[71],{"type":48,"value":69},{"type":42,"tag":73,"props":74,"children":75},"ol",{},[76,99,104,109],{"type":42,"tag":77,"props":78,"children":79},"li",{},[80,82,89,91,97],{"type":48,"value":81},"paper-search 技能与其脚本 ",{"type":42,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":48,"value":88},"scripts\u002Fsearch_papers.py",{"type":48,"value":90}," 存在；",{"type":42,"tag":83,"props":92,"children":94},{"className":93},[],[95],{"type":48,"value":96},"python",{"type":48,"value":98}," 可用。",{"type":42,"tag":77,"props":100,"children":101},{},[102],{"type":48,"value":103},"网络可用；离线时直接说明无法检索并终止。",{"type":42,"tag":77,"props":105,"children":106},{},[107],{"type":48,"value":108},"检索问题足够具体：若用户输入过于宽泛（如「人工智能」），先与用户收敛到\n一个可检索的问题或关键词组再执行。",{"type":42,"tag":77,"props":110,"children":111},{},[112],{"type":48,"value":113},"计算 slug：检索问题规范化（Unicode NFKC 规范化、转小写、去首尾空白、\n连续空白折叠为单个空格）后取 sha1 十六进制摘要前 8 位。",{"type":42,"tag":51,"props":115,"children":117},{"id":116},"操作规程",[118],{"type":48,"value":116},{"type":42,"tag":120,"props":121,"children":123},"h3",{"id":122},"_1-路由按问题类型选-provider",[124],{"type":48,"value":125},"1. 路由：按问题类型选 provider",{"type":42,"tag":127,"props":128,"children":129},"table",{},[130,154],{"type":42,"tag":131,"props":132,"children":133},"thead",{},[134],{"type":42,"tag":135,"props":136,"children":137},"tr",{},[138,144,149],{"type":42,"tag":139,"props":140,"children":141},"th",{},[142],{"type":48,"value":143},"问题类型",{"type":42,"tag":139,"props":145,"children":146},{},[147],{"type":48,"value":148},"首选 provider",{"type":42,"tag":139,"props":150,"children":151},{},[152],{"type":48,"value":153},"当前版本说明",{"type":42,"tag":155,"props":156,"children":157},"tbody",{},[158,177,195,213,231],{"type":42,"tag":135,"props":159,"children":160},{},[161,167,172],{"type":42,"tag":162,"props":163,"children":164},"td",{},[165],{"type":48,"value":166},"综合主题检索 \u002F 引文网络 \u002F 领域全景",{"type":42,"tag":162,"props":168,"children":169},{},[170],{"type":48,"value":171},"OpenAlex",{"type":42,"tag":162,"props":173,"children":174},{},[175],{"type":48,"value":176},"脚本直连，覆盖广、元数据丰富",{"type":42,"tag":135,"props":178,"children":179},{},[180,185,190],{"type":42,"tag":162,"props":181,"children":182},{},[183],{"type":48,"value":184},"精确元数据 \u002F DOI 解析 \u002F 题录补全",{"type":42,"tag":162,"props":186,"children":187},{},[188],{"type":48,"value":189},"Crossref",{"type":42,"tag":162,"props":191,"children":192},{},[193],{"type":48,"value":194},"脚本直连，DOI 注册数据权威",{"type":42,"tag":135,"props":196,"children":197},{},[198,203,208],{"type":42,"tag":162,"props":199,"children":200},{},[201],{"type":48,"value":202},"生物医学 \u002F 临床 \u002F 生命科学",{"type":42,"tag":162,"props":204,"children":205},{},[206],{"type":48,"value":207},"PubMed",{"type":42,"tag":162,"props":209,"children":210},{},[211],{"type":48,"value":212},"当前版本脚本未直连；以 OpenAlex 兜底（其收录 PubMed 源文献），并在 manifest 记 warn",{"type":42,"tag":135,"props":214,"children":215},{},[216,221,226],{"type":42,"tag":162,"props":217,"children":218},{},[219],{"type":48,"value":220},"预印本 \u002F 最新进展",{"type":42,"tag":162,"props":222,"children":223},{},[224],{"type":48,"value":225},"arXiv（数理信息类）\u002F bioRxiv（生物类）",{"type":42,"tag":162,"props":227,"children":228},{},[229],{"type":48,"value":230},"arXiv 脚本直连；bioRxiv 经 Crossref \u002F OpenAlex 检索其 DOI，manifest 记 warn",{"type":42,"tag":135,"props":232,"children":233},{},[234,239,244],{"type":42,"tag":162,"props":235,"children":236},{},[237],{"type":48,"value":238},"中文文献",{"type":42,"tag":162,"props":240,"children":241},{},[242],{"type":48,"value":243},"CNKI \u002F 万方",{"type":42,"tag":162,"props":245,"children":246},{},[247],{"type":48,"value":248},"转交本插件的 cn-literature 技能（CNKI 导出题录解析 + 万方 API），不在本技能内重复实现",{"type":42,"tag":57,"props":250,"children":251},{},[252],{"type":48,"value":253},"路由决策与理由写入 manifest；用户也可直接指定 provider 跳过路由。",{"type":42,"tag":120,"props":255,"children":257},{"id":256},"_2-执行检索",[258],{"type":48,"value":259},"2. 执行检索",{"type":42,"tag":261,"props":262,"children":263},"ul",{},[264,277],{"type":42,"tag":77,"props":265,"children":266},{},[267,269,275],{"type":48,"value":268},"按 paper-search 技能的规程构建 query 并执行：\n",{"type":42,"tag":83,"props":270,"children":272},{"className":271},[],[273],{"type":48,"value":274},"python scripts\u002Fsearch_papers.py --query \"...\" --provider \u003Cp> --limit \u003Cn> --format json",{"type":48,"value":276},"。",{"type":42,"tag":77,"props":278,"children":279},{},[280],{"type":48,"value":281},"同一问题可路由到多个 provider；逐源串行执行、逐源记录结果。",{"type":42,"tag":120,"props":283,"children":285},{"id":284},"_3-失败结构化记录",[286],{"type":48,"value":287},"3. 失败结构化记录",{"type":42,"tag":57,"props":289,"children":290},{},[291,293,299],{"type":48,"value":292},"任一 provider 返回 ",{"type":42,"tag":83,"props":294,"children":296},{"className":295},[],[297],{"type":48,"value":298},"{\"error\": {...}}",{"type":48,"value":300}," 或执行异常时：",{"type":42,"tag":261,"props":302,"children":303},{},[304,341,346],{"type":42,"tag":77,"props":305,"children":306},{},[307,309,315,317,323,325,331,333,339],{"type":48,"value":308},"在 manifest 的 ",{"type":42,"tag":83,"props":310,"children":312},{"className":311},[],[313],{"type":48,"value":314},"errors",{"type":48,"value":316}," 数组记录：provider、type（",{"type":42,"tag":83,"props":318,"children":320},{"className":319},[],[321],{"type":48,"value":322},"network",{"type":48,"value":324}," \u002F ",{"type":42,"tag":83,"props":326,"children":328},{"className":327},[],[329],{"type":48,"value":330},"rate_limited",{"type":48,"value":332}," \u002F\n",{"type":42,"tag":83,"props":334,"children":336},{"className":335},[],[337],{"type":48,"value":338},"parse",{"type":48,"value":340},"）、message；",{"type":42,"tag":77,"props":342,"children":343},{},[344],{"type":48,"value":345},"回复中如实告知「X 源本次检索失败及原因」；",{"type":42,"tag":77,"props":347,"children":348},{},[349,354],{"type":42,"tag":83,"props":350,"children":352},{"className":351},[],[353],{"type":48,"value":330},{"type":48,"value":355}," → 按指数退避稍后重试一次；仍失败则留痕，\n不得当作「该源结果为 0」。",{"type":42,"tag":120,"props":357,"children":359},{"id":358},"_4-多源去重与统一",[360],{"type":48,"value":361},"4. 多源去重与统一",{"type":42,"tag":261,"props":363,"children":364},{},[365,370,383,404],{"type":42,"tag":77,"props":366,"children":367},{},[368],{"type":48,"value":369},"合并各源返回的 PaperDocument 数组。",{"type":42,"tag":77,"props":371,"children":372},{},[373,375,381],{"type":48,"value":374},"去重优先级：① DOI（统一小写、去掉 ",{"type":42,"tag":83,"props":376,"children":378},{"className":377},[],[379],{"type":48,"value":380},"https:\u002F\u002Fdoi.org\u002F",{"type":48,"value":382}," 前缀后比较）；\n② 标题模糊匹配（小写、去标点、折叠空白后比较；判定重复时保留元数据\n更全的一条）。",{"type":42,"tag":77,"props":384,"children":385},{},[386,388,394,396,402],{"type":48,"value":387},"重复条目的 ",{"type":42,"tag":83,"props":389,"children":391},{"className":390},[],[392],{"type":48,"value":393},"source",{"type":48,"value":395}," 记录为来源列表（如 ",{"type":42,"tag":83,"props":397,"children":399},{"className":398},[],[400],{"type":48,"value":401},"[\"openalex\", \"crossref\"]",{"type":48,"value":403},"）。",{"type":42,"tag":77,"props":405,"children":406},{},[407,409,415,417,422],{"type":48,"value":408},"输出统一 PaperDocument：\n",{"type":42,"tag":83,"props":410,"children":412},{"className":411},[],[413],{"type":48,"value":414},"{id, title, authors, year, venue, doi, url, abstract, source, retrieved_at}",{"type":48,"value":416},"\n（",{"type":42,"tag":83,"props":418,"children":420},{"className":419},[],[421],{"type":48,"value":393},{"type":48,"value":423}," 为字符串数组）。",{"type":42,"tag":120,"props":425,"children":427},{"id":426},"_5-落盘",[428],{"type":48,"value":429},"5. 落盘",{"type":42,"tag":57,"props":431,"children":432},{},[433,435,441],{"type":48,"value":434},"目录 ",{"type":42,"tag":83,"props":436,"children":438},{"className":437},[],[439],{"type":48,"value":440},"output\u002Fliterature-search\u002F\u003Cslug>\u002Flatest\u002F",{"type":48,"value":442},"：",{"type":42,"tag":261,"props":444,"children":445},{},[446,457],{"type":42,"tag":77,"props":447,"children":448},{},[449,455],{"type":42,"tag":83,"props":450,"children":452},{"className":451},[],[453],{"type":48,"value":454},"papers.json",{"type":48,"value":456},"：去重后的 PaperDocument 数组；",{"type":42,"tag":77,"props":458,"children":459},{},[460,466],{"type":42,"tag":83,"props":461,"children":463},{"className":462},[],[464],{"type":48,"value":465},"manifest.json",{"type":48,"value":467},"：query、路由决策、各源命中数、errors、执行时间、去重统计。",{"type":42,"tag":120,"props":469,"children":471},{"id":470},"_6-路由决策示例",[472],{"type":48,"value":473},"6. 路由决策示例",{"type":42,"tag":261,"props":475,"children":476},{},[477,482,487,492,497],{"type":42,"tag":77,"props":478,"children":479},{},[480],{"type":48,"value":481},"「帮我找 Transformer 相关的代表性工作」→ 综合主题 → OpenAlex；",{"type":42,"tag":77,"props":483,"children":484},{},[485],{"type":48,"value":486},"「查 10.1145\u002Fxxxx 这篇的完整题录」→ 精确元数据 → Crossref；",{"type":42,"tag":77,"props":488,"children":489},{},[490],{"type":48,"value":491},"「最近半年扩散模型有哪些预印本」→ 最新进展 → arXiv；",{"type":42,"tag":77,"props":493,"children":494},{},[495],{"type":48,"value":496},"「肺癌筛查影像 AI 的临床研究」→ 生物医学 → OpenAlex 兜底并记 warn；",{"type":42,"tag":77,"props":498,"children":499},{},[500],{"type":48,"value":501},"「查中文核心期刊上关于乡村振兴的研究」→ 中文文献 → 转交 cn-literature\n技能处理（CNKI 导出题录解析 + 万方 API）。",{"type":42,"tag":120,"props":503,"children":505},{"id":504},"_7-合并顺序与字段取舍",[506],{"type":48,"value":507},"7. 合并顺序与字段取舍",{"type":42,"tag":261,"props":509,"children":510},{},[511,516,521,526],{"type":42,"tag":77,"props":512,"children":513},{},[514],{"type":48,"value":515},"多源执行顺序按路由表优先级：OpenAlex → Crossref → arXiv；",{"type":42,"tag":77,"props":517,"children":518},{},[519],{"type":48,"value":520},"同一论文多源命中时按字段择优：DOI 以 Crossref 为准；abstract 以\nOpenAlex \u002F arXiv 为准（Crossref 常缺摘要）；venue 以正式发表信息为准，\n预印本 venue 只在无正式版时保留；",{"type":42,"tag":77,"props":522,"children":523},{},[524],{"type":48,"value":525},"PubMed \u002F bioRxiv 走兜底源时，manifest 记 warn：「该源经 OpenAlex \u002F\nCrossref 间接覆盖，结果可能不完整」；",{"type":42,"tag":77,"props":527,"children":528},{},[529],{"type":48,"value":530},"去重后被舍弃的条目不清空，在 manifest 记录其 id 以便追溯。",{"type":42,"tag":51,"props":532,"children":534},{"id":533},"输出模板",[535],{"type":48,"value":533},{"type":42,"tag":120,"props":537,"children":539},{"id":538},"papersjson",[540],{"type":48,"value":454},{"type":42,"tag":542,"props":543,"children":548},"pre",{"className":544,"code":545,"language":546,"meta":547,"style":547},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","[\n  {\n    \"id\": \"https:\u002F\u002Fopenalex.org\u002FW0123456789\",\n    \"title\": \"Attention Is All You Need\",\n    \"authors\": [\"Ashish Vaswani\", \"Noam Shazeer\"],\n    \"year\": 2017,\n    \"venue\": \"Advances in Neural Information Processing Systems\",\n    \"doi\": \"10.48550\u002FarXiv.1706.03762\",\n    \"url\": \"https:\u002F\u002Farxiv.org\u002Fabs\u002F1706.03762\",\n    \"abstract\": \"The dominant sequence transduction models ...\",\n    \"source\": [\"openalex\", \"arxiv\"],\n    \"retrieved_at\": \"2026-08-18T00:00:00+00:00\"\n  }\n]\n","json","",[549],{"type":42,"tag":83,"props":550,"children":551},{"__ignoreMap":547},[552,564,572,617,655,716,747,785,823,861,899,957,992,1001],{"type":42,"tag":553,"props":554,"children":557},"span",{"class":555,"line":556},"line",1,[558],{"type":42,"tag":553,"props":559,"children":561},{"style":560},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[562],{"type":48,"value":563},"[\n",{"type":42,"tag":553,"props":565,"children":566},{"class":555,"line":24},[567],{"type":42,"tag":553,"props":568,"children":569},{"style":560},[570],{"type":48,"value":571},"  {\n",{"type":42,"tag":553,"props":573,"children":575},{"class":555,"line":574},3,[576,581,587,592,597,602,608,612],{"type":42,"tag":553,"props":577,"children":578},{"style":560},[579],{"type":48,"value":580},"    \"",{"type":42,"tag":553,"props":582,"children":584},{"style":583},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[585],{"type":48,"value":586},"id",{"type":42,"tag":553,"props":588,"children":589},{"style":560},[590],{"type":48,"value":591},"\"",{"type":42,"tag":553,"props":593,"children":594},{"style":560},[595],{"type":48,"value":596},":",{"type":42,"tag":553,"props":598,"children":599},{"style":560},[600],{"type":48,"value":601}," \"",{"type":42,"tag":553,"props":603,"children":605},{"style":604},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[606],{"type":48,"value":607},"https:\u002F\u002Fopenalex.org\u002FW0123456789",{"type":42,"tag":553,"props":609,"children":610},{"style":560},[611],{"type":48,"value":591},{"type":42,"tag":553,"props":613,"children":614},{"style":560},[615],{"type":48,"value":616},",\n",{"type":42,"tag":553,"props":618,"children":620},{"class":555,"line":619},4,[621,625,630,634,638,642,647,651],{"type":42,"tag":553,"props":622,"children":623},{"style":560},[624],{"type":48,"value":580},{"type":42,"tag":553,"props":626,"children":627},{"style":583},[628],{"type":48,"value":629},"title",{"type":42,"tag":553,"props":631,"children":632},{"style":560},[633],{"type":48,"value":591},{"type":42,"tag":553,"props":635,"children":636},{"style":560},[637],{"type":48,"value":596},{"type":42,"tag":553,"props":639,"children":640},{"style":560},[641],{"type":48,"value":601},{"type":42,"tag":553,"props":643,"children":644},{"style":604},[645],{"type":48,"value":646},"Attention Is All You Need",{"type":42,"tag":553,"props":648,"children":649},{"style":560},[650],{"type":48,"value":591},{"type":42,"tag":553,"props":652,"children":653},{"style":560},[654],{"type":48,"value":616},{"type":42,"tag":553,"props":656,"children":657},{"class":555,"line":20},[658,662,667,671,675,680,684,689,693,698,702,707,711],{"type":42,"tag":553,"props":659,"children":660},{"style":560},[661],{"type":48,"value":580},{"type":42,"tag":553,"props":663,"children":664},{"style":583},[665],{"type":48,"value":666},"authors",{"type":42,"tag":553,"props":668,"children":669},{"style":560},[670],{"type":48,"value":591},{"type":42,"tag":553,"props":672,"children":673},{"style":560},[674],{"type":48,"value":596},{"type":42,"tag":553,"props":676,"children":677},{"style":560},[678],{"type":48,"value":679}," [",{"type":42,"tag":553,"props":681,"children":682},{"style":560},[683],{"type":48,"value":591},{"type":42,"tag":553,"props":685,"children":686},{"style":604},[687],{"type":48,"value":688},"Ashish Vaswani",{"type":42,"tag":553,"props":690,"children":691},{"style":560},[692],{"type":48,"value":591},{"type":42,"tag":553,"props":694,"children":695},{"style":560},[696],{"type":48,"value":697},",",{"type":42,"tag":553,"props":699,"children":700},{"style":560},[701],{"type":48,"value":601},{"type":42,"tag":553,"props":703,"children":704},{"style":604},[705],{"type":48,"value":706},"Noam Shazeer",{"type":42,"tag":553,"props":708,"children":709},{"style":560},[710],{"type":48,"value":591},{"type":42,"tag":553,"props":712,"children":713},{"style":560},[714],{"type":48,"value":715},"],\n",{"type":42,"tag":553,"props":717,"children":719},{"class":555,"line":718},6,[720,724,729,733,737,743],{"type":42,"tag":553,"props":721,"children":722},{"style":560},[723],{"type":48,"value":580},{"type":42,"tag":553,"props":725,"children":726},{"style":583},[727],{"type":48,"value":728},"year",{"type":42,"tag":553,"props":730,"children":731},{"style":560},[732],{"type":48,"value":591},{"type":42,"tag":553,"props":734,"children":735},{"style":560},[736],{"type":48,"value":596},{"type":42,"tag":553,"props":738,"children":740},{"style":739},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[741],{"type":48,"value":742}," 2017",{"type":42,"tag":553,"props":744,"children":745},{"style":560},[746],{"type":48,"value":616},{"type":42,"tag":553,"props":748,"children":750},{"class":555,"line":749},7,[751,755,760,764,768,772,777,781],{"type":42,"tag":553,"props":752,"children":753},{"style":560},[754],{"type":48,"value":580},{"type":42,"tag":553,"props":756,"children":757},{"style":583},[758],{"type":48,"value":759},"venue",{"type":42,"tag":553,"props":761,"children":762},{"style":560},[763],{"type":48,"value":591},{"type":42,"tag":553,"props":765,"children":766},{"style":560},[767],{"type":48,"value":596},{"type":42,"tag":553,"props":769,"children":770},{"style":560},[771],{"type":48,"value":601},{"type":42,"tag":553,"props":773,"children":774},{"style":604},[775],{"type":48,"value":776},"Advances in Neural Information Processing Systems",{"type":42,"tag":553,"props":778,"children":779},{"style":560},[780],{"type":48,"value":591},{"type":42,"tag":553,"props":782,"children":783},{"style":560},[784],{"type":48,"value":616},{"type":42,"tag":553,"props":786,"children":788},{"class":555,"line":787},8,[789,793,798,802,806,810,815,819],{"type":42,"tag":553,"props":790,"children":791},{"style":560},[792],{"type":48,"value":580},{"type":42,"tag":553,"props":794,"children":795},{"style":583},[796],{"type":48,"value":797},"doi",{"type":42,"tag":553,"props":799,"children":800},{"style":560},[801],{"type":48,"value":591},{"type":42,"tag":553,"props":803,"children":804},{"style":560},[805],{"type":48,"value":596},{"type":42,"tag":553,"props":807,"children":808},{"style":560},[809],{"type":48,"value":601},{"type":42,"tag":553,"props":811,"children":812},{"style":604},[813],{"type":48,"value":814},"10.48550\u002FarXiv.1706.03762",{"type":42,"tag":553,"props":816,"children":817},{"style":560},[818],{"type":48,"value":591},{"type":42,"tag":553,"props":820,"children":821},{"style":560},[822],{"type":48,"value":616},{"type":42,"tag":553,"props":824,"children":826},{"class":555,"line":825},9,[827,831,836,840,844,848,853,857],{"type":42,"tag":553,"props":828,"children":829},{"style":560},[830],{"type":48,"value":580},{"type":42,"tag":553,"props":832,"children":833},{"style":583},[834],{"type":48,"value":835},"url",{"type":42,"tag":553,"props":837,"children":838},{"style":560},[839],{"type":48,"value":591},{"type":42,"tag":553,"props":841,"children":842},{"style":560},[843],{"type":48,"value":596},{"type":42,"tag":553,"props":845,"children":846},{"style":560},[847],{"type":48,"value":601},{"type":42,"tag":553,"props":849,"children":850},{"style":604},[851],{"type":48,"value":852},"https:\u002F\u002Farxiv.org\u002Fabs\u002F1706.03762",{"type":42,"tag":553,"props":854,"children":855},{"style":560},[856],{"type":48,"value":591},{"type":42,"tag":553,"props":858,"children":859},{"style":560},[860],{"type":48,"value":616},{"type":42,"tag":553,"props":862,"children":864},{"class":555,"line":863},10,[865,869,874,878,882,886,891,895],{"type":42,"tag":553,"props":866,"children":867},{"style":560},[868],{"type":48,"value":580},{"type":42,"tag":553,"props":870,"children":871},{"style":583},[872],{"type":48,"value":873},"abstract",{"type":42,"tag":553,"props":875,"children":876},{"style":560},[877],{"type":48,"value":591},{"type":42,"tag":553,"props":879,"children":880},{"style":560},[881],{"type":48,"value":596},{"type":42,"tag":553,"props":883,"children":884},{"style":560},[885],{"type":48,"value":601},{"type":42,"tag":553,"props":887,"children":888},{"style":604},[889],{"type":48,"value":890},"The dominant sequence transduction models ...",{"type":42,"tag":553,"props":892,"children":893},{"style":560},[894],{"type":48,"value":591},{"type":42,"tag":553,"props":896,"children":897},{"style":560},[898],{"type":48,"value":616},{"type":42,"tag":553,"props":900,"children":902},{"class":555,"line":901},11,[903,907,911,915,919,923,927,932,936,940,944,949,953],{"type":42,"tag":553,"props":904,"children":905},{"style":560},[906],{"type":48,"value":580},{"type":42,"tag":553,"props":908,"children":909},{"style":583},[910],{"type":48,"value":393},{"type":42,"tag":553,"props":912,"children":913},{"style":560},[914],{"type":48,"value":591},{"type":42,"tag":553,"props":916,"children":917},{"style":560},[918],{"type":48,"value":596},{"type":42,"tag":553,"props":920,"children":921},{"style":560},[922],{"type":48,"value":679},{"type":42,"tag":553,"props":924,"children":925},{"style":560},[926],{"type":48,"value":591},{"type":42,"tag":553,"props":928,"children":929},{"style":604},[930],{"type":48,"value":931},"openalex",{"type":42,"tag":553,"props":933,"children":934},{"style":560},[935],{"type":48,"value":591},{"type":42,"tag":553,"props":937,"children":938},{"style":560},[939],{"type":48,"value":697},{"type":42,"tag":553,"props":941,"children":942},{"style":560},[943],{"type":48,"value":601},{"type":42,"tag":553,"props":945,"children":946},{"style":604},[947],{"type":48,"value":948},"arxiv",{"type":42,"tag":553,"props":950,"children":951},{"style":560},[952],{"type":48,"value":591},{"type":42,"tag":553,"props":954,"children":955},{"style":560},[956],{"type":48,"value":715},{"type":42,"tag":553,"props":958,"children":960},{"class":555,"line":959},12,[961,965,970,974,978,982,987],{"type":42,"tag":553,"props":962,"children":963},{"style":560},[964],{"type":48,"value":580},{"type":42,"tag":553,"props":966,"children":967},{"style":583},[968],{"type":48,"value":969},"retrieved_at",{"type":42,"tag":553,"props":971,"children":972},{"style":560},[973],{"type":48,"value":591},{"type":42,"tag":553,"props":975,"children":976},{"style":560},[977],{"type":48,"value":596},{"type":42,"tag":553,"props":979,"children":980},{"style":560},[981],{"type":48,"value":601},{"type":42,"tag":553,"props":983,"children":984},{"style":604},[985],{"type":48,"value":986},"2026-08-18T00:00:00+00:00",{"type":42,"tag":553,"props":988,"children":989},{"style":560},[990],{"type":48,"value":991},"\"\n",{"type":42,"tag":553,"props":993,"children":995},{"class":555,"line":994},13,[996],{"type":42,"tag":553,"props":997,"children":998},{"style":560},[999],{"type":48,"value":1000},"  }\n",{"type":42,"tag":553,"props":1002,"children":1004},{"class":555,"line":1003},14,[1005],{"type":42,"tag":553,"props":1006,"children":1007},{"style":560},[1008],{"type":48,"value":1009},"]\n",{"type":42,"tag":120,"props":1011,"children":1013},{"id":1012},"manifestjson",[1014],{"type":48,"value":465},{"type":42,"tag":542,"props":1016,"children":1018},{"className":544,"code":1017,"language":546,"meta":547,"style":547},"{\n  \"query\": \"large language model agents\",\n  \"slug\": \"1a2b3c4d\",\n  \"routing\": [{\"provider\": \"openalex\", \"reason\": \"综合主题检索\"}],\n  \"hits\": {\"openalex\": 20},\n  \"errors\": [{\"provider\": \"arxiv\", \"type\": \"rate_limited\", \"message\": \"HTTP 429\"}],\n  \"dedup\": {\"before\": 22, \"after\": 20},\n  \"executed_at\": \"2026-08-18T00:00:00+00:00\"\n}\n",[1019],{"type":42,"tag":83,"props":1020,"children":1021},{"__ignoreMap":547},[1022,1030,1068,1105,1199,1250,1372,1447,1479],{"type":42,"tag":553,"props":1023,"children":1024},{"class":555,"line":556},[1025],{"type":42,"tag":553,"props":1026,"children":1027},{"style":560},[1028],{"type":48,"value":1029},"{\n",{"type":42,"tag":553,"props":1031,"children":1032},{"class":555,"line":24},[1033,1038,1043,1047,1051,1055,1060,1064],{"type":42,"tag":553,"props":1034,"children":1035},{"style":560},[1036],{"type":48,"value":1037},"  \"",{"type":42,"tag":553,"props":1039,"children":1040},{"style":583},[1041],{"type":48,"value":1042},"query",{"type":42,"tag":553,"props":1044,"children":1045},{"style":560},[1046],{"type":48,"value":591},{"type":42,"tag":553,"props":1048,"children":1049},{"style":560},[1050],{"type":48,"value":596},{"type":42,"tag":553,"props":1052,"children":1053},{"style":560},[1054],{"type":48,"value":601},{"type":42,"tag":553,"props":1056,"children":1057},{"style":604},[1058],{"type":48,"value":1059},"large language model agents",{"type":42,"tag":553,"props":1061,"children":1062},{"style":560},[1063],{"type":48,"value":591},{"type":42,"tag":553,"props":1065,"children":1066},{"style":560},[1067],{"type":48,"value":616},{"type":42,"tag":553,"props":1069,"children":1070},{"class":555,"line":574},[1071,1075,1080,1084,1088,1092,1097,1101],{"type":42,"tag":553,"props":1072,"children":1073},{"style":560},[1074],{"type":48,"value":1037},{"type":42,"tag":553,"props":1076,"children":1077},{"style":583},[1078],{"type":48,"value":1079},"slug",{"type":42,"tag":553,"props":1081,"children":1082},{"style":560},[1083],{"type":48,"value":591},{"type":42,"tag":553,"props":1085,"children":1086},{"style":560},[1087],{"type":48,"value":596},{"type":42,"tag":553,"props":1089,"children":1090},{"style":560},[1091],{"type":48,"value":601},{"type":42,"tag":553,"props":1093,"children":1094},{"style":604},[1095],{"type":48,"value":1096},"1a2b3c4d",{"type":42,"tag":553,"props":1098,"children":1099},{"style":560},[1100],{"type":48,"value":591},{"type":42,"tag":553,"props":1102,"children":1103},{"style":560},[1104],{"type":48,"value":616},{"type":42,"tag":553,"props":1106,"children":1107},{"class":555,"line":619},[1108,1112,1117,1121,1125,1130,1134,1140,1144,1148,1152,1156,1160,1164,1168,1173,1177,1181,1185,1190,1194],{"type":42,"tag":553,"props":1109,"children":1110},{"style":560},[1111],{"type":48,"value":1037},{"type":42,"tag":553,"props":1113,"children":1114},{"style":583},[1115],{"type":48,"value":1116},"routing",{"type":42,"tag":553,"props":1118,"children":1119},{"style":560},[1120],{"type":48,"value":591},{"type":42,"tag":553,"props":1122,"children":1123},{"style":560},[1124],{"type":48,"value":596},{"type":42,"tag":553,"props":1126,"children":1127},{"style":560},[1128],{"type":48,"value":1129}," [{",{"type":42,"tag":553,"props":1131,"children":1132},{"style":560},[1133],{"type":48,"value":591},{"type":42,"tag":553,"props":1135,"children":1137},{"style":1136},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1138],{"type":48,"value":1139},"provider",{"type":42,"tag":553,"props":1141,"children":1142},{"style":560},[1143],{"type":48,"value":591},{"type":42,"tag":553,"props":1145,"children":1146},{"style":560},[1147],{"type":48,"value":596},{"type":42,"tag":553,"props":1149,"children":1150},{"style":560},[1151],{"type":48,"value":601},{"type":42,"tag":553,"props":1153,"children":1154},{"style":604},[1155],{"type":48,"value":931},{"type":42,"tag":553,"props":1157,"children":1158},{"style":560},[1159],{"type":48,"value":591},{"type":42,"tag":553,"props":1161,"children":1162},{"style":560},[1163],{"type":48,"value":697},{"type":42,"tag":553,"props":1165,"children":1166},{"style":560},[1167],{"type":48,"value":601},{"type":42,"tag":553,"props":1169,"children":1170},{"style":1136},[1171],{"type":48,"value":1172},"reason",{"type":42,"tag":553,"props":1174,"children":1175},{"style":560},[1176],{"type":48,"value":591},{"type":42,"tag":553,"props":1178,"children":1179},{"style":560},[1180],{"type":48,"value":596},{"type":42,"tag":553,"props":1182,"children":1183},{"style":560},[1184],{"type":48,"value":601},{"type":42,"tag":553,"props":1186,"children":1187},{"style":604},[1188],{"type":48,"value":1189},"综合主题检索",{"type":42,"tag":553,"props":1191,"children":1192},{"style":560},[1193],{"type":48,"value":591},{"type":42,"tag":553,"props":1195,"children":1196},{"style":560},[1197],{"type":48,"value":1198},"}],\n",{"type":42,"tag":553,"props":1200,"children":1201},{"class":555,"line":20},[1202,1206,1211,1215,1219,1224,1228,1232,1236,1240,1245],{"type":42,"tag":553,"props":1203,"children":1204},{"style":560},[1205],{"type":48,"value":1037},{"type":42,"tag":553,"props":1207,"children":1208},{"style":583},[1209],{"type":48,"value":1210},"hits",{"type":42,"tag":553,"props":1212,"children":1213},{"style":560},[1214],{"type":48,"value":591},{"type":42,"tag":553,"props":1216,"children":1217},{"style":560},[1218],{"type":48,"value":596},{"type":42,"tag":553,"props":1220,"children":1221},{"style":560},[1222],{"type":48,"value":1223}," {",{"type":42,"tag":553,"props":1225,"children":1226},{"style":560},[1227],{"type":48,"value":591},{"type":42,"tag":553,"props":1229,"children":1230},{"style":1136},[1231],{"type":48,"value":931},{"type":42,"tag":553,"props":1233,"children":1234},{"style":560},[1235],{"type":48,"value":591},{"type":42,"tag":553,"props":1237,"children":1238},{"style":560},[1239],{"type":48,"value":596},{"type":42,"tag":553,"props":1241,"children":1242},{"style":739},[1243],{"type":48,"value":1244}," 20",{"type":42,"tag":553,"props":1246,"children":1247},{"style":560},[1248],{"type":48,"value":1249},"},\n",{"type":42,"tag":553,"props":1251,"children":1252},{"class":555,"line":718},[1253,1257,1261,1265,1269,1273,1277,1281,1285,1289,1293,1297,1301,1305,1309,1314,1318,1322,1326,1330,1334,1338,1342,1347,1351,1355,1359,1364,1368],{"type":42,"tag":553,"props":1254,"children":1255},{"style":560},[1256],{"type":48,"value":1037},{"type":42,"tag":553,"props":1258,"children":1259},{"style":583},[1260],{"type":48,"value":314},{"type":42,"tag":553,"props":1262,"children":1263},{"style":560},[1264],{"type":48,"value":591},{"type":42,"tag":553,"props":1266,"children":1267},{"style":560},[1268],{"type":48,"value":596},{"type":42,"tag":553,"props":1270,"children":1271},{"style":560},[1272],{"type":48,"value":1129},{"type":42,"tag":553,"props":1274,"children":1275},{"style":560},[1276],{"type":48,"value":591},{"type":42,"tag":553,"props":1278,"children":1279},{"style":1136},[1280],{"type":48,"value":1139},{"type":42,"tag":553,"props":1282,"children":1283},{"style":560},[1284],{"type":48,"value":591},{"type":42,"tag":553,"props":1286,"children":1287},{"style":560},[1288],{"type":48,"value":596},{"type":42,"tag":553,"props":1290,"children":1291},{"style":560},[1292],{"type":48,"value":601},{"type":42,"tag":553,"props":1294,"children":1295},{"style":604},[1296],{"type":48,"value":948},{"type":42,"tag":553,"props":1298,"children":1299},{"style":560},[1300],{"type":48,"value":591},{"type":42,"tag":553,"props":1302,"children":1303},{"style":560},[1304],{"type":48,"value":697},{"type":42,"tag":553,"props":1306,"children":1307},{"style":560},[1308],{"type":48,"value":601},{"type":42,"tag":553,"props":1310,"children":1311},{"style":1136},[1312],{"type":48,"value":1313},"type",{"type":42,"tag":553,"props":1315,"children":1316},{"style":560},[1317],{"type":48,"value":591},{"type":42,"tag":553,"props":1319,"children":1320},{"style":560},[1321],{"type":48,"value":596},{"type":42,"tag":553,"props":1323,"children":1324},{"style":560},[1325],{"type":48,"value":601},{"type":42,"tag":553,"props":1327,"children":1328},{"style":604},[1329],{"type":48,"value":330},{"type":42,"tag":553,"props":1331,"children":1332},{"style":560},[1333],{"type":48,"value":591},{"type":42,"tag":553,"props":1335,"children":1336},{"style":560},[1337],{"type":48,"value":697},{"type":42,"tag":553,"props":1339,"children":1340},{"style":560},[1341],{"type":48,"value":601},{"type":42,"tag":553,"props":1343,"children":1344},{"style":1136},[1345],{"type":48,"value":1346},"message",{"type":42,"tag":553,"props":1348,"children":1349},{"style":560},[1350],{"type":48,"value":591},{"type":42,"tag":553,"props":1352,"children":1353},{"style":560},[1354],{"type":48,"value":596},{"type":42,"tag":553,"props":1356,"children":1357},{"style":560},[1358],{"type":48,"value":601},{"type":42,"tag":553,"props":1360,"children":1361},{"style":604},[1362],{"type":48,"value":1363},"HTTP 429",{"type":42,"tag":553,"props":1365,"children":1366},{"style":560},[1367],{"type":48,"value":591},{"type":42,"tag":553,"props":1369,"children":1370},{"style":560},[1371],{"type":48,"value":1198},{"type":42,"tag":553,"props":1373,"children":1374},{"class":555,"line":749},[1375,1379,1384,1388,1392,1396,1400,1405,1409,1413,1418,1422,1426,1431,1435,1439,1443],{"type":42,"tag":553,"props":1376,"children":1377},{"style":560},[1378],{"type":48,"value":1037},{"type":42,"tag":553,"props":1380,"children":1381},{"style":583},[1382],{"type":48,"value":1383},"dedup",{"type":42,"tag":553,"props":1385,"children":1386},{"style":560},[1387],{"type":48,"value":591},{"type":42,"tag":553,"props":1389,"children":1390},{"style":560},[1391],{"type":48,"value":596},{"type":42,"tag":553,"props":1393,"children":1394},{"style":560},[1395],{"type":48,"value":1223},{"type":42,"tag":553,"props":1397,"children":1398},{"style":560},[1399],{"type":48,"value":591},{"type":42,"tag":553,"props":1401,"children":1402},{"style":1136},[1403],{"type":48,"value":1404},"before",{"type":42,"tag":553,"props":1406,"children":1407},{"style":560},[1408],{"type":48,"value":591},{"type":42,"tag":553,"props":1410,"children":1411},{"style":560},[1412],{"type":48,"value":596},{"type":42,"tag":553,"props":1414,"children":1415},{"style":739},[1416],{"type":48,"value":1417}," 22",{"type":42,"tag":553,"props":1419,"children":1420},{"style":560},[1421],{"type":48,"value":697},{"type":42,"tag":553,"props":1423,"children":1424},{"style":560},[1425],{"type":48,"value":601},{"type":42,"tag":553,"props":1427,"children":1428},{"style":1136},[1429],{"type":48,"value":1430},"after",{"type":42,"tag":553,"props":1432,"children":1433},{"style":560},[1434],{"type":48,"value":591},{"type":42,"tag":553,"props":1436,"children":1437},{"style":560},[1438],{"type":48,"value":596},{"type":42,"tag":553,"props":1440,"children":1441},{"style":739},[1442],{"type":48,"value":1244},{"type":42,"tag":553,"props":1444,"children":1445},{"style":560},[1446],{"type":48,"value":1249},{"type":42,"tag":553,"props":1448,"children":1449},{"class":555,"line":787},[1450,1454,1459,1463,1467,1471,1475],{"type":42,"tag":553,"props":1451,"children":1452},{"style":560},[1453],{"type":48,"value":1037},{"type":42,"tag":553,"props":1455,"children":1456},{"style":583},[1457],{"type":48,"value":1458},"executed_at",{"type":42,"tag":553,"props":1460,"children":1461},{"style":560},[1462],{"type":48,"value":591},{"type":42,"tag":553,"props":1464,"children":1465},{"style":560},[1466],{"type":48,"value":596},{"type":42,"tag":553,"props":1468,"children":1469},{"style":560},[1470],{"type":48,"value":601},{"type":42,"tag":553,"props":1472,"children":1473},{"style":604},[1474],{"type":48,"value":986},{"type":42,"tag":553,"props":1476,"children":1477},{"style":560},[1478],{"type":48,"value":991},{"type":42,"tag":553,"props":1480,"children":1481},{"class":555,"line":825},[1482],{"type":42,"tag":553,"props":1483,"children":1484},{"style":560},[1485],{"type":48,"value":1486},"}\n",{"type":42,"tag":51,"props":1488,"children":1490},{"id":1489},"本技能不做什么",[1491],{"type":48,"value":1489},{"type":42,"tag":261,"props":1493,"children":1494},{},[1495,1500,1505,1510,1515],{"type":42,"tag":77,"props":1496,"children":1497},{},[1498],{"type":48,"value":1499},"不获取付费墙全文；abstract 之外的正文不可得时如实标注。",{"type":42,"tag":77,"props":1501,"children":1502},{},[1503],{"type":48,"value":1504},"不评价论文质量、不筛选「重要」文献（排序建议由 paper-search 给出，\n质量判断留给 literature-survey 与用户）。",{"type":42,"tag":77,"props":1506,"children":1507},{},[1508],{"type":48,"value":1509},"不在本技能内检索中文文献：CNKI \u002F 万方需求转交 cn-literature 技能处理。",{"type":42,"tag":77,"props":1511,"children":1512},{},[1513],{"type":48,"value":1514},"不把 provider 失败伪装成「检索结果为 0」。",{"type":42,"tag":77,"props":1516,"children":1517},{},[1518],{"type":48,"value":1519},"不做综述分析与成文（交给 literature-survey \u002F review-writing）。",{"type":42,"tag":51,"props":1521,"children":1523},{"id":1522},"收尾与下一步",[1524],{"type":48,"value":1522},{"type":42,"tag":73,"props":1526,"children":1527},{},[1528,1533,1545,1550],{"type":42,"tag":77,"props":1529,"children":1530},{},[1531],{"type":48,"value":1532},"汇总：各源命中数、去重后数量、失败源及原因，5 行内说明。",{"type":42,"tag":77,"props":1534,"children":1535},{},[1536,1538,1544],{"type":48,"value":1537},"指向 ",{"type":42,"tag":83,"props":1539,"children":1541},{"className":1540},[],[1542],{"type":48,"value":1543},"output\u002Fliterature-search\u002F\u003Cslug>\u002Flatest\u002Fpapers.json",{"type":48,"value":276},{"type":42,"tag":77,"props":1546,"children":1547},{},[1548],{"type":48,"value":1549},"建议下一步：运行 literature-survey 做证据提取与全局分析；\n或调整 query 重新检索（换关键词、换 provider、调 limit）。",{"type":42,"tag":77,"props":1551,"children":1552},{},[1553],{"type":48,"value":1554},"若全部 provider 均失败，明确告知「本次检索整体失败」，\n不产出空 papers.json 冒充成功。",{"type":42,"tag":1556,"props":1557,"children":1558},"style",{},[1559],{"type":48,"value":1560},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1562,"total":1763},[1563,1587,1603,1622,1637,1657,1675,1693,1708,1724,1743,1753],{"slug":1564,"name":1564,"fn":1565,"description":1566,"org":1567,"tags":1568,"stars":1584,"repoUrl":1585,"updatedAt":1586},"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},[1569,1572,1575,1578,1581],{"name":1570,"slug":1571,"type":16},"Accessibility","accessibility",{"name":1573,"slug":1574,"type":16},"Android","android",{"name":1576,"slug":1577,"type":16},"Kotlin","kotlin",{"name":1579,"slug":1580,"type":16},"Mobile","mobile",{"name":1582,"slug":1583,"type":16},"UI Components","ui-components",13030,"https:\u002F\u002Fgithub.com\u002FMiniMax-AI\u002Fskills","2026-07-13T06:16:54.247834",{"slug":1588,"name":1588,"fn":1589,"description":1590,"org":1591,"tags":1592,"stars":1584,"repoUrl":1585,"updatedAt":1602},"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},[1593,1596,1599],{"name":1594,"slug":1595,"type":16},"Agents","agents",{"name":1597,"slug":1598,"type":16},"Audio","audio",{"name":1600,"slug":1601,"type":16},"Creative","creative","2026-07-13T06:16:35.130644",{"slug":1604,"name":1604,"fn":1605,"description":1606,"org":1607,"tags":1608,"stars":1584,"repoUrl":1585,"updatedAt":1621},"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},[1609,1612,1615,1618],{"name":1610,"slug":1611,"type":16},"Design","design",{"name":1613,"slug":1614,"type":16},"Presentations","presentations",{"name":1616,"slug":1617,"type":16},"Themes","themes",{"name":1619,"slug":1620,"type":16},"Typography","typography","2026-07-13T06:17:02.785587",{"slug":1623,"name":1623,"fn":1624,"description":1625,"org":1626,"tags":1627,"stars":1584,"repoUrl":1585,"updatedAt":1636},"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},[1628,1629,1632,1635],{"name":1610,"slug":1611,"type":16},{"name":1630,"slug":1631,"type":16},"Design System","design-system",{"name":1633,"slug":1634,"type":16},"PowerPoint","powerpoint",{"name":1613,"slug":1614,"type":16},"2026-07-13T06:17:10.398389",{"slug":1638,"name":1638,"fn":1639,"description":1640,"org":1641,"tags":1642,"stars":1584,"repoUrl":1585,"updatedAt":1656},"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},[1643,1646,1649,1650,1653],{"name":1644,"slug":1645,"type":16},"Dart","dart",{"name":1647,"slug":1648,"type":16},"Flutter","flutter",{"name":1579,"slug":1580,"type":16},{"name":1651,"slug":1652,"type":16},"Performance","performance",{"name":1654,"slug":1655,"type":16},"State Management","state-management","2026-07-13T06:16:36.626679",{"slug":1658,"name":1658,"fn":1659,"description":1660,"org":1661,"tags":1662,"stars":1584,"repoUrl":1585,"updatedAt":1674},"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},[1663,1666,1667,1668,1671],{"name":1664,"slug":1665,"type":16},"Animation","animation",{"name":1600,"slug":1601,"type":16},{"name":1610,"slug":1611,"type":16},{"name":1669,"slug":1670,"type":16},"Frontend","frontend",{"name":1672,"slug":1673,"type":16},"Web Development","web-development","2026-07-13T06:16:39.108827",{"slug":1676,"name":1676,"fn":1677,"description":1678,"org":1679,"tags":1680,"stars":1584,"repoUrl":1585,"updatedAt":1692},"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},[1681,1684,1685,1688,1691],{"name":1682,"slug":1683,"type":16},"Backend","backend",{"name":1669,"slug":1670,"type":16},{"name":1686,"slug":1687,"type":16},"Full-stack","full-stack",{"name":1689,"slug":1690,"type":16},"REST API","rest-api",{"name":1672,"slug":1673,"type":16},"2026-07-13T06:16:43.219005",{"slug":1694,"name":1694,"fn":1695,"description":1696,"org":1697,"tags":1698,"stars":1584,"repoUrl":1585,"updatedAt":1707},"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},[1699,1700,1701,1704],{"name":1664,"slug":1665,"type":16},{"name":1600,"slug":1601,"type":16},{"name":1702,"slug":1703,"type":16},"Images","images",{"name":1705,"slug":1706,"type":16},"Media","media","2026-07-13T06:16:51.74461",{"slug":1709,"name":1709,"fn":1710,"description":1711,"org":1712,"tags":1713,"stars":1584,"repoUrl":1585,"updatedAt":1723},"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},[1714,1715,1718,1719,1722],{"name":1570,"slug":1571,"type":16},{"name":1716,"slug":1717,"type":16},"iOS","ios",{"name":1579,"slug":1580,"type":16},{"name":1720,"slug":1721,"type":16},"SwiftUI","swiftui",{"name":1582,"slug":1583,"type":16},"2026-07-13T06:16:55.686092",{"slug":1725,"name":1725,"fn":1726,"description":1727,"org":1728,"tags":1729,"stars":1584,"repoUrl":1585,"updatedAt":1742},"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},[1730,1733,1736,1739],{"name":1731,"slug":1732,"type":16},"Documents","documents",{"name":1734,"slug":1735,"type":16},"DOCX","docx",{"name":1737,"slug":1738,"type":16},"Office","office",{"name":1740,"slug":1741,"type":16},"Templates","templates","2026-07-13T06:16:40.461868",{"slug":1744,"name":1744,"fn":1745,"description":1746,"org":1747,"tags":1748,"stars":1584,"repoUrl":1585,"updatedAt":1752},"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},[1749,1750,1751],{"name":1597,"slug":1598,"type":16},{"name":1600,"slug":1601,"type":16},{"name":1705,"slug":1706,"type":16},"2026-07-13T06:16:50.381758",{"slug":1754,"name":1754,"fn":1755,"description":1756,"org":1757,"tags":1758,"stars":1584,"repoUrl":1585,"updatedAt":1762},"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},[1759,1760,1761],{"name":1597,"slug":1598,"type":16},{"name":1600,"slug":1601,"type":16},{"name":1705,"slug":1706,"type":16},"2026-07-13T06:16:57.002997",84,{"items":1765,"total":1864},[1766,1782,1799,1811,1823,1838,1852],{"slug":1767,"name":1767,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":20,"repoUrl":21,"updatedAt":1781},"article2tasks","convert articles into Dida365 tasks","将技术周报（批量）或单篇文章整理为滴答清单待办事项，自动分类到已有清单并打标签，全程通过 MCP 写入，跨平台无需任何本地脚本。当用户提供周报内容、文章链接，或提及「周报」「文章汇总」「添加到滴答」时，使用此技能。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1772,1775,1778],{"name":1773,"slug":1774,"type":16},"Content Creation","content-creation",{"name":1776,"slug":1777,"type":16},"MCP","mcp",{"name":1779,"slug":1780,"type":16},"Task Management","task-management","2026-08-18T03:49:38.751656",{"slug":1783,"name":1783,"fn":1784,"description":1785,"org":1786,"tags":1787,"stars":20,"repoUrl":21,"updatedAt":1798},"citation-verify","verify academic citation accuracy","当用户需要核验参考文献真实性、检查 BibTeX 条目是否有误、审查论文引用是否可靠、 排查 bibliography 中的错误条目、验证 DOI 与题录是否对得上、发现参考文献张冠李戴、 做投稿前引用体检或审稿引用抽查时使用。同义场景：参考文献核验、引用核查、 文献真伪鉴别、bib 文件检查、参考文献纠错、引用元数据比对、 \"帮我看看这些参考文献有没有问题\"\"这个 DOI 对得上吗\"\"有没有编造的引用\"。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1788,1791,1794,1797],{"name":1789,"slug":1790,"type":16},"Code Analysis","code-analysis",{"name":1792,"slug":1793,"type":16},"Documentation","documentation",{"name":1795,"slug":1796,"type":16},"QA","qa",{"name":14,"slug":15,"type":16},"2026-08-21T03:59:17.615117",{"slug":1800,"name":1800,"fn":1801,"description":1802,"org":1803,"tags":1804,"stars":20,"repoUrl":21,"updatedAt":1810},"claim-check","verify research claims against evidence","当需要检查论文草稿中的事实性论断是否有证据支撑、做引用-论断对齐审计、 找出没有出处的陈述、核对文内引用是否真能支撑所在句子时加载使用； 通常由 evidence-loop 或审稿类流程调用，不直接面向用户。同义场景： 论断支撑检查、claim 支撑审计、无支撑断言排查、证据覆盖检查、 引用与论断对齐、\"这段话有没有文献撑\"\"哪些说法没有引用\"。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1805,1808,1809],{"name":1806,"slug":1807,"type":16},"Audit","audit",{"name":1789,"slug":1790,"type":16},{"name":14,"slug":15,"type":16},"2026-08-21T03:59:02.154691",{"slug":1812,"name":1812,"fn":1813,"description":1814,"org":1815,"tags":1816,"stars":20,"repoUrl":21,"updatedAt":1822},"cn-literature","search and organize Chinese academic literature","当用户需要检索或整理中文文献（CNKI 知网、万方、维普、超星）、把中文数据库 导出的题录文件解析成统一 PaperDocument、或把中文文献与英文检索结果合并去重 时使用。同义场景：中文文献检索、知网导出题录解析、万方检索、Refworks\u002FEndNote 格式转换、\"帮我把这份 CNKI 导出的 txt 整理成文献表\"\"中文核心期刊上关于 X 有哪些研究\"。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1817,1820,1821],{"name":1818,"slug":1819,"type":16},"Data Cleaning","data-cleaning",{"name":1731,"slug":1732,"type":16},{"name":14,"slug":15,"type":16},"2026-08-21T03:59:12.24404",{"slug":1824,"name":1824,"fn":1825,"description":1826,"org":1827,"tags":1828,"stars":20,"repoUrl":21,"updatedAt":1837},"cold-start-interview","initialize research profiles via interviews","当用户首次使用科研工作台、研究画像仍为空白，或用户主动说\"先做个访谈\"\"重新设置我的研究信息\"\"初始化画像\"\"cold start\"\"重新 interview\"时使用。本技能通过结构化访谈收集用户的研究领域、常用数据源、算力环境、写作语言与目标期刊、引用格式、团队协作规范、伦理合规要求，并把回答以散文形式写回插件根目录 CLAUDE.md 的研究画像部分。支持 quick（2 分钟 5 问）、full（完整 15 问）、--redo（推翻重谈）、--check（只检查画像完整度不提问）四种模式，支持中断后续谈。同义触发场景：新用户引导、首次配置、研究背景调查、填研究档案、更新个人研究信息、check 画像。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1829,1830,1833,1836],{"name":1792,"slug":1793,"type":16},{"name":1831,"slug":1832,"type":16},"Onboarding","onboarding",{"name":1834,"slug":1835,"type":16},"Productivity","productivity",{"name":14,"slug":15,"type":16},"2026-08-21T03:59:58.579998",{"slug":1839,"name":1839,"fn":1840,"description":1841,"org":1842,"tags":1843,"stars":20,"repoUrl":21,"updatedAt":1851},"customize","customize research guardrails and settings","当用户想修改研究画像或共享守则（guardrails）时使用：换了研究领域、换了目标期刊、换了引用格式、换了算力环境、合规要求变化、想调整某条 guardrail 的严格程度。同义触发场景：改一下画像、更新我的研究信息、修改 CLAUDE.md、调整设置、换引用格式、customize、个性化配置、改规则、重新配置工作台。本技能是画像与守则的唯一维护入口：读取 CLAUDE.md、与用户逐项确认修改点、写回文件、并明确告知哪些 skill 的行为会因此变化。",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1844,1847,1850],{"name":1845,"slug":1846,"type":16},"Best Practices","best-practices",{"name":1848,"slug":1849,"type":16},"Configuration","configuration",{"name":14,"slug":15,"type":16},"2026-08-21T03:59:35.867596",{"slug":1853,"name":1853,"fn":1854,"description":1855,"org":1856,"tags":1857,"stars":20,"repoUrl":21,"updatedAt":1863},"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},[1858,1859,1862],{"name":1776,"slug":1777,"type":16},{"name":1860,"slug":1861,"type":16},"Scheduling","scheduling",{"name":1779,"slug":1780,"type":16},"2026-08-18T03:49:37.126385",36]