YouMind
概覽使用案例技能提示詞定價下載部落格更新

Bio/Med深度可靠研究

作者
李李振龙
安裝人數
9
分類學習
來源YouMind
編輯精選
N

精選自

Nico@YouMind

為什麼我們推薦這個技能

這項技能是生物醫學研究的可靠指南,透過結構化查詢、多階段文獻篩選和嚴謹的IF核查,確保提供高度準確且可驗證的科研資訊。

指令

這套流程的核心是:先用多query 在PubMed / NCBI E-utilities 做可複現初篩,再用PMID 去重和摘要證據分級;只有少量關鍵文獻進入PMC / BioC 全文複現;正文引用必須可點擊;文末必須列完整文獻資訊;IF 只能透過取信可存取權,不能將其保留使用保守結果

1. 使用者發起檢索後的預處理

1.1 先解析使用者問題

收到用戶問題後,先把自然語言問題拆成結構化要素。

必須識別:

• 研究對象:基因、蛋白、藥物、通道、細胞類型、組織、疾病、模型。

• 生物系統:人、小鼠、大鼠、斑馬魚、類器官、視網膜、腦區、細胞係等。

• 關係類型:表現、調控、功能、機制、表型、死亡、存活、治療、毒性、發育、退化等。

• 證據需求:是否需要直接證據、機制證據、全文證據、圖表、劑量參數、實驗方法。

• 時間範圍:不限時間、近5 年、近1 年、最新進展、經典文獻。

• 產出類型:簡答、代表文獻、綜述式總結、實驗設計建議、證據表、機製圖譜。

範例:

用戶問題:

“幫我找視網膜類器官死亡相關文獻。”

結構化拆解(例):

• 核心模式:retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid。

• 表型:cell death, apoptosis, degeneration, survival loss, stress, necrosis。

• 相關細胞:photoreceptor, cone, rod, retinal ganglion cell, Müller glia。

• 潛在機制:oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis。

• 證據目標:優先找直接在人源或動物源retinal organoid 中觀察到細胞死亡/凋亡/退化的原始研究;再找間接機製文獻。

1.2 關鍵字拆分原則(範例)

不要只寫一個檢索式。每個概念至少準備三類詞。

第一類:精確詞。

• retinal organoid

• retina organoid

• human retinal organoid

• hPSC-derived retinal organoid

• iPSC-derived retinal organoid

第二類:同義詞和上位詞。

• optic cup organoid

• 3D retinal culture

• stem cell-derived retina

• retinal differentiation

• retinal tissue model

第三類:機制和表型詞。

• apoptosis

• cell death

• degeneration

• survival

• stress

• oxidative stress

• ER stress

• mitochondrial dysfunction

• hypoxia

• necroptosis

• ferroptosis

如果使用者限定細胞類型,加入:

• photoreceptor

• cone

• rod

• retinal ganglion cell

• Müller glia

• bipolar cell

• amacrine cell

如果使用者限定物種或來源,加入:

• human

• mouse

• rat

• zebrafish

• hESC

• iPSC

• pluripotent stem cell

1.3 產生分層檢索式

至少生成3–6 組query。每組query 對應一個檢索目的。

第一層:直接證據檢索。

用於找出目標模型+ 目標表型直接命中的文獻。

```text

("retinal organoid" OR "retina organoid" OR "human retinal organoid") AND (apoptosis OR "cell death" OR degeneration)

```

第二層:擴充模型檢索。

用於捕捉作者沒有使用retinal organoid 精確詞但實際相關的文獻。

```text

("optic cup organoid" OR "3D retinal culture" OR "stem cell-derived retina") AND (survival OR apoptosis OR stress)

```

第三層:機制專項檢索。

用於驗證具體通路或機制。

```text

("retinal organoid" OR "retina organoid") AND ("oxidative stress" OR "ER stress" OR hypoxia OR mitochondria)

```

第四層:細胞類型專項檢索。

```text

("retinal organoid" OR "retina organoid") AND (photoreceptor OR cone OR rod OR "retinal ganglion cell") AND (death OR apoptosis OR degeneration)

```

第五層:疾病模型檢索。

```text

("retinal organoid" OR "retina organoid") AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)

```

第六層:綜述/背景檢索。

```text

("retinal organoid" OR "retina organoid") AND (review OR protocol OR model)

```

研究

2. 使用什麼方法、在什麼網站檢索

2.1 首選:PubMed / NCBI E-utilities

PubMed 是生物醫學文獻檢索首選。不要預設抓PubMed 網頁。應使用NCBI E-utilities API。

2.1.1 ESearch:用query 取得PMID

接口:

```text

https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi

```

參數:

```text

db=pubmed

term=<檢索式>

retmode=json

retmax=20

sort=relevance

```

也可依時間排序:

```text

sort=pub+date

```

範例:

```text

https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&term=(%22retinal%20organoid%22%20OR%20 %22retina%20organoid%22)%20AND%20(apoptosis%20OR%20%22cell%20death%22)&retmode=json&retmax=20&sort=relevance

```

返回中讀取:

```text

esearchresult.idlist

```

這就是PMID 清單。

2.1.2 ESummary:取得文獻metadata

接口:

```text

https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi

```

參數:

```text

db=pubmed

id=PMID1,PMID2,PMID3

retmode=json

```

提取字段:

• PMID

• title

• fulljournalname

• source / journal abbreviation

• pubdate

• authors

• articleids 中的DOI、PMCID

• volume、issue、pages

2.1.3 EFetch:取得摘要和XML 細節

接口:

```text

https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi

```

參數:

```text

db=pubmed

id=PMID1,PMID2

retmode=xml

rettype=abstract

```

提取字段:

• ArticleTitle

• AbstractText

• Journal Title

• ISOAbbreviation

• ISSN / eISSN

• PubDate

• DOI

• PMCID

• MeSH terms

2.1.4 批次檢索策略

推薦流程:

1. 對每個query 呼叫ESearch。

2. 每個query 取前5–20 篇。

3. 合併所有PMID。

4. 按PMID 去重。

5. 用ESummary / EFetch 批次取得metadata 和abstract。

6. 初篩階段只讀metadata + abstract,不要一開始抓全文。

────────────────

2.2 第二階段:PMC / BioC 全文複核

只有以下情況才會進入全文:

• 使用者要求精讀全文。

• 摘要不足以判斷機制。

• 需要圖表、實驗方法、濃度、劑量、IC50、EC50、Kd、Ki。

• 已篩選出少量關鍵PMID,需要逐篇機制複核。

2.2.1 PMID 轉PMCID

接口:

```text

https://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=&format=json

```

如果傳回PMCID,說明可能有PMC 開放全文。

2.2.2 優先BioC JSON

接口:

```text

https://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json//unicode

```

優點:結構化程度高,適合抽取正文段落。

2.2.3 BioC 不可用時嘗試PMC XML

接口:

```text

https://www.ncbi.nlm.nih.gov/pmc/articles//?report=xml

```

抽取正文時跳過:

• references

• bibliography

• acknowledgements

• author contributions

• competing interests

全文複審必須設定停止判據:

• 每篇文獻只掃描一次。

• 預設只抽取與問題相關的段落。

• 若未命中目標字段,標註「未見直接證據」。

• 不要無限換關鍵字重複抓取。

────────────────

2.3 bioRxiv / medRxiv

用於補充最新預印本。

可以使用官方API:

```text

https://api.biorxiv.org/details/biorxiv/YYYY-MM-DD/YYYY-MM-DD

https://api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD

```

也可用普通搜尋作為補充:

```text

site:biorxiv.org retinal organoid apoptosis

site:medrxiv.org retina organoid degeneration

```

預印本必須標註:

```text

預印本,未經同儕評審。

```

────────────────

2.4 Crossref / OpenAlex / Unpaywall

用於補全DOI、開放全文地址、出版資訊。

Crossref:

```text

https://api.crossref.org/works?query.title=</p><p> ```</p><p> OpenAlex:</p><p> ```text</p><p> https://api.openalex.org/works?search=<title or topic></p><p> ```</p><p> Unpaywall:</p><p> ```text</p><p> https://api.unpaywall.org/v2/<DOI>?email=<your_email></p><p> ```</p><p>用途:</p><p> • DOI 補全。</p><p> • OA PDF 連結查找。</p><p> • 期刊名核驗。</p><p> • 出版年份核驗。</p><p> ────────────────</p><p> 2.5 出版商頁面</p><p>只有在API 資訊不足時才造訪出版商頁面。</p><p>訪問規則:</p><p> • 每個出版商URL 只嘗試一次。</p><p> • 遇到驗證碼、登入牆、Cloudflare、Access Denied、機構權限牆,立即停止。</p><p> • 不要重複刷新、換同站路徑、循環等待。</p><p> • 改用PubMed、PMC、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-microscope" aria-hidden="true"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg>研究</div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>3. 檢索後如何整理訊息</p><p>3.1 建立統一記錄結構</p><p>每篇文獻整理成統一record。</p><p>字段:</p><p> ```text</p><p> pmid</p><p> doi</p><p> pmcid</p><p> title</p><p> authors</p><p> journal</p><p> journal_abbrev</p><p> issn</p><p> eissn</p><p> year</p><p> abstract</p><p> query_source</p><p> evidence_level</p><p> evidence_tags</p><p> paper_type</p><p> url</p><p> ```</p><p> 3.2 去重</p><p>優先:</p><p> 1. PMID 去重。</p><p> 2. 沒有PMID 時用DOI 去重。</p><p> 3. 沒有DOI 時用lower(title) + year + first_author 去重。</p><p>保留第一次命中的query_source,同時記錄該文獻被哪些query 命中。</p><p> 3.3 證據分級</p><p>必須區分:</p><p>直接證據:</p><p>目標物種、組織、細胞類型、模型、處理條件直接命中。</p><p>間接證據:</p><p>相鄰系統、相似模型、相近機制支持,但不是使用者問題的直接系統。</p><p>未見直接證據:</p><p>只能找到背景、推測、綜述或相鄰模型,沒有直接實驗結果。</p><p> 3.4 文獻類型標註</p><p>至少標註:</p><p> • original research</p><p> • review</p><p> • protocol</p><p> • preprint</p><p> • dataset/resource</p><p> • clinical study</p><p> •method paper</p><p> 3.5 排序規則</p><p>推薦排序:</p><p> 1. 直接證據原始研究。</p><p> 2. 關鍵機制研究。</p><p> 3. 最新重要研究。</p><p> 4. 經典奠基研究。</p><p> 5. 高品質綜述。</p><p> 6. 間接證據。</p><p>不要只按IF 排序。 IF 是期刊層面指標,不等於單一文獻品質。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-pen-tool" aria-hidden="true"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg>寫作</div><div class="flex h-[32px] items-center gap-1 px-2 rounded-[20px] min-w-0 max-md:w-[32px] max-md:justify-center max-md:px-0" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_mecainpfivabtkqivb_" data-state="closed" disabled=""><div class="flex-shrink-0"><div class="overflow-hidden bg-cover bg-center bg-no-repeat" style="background-image:url(https://cdn.gooo.ai/assets/select_model_claude.png);width:16px;height:16px;border-radius:8px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-sm font-normal px-[1px] truncate min-w-0 text-foreground max-md:hidden">Claude Sonnet 4.5</span></div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>4. 回覆中如何組織引用</p><p>4.1 正文引用格式</p><p>正文引用必須可點選。</p><p>格式:</p><p> ```markdown</p><p> [[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p> ```</p><p>範例:</p><p> ```markdown</p><p>已有研究在人源retinal organoids 中觀察到發育階段相關的光感受器壓力和退化現象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。</p><p> ```</p><p>不要寫成:</p><p> ```text</p><p> [1]</p><p> (PMID: xxxxx)</p><p>見文獻1</p><p> ```</p><p> 4.2 推薦回答結構</p><p>第一段:直接結論。</p><p> ```text</p><p>結論:已有相關報導,但直接證據主要集中在……;關於……仍缺乏直接證據。</p><p> ```</p><p>第二段:證據分級。</p><p> ```text</p><p>直接證據:</p><p> - 文獻A:…</p><p></p><p>間接證據:</p><p> - 文獻B:…</p><p></p><p>未見直接證據:</p><p> - 本輪找不到…</p><p> ```</p><p>第三段:機制歸納。</p><p>按主題分組,例如:</p><p> • apoptosis / caspase pathway</p><p> • oxidative stress</p><p> • mitochondrial dysfunction</p><p> • ER stress</p><p> • hypoxia / metabolic stress</p><p> • inflammation</p><p> • developmental mismatch</p><p>第四段:研究空白。</p><p>明確說明哪些問題沒有直接證據。</p><p>第五段:實驗啟發。</p><p>如果使用者需要實驗設計,給予marker、assay、time point、control。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-pen-tool" aria-hidden="true"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg>寫作</div><div class="flex h-[32px] items-center gap-1 px-2 rounded-[20px] min-w-0 max-md:w-[32px] max-md:justify-center max-md:px-0" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_micainpfivabtkqivb_" data-state="closed" disabled=""><div class="flex-shrink-0"><div class="overflow-hidden bg-cover bg-center bg-no-repeat" style="background-image:url(https://cdn.gooo.ai/assets/select_model_claude.png);width:16px;height:16px;border-radius:8px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-sm font-normal px-[1px] truncate min-w-0 text-foreground max-md:hidden">Claude Sonnet 4.5</span></div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>5. 文末完整文獻資訊列表</p><p>只要正文引用具體文獻,文末必須附上完整列表。</p><p>格式:</p><p> ```markdown</p><p> ## 完整文獻資訊列表</p><p></p><p>1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*</p><p> 2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核驗}*</p><p> ```</p><p>作者格式:</p><p> • 1–3 位作者:列出全部。</p><p> • 超過3 位:第一作者et al.</p><p> PMID / DOI / URL 必須可點選。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-microscope" aria-hidden="true"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg>研究</div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>6. IF 核查與標註</p><p>6.1 先說明IF 核查的現實限制</p><p>正常情況下,官方Journal Impact Factor 來自Clarivate Journal Citation Reports(JCR)。但任意外部Agent 通常沒有Clarivate/JCR 帳號,也沒有本地JCR 表,所以不要經過這個路徑核查。</p><p> ```</p><p> 6.2 IF skill 的實際方法</p><p>主要路線:</p><p> 1. 如果輸入是PMID,先用NCBI E-utilities 取得PubMed metadata。</p><p> - 取得FullJournalName。 - 取得Source / ISO abbreviation。 - 取得ISSN / eISSN。 - 取得標題、年份、DOI 等輔助欄位。</p><p> 2. 用公開的iikx / 愛科學行動端JSON 介面查詢期刊。</p><p>搜尋介面:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p>詳情接口:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p> 3. 對搜尋結果做保守配對。</p><p> - 優先exact normalized journal title match。 - 其次exact abbreviation match。 - 對短詞和寬泛詞非常謹慎。 - 不接受明顯substring 誤配,例如Nature 被誤配成Nature Reviews 系列。 - 如果匹配不穩,返回ambiguous / 不_found,而不是猜。</p><p> 4. 如果PubMed 給的是縮寫,嘗試用NLM Catalog 擴展為全名或alternate title。</p><p> NLM Catalog 搜尋介面仍然是NCBI E-utilities:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog&term=<abbr>[Title Abbreviation]&retmode=xml&retmax=1</p><p> ```</p><p>然後用ESummary 取Title / TitleAlternate。</p><p> 5. 從iikx detail 結果中讀取:</p><p> - impact factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分區,如果有。 - source URL。 - match confidence。</p><p> 6. 標註時不把IF 年份寫進正文緊湊標註。</p><p>最終標註只寫:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p>如果失敗:</p><p> ```text</p><p> *{IF=待核驗}*</p><p> ```</p><p>或:</p><p> ```text</p><p> *{IF=未檢出}*</p><p> ```</p><p> 6.3 具體步驟</p><p>對每篇文獻執行以下流程。</p><p>第一步:準備期刊查詢名稱。</p><p>優先從PubMed metadata 取:</p><p> ```text</p><p> FullJournalName</p><p> ISOAbbreviation / Source</p><p> ISSN</p><p> eISSN</p><p> ```</p><p>如果只有DOI,則先用Crossref 或OpenAlex 取期刊名。</p><p> Crossref:</p><p> ```text</p><p> https://api.crossref.org/works/<DOI></p><p> ```</p><p> OpenAlex:</p><p> ```text</p><p> https://api.openalex.org/works/https://doi.org/<DOI></p><p> ```</p><p>第二步:規範化期刊名。</p><p>規範化規則:</p><p> • 全部小寫。</p><p> • HTML unescape。</p><p> • 將& 替換為and。</p><p> • 去除標點。</p><p> • 多個空格合併。</p><p> • 比較時可同時使用compact 形式,即去除所有空格。</p><p>範例偽代碼:</p><p> 『`python</p><p> import re, html</p><p></p><p> def norm(s):</p><p> s = html.unescape(s or '').lower()</p><p> s = re.sub(r'&', ' 和 ', s)</p><p> s = re.sub(r'[^a-z0-9]+', ' ', s)</p><p> return re.sub(r'\s+', ' ', s).strip()</p><p></p><p> def compact(s):</p><p> return norm(s).replace(' ', '')</p><p> ```</p><p>第三步:查詢iikx 搜尋介面。</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p>建議設定User-Agent,例如:</p><p> ```text</p><p> Mozilla/5.0</p><p> ```</p><p>如果第一頁沒找到exact match,可以有限翻頁,例如最多8 頁。</p><p>翻頁參數通常為:</p><p> ```text</p><p> page=2</p><p> page=3</p><p> ```</p><p>第四步:從搜尋結果中選候選。</p><p>候選欄位通常包括:</p><p> ```text</p><p> id</p><p> classid</p><p> title</p><p> smalltitle</p><p> IF 或IF2024</p><p> zky2020</p><p> url</p><p> ```</p><p>匹配規則:</p><p> • 如果compact(query) == compact(candidate.title),接受。</p><p> • 如果norm(query) == norm(candidate.title),接受。</p><p> • 如果compact(query) == compact(candidate.smalltitle),接受。</p><p> • 如果norm(query) == norm(candidate.smalltitle),接受。</p><p> • 如果只是substring,不要直接接受,除非query 夠長且無歧義。</p><p> • 對Nature、Science、Cell、Brain、Vision、Retina 等短字尤其謹慎。</p><p>第五步:如果沒有匹配,用NLM Catalog 擴充縮寫。</p><p>例如PubMed 裡Source 是:</p><p> ```text</p><p> Free Radic Biol Med</p><p> ```</p><p>可以查:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog&term=Free%20Radic%20Biol%20Med%5BTitle%20Abbreviation%5D&retmode=xml&retmax=1%5BTitle%20Abbreviation%5D&retmode=xml&retmax=1</p><p> ```</p><p>拿到NLM Catalog ID 後,再用:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=nlmcatalog&id=<id>&retmode=xml</p><p> ```</p><p>讀取:</p><p> ```text</p><p> Title</p><p> TitleAlternate</p><p> ```</p><p>然後用這些全名再查iikx。</p><p>第六步:查iikx 詳情介面。</p><p>如果搜尋結果裡有:</p><p> ```text</p><p> id=<id></p><p> classid=<classid></p><p> ```</p><p>調用:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p>從detail 讀取:</p><p> ```text</p><p> IF2024, IF2023, IF2022 ...</p><p> IF</p><p> zky2020 或其他JCR quartile 字段</p><p>jcr22 / jcr12 或分區字段</p><p>issn</p><p> eissn</p><p> title</p><p> smalltitle</p><p> category</p><p> ```</p><p>第七步:選擇最新IF。</p><p>在返回欄位中尋找所有形如:</p><p> ```text</p><p> IF20xx</p><p> ```</p><p>例如:</p><p> ```text</p><p> IF2024</p><p> IF2023</p><p> IF2022</p><p> ```</p><p>選年份最大的有效數字。</p><p>如果沒有IF20xx,則嘗試讀取:</p><p> ```text</p><p> IF</p><p> if_value</p><p> ```</p><p>如果沒有有效值,則標為未檢出。</p><p>第八步:輸出置信度和標註。</p><p>如果exact title / abbreviation 命中,且detail 回傳有效IF:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p>如果匹配不確定:</p><p> ```text</p><p> *{IF=待核驗}*</p><p> ```</p><p>如果公開接口沒有結果:</p><p> ```text</p><p> *{IF=未檢出}*</p><p> ```</p><p> 6.4 IF 標註格式</p><p>固定格式:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p>範例:</p><p> ```markdown</p><p> Smith J et al., **Neuron** (2020), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=15.0,Q1}*</p><p> ```</p><p>注意:</p><p> • IF 標註內部不寫JCR 年份。</p><p> • 不寫「2024 JCR IF」。</p><p> • 不寫「JCR 2024」。</p><p> • 年份只保留在文獻發表年份處。</p><p> • 若IF 為0.0、空值、來源不穩、符合不穩,則不顯示數字。</p><p> 6.5 IF 核查失敗時的標準處理</p><p>不要猜。</p><p>不要用期刊名印象補數字。</p><p>不要用大模型記憶補IF。</p><p>失敗時只允許三種狀態:</p><p> ```text</p><p> *{IF=待核驗}*</p><p> ```</p><p>用於:</p><p> • 搜尋結果模糊。</p><p> • 有多個相似期刊。</p><p> • 只找到縮寫但無法確認全名。</p><p> • 公開來源傳回的IF 可疑。</p><p> ```text</p><p> *{IF=未檢出}*</p><p> ```</p><p>用於:</p><p> • 公開介面沒有結果。</p><p> • 期刊不在SCI / JCR 覆蓋範圍。</p><p> • 新刊暫無IF。</p><p> ```text</p><p> *{IF=不可公開核驗}*</p><p> ```</p><p>用於:</p><p> • 使用者要求必須官方JCR,但目前Agent 沒有Clarivate/JCR 權限。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-microscope" aria-hidden="true"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg>研究</div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>7. 最終回覆自檢清單</p><p>發出前必須檢查:</p><p> • 是否先回答使用者核心問題。</p><p> • 是否區分直接證據、間接證據、未見直接證據。</p><p> • 是否所有正文引用都可點選。</p><p> • 是否文末有完整文獻資訊列表。</p><p> • 是否每篇文獻都帶IF 標註或待核驗/未檢出標註。</p><p> • PMID/DOI/URL 是否可點選。</p><p> • 是否避免將整體組織結果偷換成特定細胞類型結論。</p><p> • 是否避免將活化/磷酸化偷換成總表現量升高。</p><p> • 是否標註預印本。</p><p> • 是否說明檢索邊界。</p><p> • IF 沒有憑記憶猜測。</p></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>8. 可復現偽代碼</p><p>『`python</p><p> queries = build_queries(user_question)</p><p></p><p> all_pmids = []</p><p> for query in queries:</p><p> pmids = ncbi_esearch(query, retmax=20, sort='relevance')</p><p> all_pmids.extend(pmids)</p><p></p><p> pmids = deduplicate_keep_order(all_pmids)</p><p></p><p> metadata = ncbi_esummary(pmids)</p><p> abstracts = ncbi_efetch_abstract(pmids)</p><p></p><p> records = merge_metadata_and_abstracts(metadata, abstracts)</p><p> records = tag_evidence(records, user_question)</p><p> records = rank_records(records)</p><p> selected = select_top_records(records)</p><p></p><p> if need_fulltext:</p><p> for record in selected_key_records:</p><p> pmcid = idconv_pmid_to_pmcid(record.pmid)</p><p> if pmcid:</p><p> record.fulltext = fetch_bioc_or_pmc_xml(pmcid)</p><p></p><p> for record in selected:</p><p> journal_query = record.full_journal_name 或 record.journal_abbrev</p><p> if_result = lookup_if_public_iikx(journal_query)</p><p> if if_result.confident:</p><p> record.if_annotation = f'*{IF={if_result.if_value},{if_result.quartile}}*'</p><p> elif if_result.ambiguous:</p><p> record.if_annotation = '*{IF=待核驗}*'</p><p> else:</p><p> record.if_annotation = '*{IF=未檢出}*'</p><p></p><p> answer = compose_answer(</p><p> conclusion,</p><p> evidence_groups,</p><p> clickable_body_citations,</p><p> full_reference_list_with_if</p><p> )</p><p> ```</p></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>9. 推薦最終交付模板</p><p>```markdown</p><p>結論:</p><p> ……</p><p></p><p>證據等級:</p><p></p><p>直接證據:</p><p> - ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p>間接證據:</p><p> - ……[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p>未見直接證據:</p><p> - ……</p><p></p><p>機制歸納:</p><p> 1. ……</p><p> 2. ……</p><p></p><p>檢索邊界:</p><p>本輪主要檢索PubMed / PMC / BioC / bioRxiv;初篩基於metadata + abstract,僅對關鍵文獻進入全文複核。 IF 標註是基於公開可存取來源核查;無法高置信度符合時標為待核驗或未檢出。</p><p></p><p>完整文獻資訊列表:</p><p> 1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*</p><p> 2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核驗}*</p><p> ```</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-pen-tool" aria-hidden="true"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg>寫作</div><div class="flex h-[32px] items-center gap-1 px-2 rounded-[20px] min-w-0 max-md:w-[32px] max-md:justify-center max-md:px-0" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_n6cainpfivabtkqivb_" data-state="closed" disabled=""><div class="flex-shrink-0"><div class="overflow-hidden bg-cover bg-center bg-no-repeat" style="background-image:url(https://cdn.gooo.ai/assets/select_model_claude.png);width:16px;height:16px;border-radius:8px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-sm font-normal px-[1px] truncate min-w-0 text-foreground max-md:hidden">Claude Sonnet 4.5</span></div></div></div></div></div><div class="flex flex-col gap-4 w-full"><p class="text-xl font-semibold leading-7 text-primary">描述</p><p class="text-sm leading-5 text-secondary-fg whitespace-pre-wrap break-words">適用情境:完成一輪生物/生物醫學類科研文獻檢索並給使用者提供詳實可靠的輸出1. 使用者發起檢索後系統拆解問題和關鍵字2. 使用公開、可複現的資料來源檢索文獻3. 對檢索結果進行去重、分層、證據分級和排序4. 回應中使用可點擊正文回復5.文末逐條列出完整文獻訊息,並以公開可查路線標註IF;若無法高置信核驗,必須標示為「待核驗」或「未檢出」。</p></div></div><div class="flex flex-col gap-5 px-[168px]"><div class="flex items-center justify-between gap-3"><h3 class="font-semibold text-primary text-2xl">相關技能</h3><a class="inline-flex items-center gap-1 text-sm font-semibold text-secondary-fg transition-colors hover:text-primary" href="/skills">查看全部<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right size-4" aria-hidden="true"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></a></div><div class="grid w-full grid-cols-2 gap-4 max-[571px]:[&>*]:!min-w-0 min-[572px]:grid-cols-[repeat(auto-fill,minmax(258px,1fr))]"><div class="relative flex h-[252px] min-w-[258px] flex-col overflow-hidden rounded-2xl border border-material-card-border bg-material-card p-[11px] text-left w-full"><a aria-label="如何快速了解一個產業" class="absolute inset-0 z-0 rounded-2xl focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2" href="/zh-TW/skills/019f01c5-3018-7f71-bc06-8e7bcb90b181"></a><div class="pointer-events-none relative z-10 flex h-full flex-col"><div class="relative h-[128px] w-full shrink-0 overflow-hidden rounded-[14px] border border-material-card-border bg-gray4"><img src="https://cdn.gooo.ai/web-images/bce9fba54e70e96cd0be3836fa088a36a6e8e473d3032ba958bc16bd49a47c8e@medium" alt="" class="absolute inset-0 size-full object-cover"/><span class="absolute right-[7px] bottom-[7px] rounded-[20px] bg-black/50 px-2.5 py-0.5 text-xs leading-[18px] text-white">學習</span></div><div class="mt-3 flex w-full shrink-0 flex-col gap-1.5"><h3 class="min-w-0 flex-1 truncate text-sm font-medium leading-5 text-primary">如何快速了解一個產業</h3><p class="line-clamp-2 h-9 w-full shrink-0 text-xs leading-[18px] text-caption-fg">📋 使用指南這個Skill 是一套基於麥肯錫方法論驅動的行業研究引擎,基於肖璟《如何快速了解一個行業》中的八維框架。你告訴它一個產業名,它幫你產出一份有系統的研究報告。 —————————————————————————————— 🚀 基礎用法直接告訴我你想研究什麼行業即可,越具體越好: a. "幫我分析一下固態電池行業" b. "看看人形機器人產業鏈,創業視角" c. "光伏行業現在還能投嗎?" 你可以附帶信息(不強制處理,缺了 1.產業名稱:越具體越好,例如「鈣鈦礦光伏」而非「新能源」,此項「必填」; 2. 目標:投資/ 擇業/ 創業/ 競品分析/ 科普,預設:投資;3. 地區:中國市場/ 全球/ 美國/東南亞...,預設:中國市場 —————————————————— 整個流程分為4 個階段: 1. 多輪聯網搜尋搜市場規模/增速/滲透率、產業鏈、競爭格局、護城河證據、政策、估值-每一個結論都有來源和時點,絕不編造; 2. 生命週期定位用滲透率判斷產業處於導入期/成長期/成熟期/重點結構期,不同階段研究維度完全不同;競爭格局(強制逐條五力評分)→ 估價→ PEST → 景氣度; 4. 反共識檢定區分市場已price-in 的明牌vs 被忽略的真問題,給出決策建議; —————————————————————————————— 📊 產出什麼? 一份Markdown格式的專業行研報告,架構如下: 1. ⚡ 30 秒速判— 階段/ 核心賺錢邏輯/ 最大機會/ 最大風險/ 一句話結論; 2. 研究對象,邊界界定; 3. 生命週期定位(含滲透率資料);結論與決策建議; 7. 關鍵風險清單; 8. 資料來源與時間說明; —————————————————————————————— 🔑 兩個核心亮點1. 護城河強制深挖:不只講壁壘類型,必須回答「過去2-3 年是變寬還是變窄」,用份額/毛利率/2.波特五力逐條評分:五條全打,不給偷懶空間,判斷當前誰議價權最強、格局對頭部是友好還是惡化; —————————————————————————————— ⏱️ 耗時大約2-4分鐘,因為需要多輪搜索+ 逐維度分析+ 撰寫報告—————————————— ————————後續可擴展報告產出後,可以繼續接兩個專案分析(需要你手動確認,不會自動跑): 1.「拆鏈找卡點」:從產業鏈中定位趨勢放量時繞不過去的實體卡點,鎖定真受益標的;2.「DCF 估值」:對產業內 直接告訴我一個行業名就行,例如「幫我看看AI Agent 產業,創業視角」或「氫能產業鏈現在什麼情況?」</p></div><div class="mt-2 flex h-[18px] w-full shrink-0 items-center justify-between gap-2"><a aria-label="View 积木的唠叨's profile" title="积木的唠叨" class="pointer-events-auto inline-flex shrink-0 rounded-full transition-opacity hover:opacity-80 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" href="/zh-TW/skills/bio/ac9a3f42-846f-46ac-bebf-8418372746e1"><span class="relative flex overflow-hidden rounded-full size-4 shrink-0 bg-gray4"><span class="flex h-full w-full items-center justify-center rounded-full bg-gray4 text-[8px] font-medium leading-none text-caption-fg">积</span></span></a><div class="flex shrink-0 items-center gap-2 text-caption-fg"><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-round size-3" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span class="text-xs leading-[18px]">19</span></span><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="12" height="12" class="shrink-0" viewBox="0 0 16 16" aria-hidden="true" fill="currentColor"><use xlink:href="#icon-credit"></use></svg><span class="text-xs leading-[18px]">10k</span></span></div></div></div></div><div class="relative flex h-[252px] min-w-[258px] flex-col overflow-hidden rounded-2xl border border-material-card-border bg-material-card p-[11px] text-left w-full"><a aria-label="如何快速了解一家企業" class="absolute inset-0 z-0 rounded-2xl focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2" href="/zh-TW/skills/019efcc8-6f7a-77e4-90bd-95c001f999c6"></a><div class="pointer-events-none relative z-10 flex h-full flex-col"><div class="relative h-[128px] w-full shrink-0 overflow-hidden rounded-[14px] border border-material-card-border bg-gray4"><img src="https://cdn.gooo.ai/gen-images/712825e307749c8665300778e1a2e52b4e4b70a14061313b56c789d178ea2db1.png@medium" alt="" class="absolute inset-0 size-full object-cover"/><span class="absolute right-[7px] bottom-[7px] rounded-[20px] bg-black/50 px-2.5 py-0.5 text-xs leading-[18px] text-white">學習</span></div><div class="mt-3 flex w-full shrink-0 flex-col gap-1.5"><h3 class="min-w-0 flex-1 truncate text-sm font-medium leading-5 text-primary">如何快速了解一家企業</h3><p class="line-clamp-2 h-9 w-full shrink-0 text-xs leading-[18px] text-caption-fg">輸入公司名或股票,用查理.芒格的多元思維模型,以價值投資的視角對股票進行深度投研分析,SKILL自動聯網挖掘深度信息,強制先搜後判、雙源交叉、標註口徑與來源,按價值投資七維框架做深度分析,給出三情景估值與2×2質量/價格決策,產出一份可執行的價值投資報告。</p></div><div class="mt-2 flex h-[18px] w-full shrink-0 items-center justify-between gap-2"><a aria-label="View 积木的唠叨's profile" title="积木的唠叨" class="pointer-events-auto inline-flex shrink-0 rounded-full transition-opacity hover:opacity-80 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" href="/zh-TW/skills/bio/ac9a3f42-846f-46ac-bebf-8418372746e1"><span class="relative flex overflow-hidden rounded-full size-4 shrink-0 bg-gray4"><span class="flex h-full w-full items-center justify-center rounded-full bg-gray4 text-[8px] font-medium leading-none text-caption-fg">积</span></span></a><div class="flex shrink-0 items-center gap-2 text-caption-fg"><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-round size-3" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span class="text-xs leading-[18px]">5</span></span><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="12" height="12" class="shrink-0" viewBox="0 0 16 16" aria-hidden="true" fill="currentColor"><use xlink:href="#icon-credit"></use></svg><span class="text-xs leading-[18px]">7k</span></span></div></div></div></div><div class="relative flex h-[252px] min-w-[258px] flex-col overflow-hidden rounded-2xl border border-material-card-border bg-material-card p-[11px] text-left w-full"><a aria-label="三元拆解:讀懂論文" class="absolute inset-0 z-0 rounded-2xl focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2" href="/zh-TW/skills/019ef897-d537-75a4-b6ed-27ea58357a80"></a><div class="pointer-events-none relative z-10 flex h-full flex-col"><div class="relative h-[128px] w-full shrink-0 overflow-hidden rounded-[14px] border border-material-card-border bg-gray4"><img src="https://cdn.gooo.ai/gen-images/a793134794b59fec8ffdae783bb14f597b6c15693b5767e9dc75ff96d33129ff.png@medium" alt="" class="absolute inset-0 size-full object-cover"/><span class="absolute right-[7px] bottom-[7px] rounded-[20px] bg-black/50 px-2.5 py-0.5 text-xs leading-[18px] text-white">學習</span></div><div class="mt-3 flex w-full shrink-0 flex-col gap-1.5"><h3 class="min-w-0 flex-1 truncate text-sm font-medium leading-5 text-primary">三元拆解:讀懂論文</h3><p class="line-clamp-2 h-9 w-full shrink-0 text-xs leading-[18px] text-caption-fg">用識要素-通小循環-掌大循環三元拆解法,自動或互動式拆解任意論文的論證骨架,內建14個AI Prompt模板,適合所有學術讀者</p></div><div class="mt-2 flex h-[18px] w-full shrink-0 items-center justify-between gap-2"><a aria-label="View 珮's profile" title="珮" class="pointer-events-auto inline-flex shrink-0 rounded-full transition-opacity hover:opacity-80 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" href="/zh-TW/skills/bio/2e82f8a6-8f3d-405b-a701-3382199c02ae"><span class="relative flex overflow-hidden rounded-full size-4 shrink-0 bg-gray4"><span class="flex h-full w-full items-center justify-center rounded-full bg-gray4 text-[8px] font-medium leading-none text-caption-fg">珮</span></span></a><div class="flex shrink-0 items-center gap-2 text-caption-fg"><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-round size-3" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span class="text-xs leading-[18px]">7</span></span><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="12" height="12" class="shrink-0" viewBox="0 0 16 16" aria-hidden="true" fill="currentColor"><use xlink:href="#icon-credit"></use></svg><span class="text-xs leading-[18px]">399</span></span></div></div></div></div></div></div></div><div class="flex md:hidden flex-col gap-5 w-full"><div class="grid grid-cols-[auto_minmax(0,1fr)] items-start gap-4 px-5"><div class="relative size-14 shrink-0"><div class="relative size-full overflow-hidden bg-gray5 shadow-[0_1.658px_6.632px_0_rgba(2,4,26,0.07)] rounded-xl border border-subtle-border" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg13-2.png);background-size:cover"><div class="absolute inset-0 flex items-center justify-center"><svg width="28" height="28" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg" class="text-white" style="filter:drop-shadow(0 0 8.4px rgba(0, 0, 0, 0.20))"><g clip-path="url(#clip0_92_327)"><path fill-rule="evenodd" clip-rule="evenodd" d="M19.6757 14.6355C19.4792 14.6957 19.2627 14.7101 19.038 14.6651L17.3914 14.3358L16.5755 15.5038C16.1574 16.1022 15.3296 16.2413 14.739 15.8122L13.8726 15.1829L12.9903 16.3593C12.6193 16.854 11.952 17.0203 11.3922 16.7577L11.1252 16.6324L10.9522 17.4688C10.7978 18.2152 10.0392 18.6709 9.30773 18.4567L8.26116 18.1503L7.72946 19.232C7.71896 19.2533 7.70801 19.2743 7.69662 19.2947C7.88247 19.5117 8.1689 19.523 8.3166 19.4949C8.41437 19.4763 8.57038 19.4162 8.68809 19.2932C9.50745 19.4291 11.3719 19.7212 12.2879 19.7212C13.2191 19.7212 14.4716 19.4994 15.1972 19.3541C15.4008 19.3133 15.6037 19.3915 15.7199 19.5465L16.1498 20.1197C16.6596 20.7993 17.7333 20.5558 17.8999 19.7227L18.1093 18.6759C18.1308 18.5682 18.1879 18.4707 18.2714 18.3992L20.5618 16.4359C20.6249 16.3819 20.6781 16.3231 20.7221 16.261C21.0708 16.1805 21.3308 15.868 21.3308 15.4948C21.3308 15.0606 20.9787 14.7085 20.5445 14.7085C20.3951 14.7085 20.2554 14.7502 20.1365 14.8225C20.0799 14.8121 20.0207 14.8067 19.9591 14.8067C19.8685 14.8067 19.7734 14.7399 19.6757 14.6355ZM17.8969 16.7017C18.2226 16.7017 18.4866 16.4376 18.4866 16.1119C18.4866 15.7862 18.2226 15.5222 17.8969 15.5222C17.5711 15.5222 17.3071 15.7862 17.3071 16.1119C17.3071 16.4376 17.5711 16.7017 17.8969 16.7017Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M4.70742 9.33957C4.83973 9.87134 5.082 10.3849 5.4386 10.8463C6.81577 12.6281 9.37659 12.9561 11.1583 11.5789C12.8993 10.2333 13.2523 7.75773 11.983 5.98292C12.0703 5.94699 12.1769 5.97022 12.2394 6.05262L13.4354 7.62971C13.5169 7.73727 13.6757 7.74531 13.7678 7.64655L14.8583 6.47596C14.9443 6.38365 15.0906 6.38365 15.1766 6.47596L16.3501 7.73562C16.4071 7.79678 16.4941 7.81987 16.5739 7.79502L18.2353 7.27762C18.3567 7.23983 18.4844 7.31374 18.5122 7.43779L18.8938 9.14413C18.9061 9.19928 18.9394 9.24746 18.9867 9.27847L20.442 10.2337C20.5713 10.3186 20.5732 10.5074 20.4456 10.5949L19.0505 11.5511C18.9694 11.6067 18.9357 11.7098 18.9683 11.8026L19.4991 13.3134C19.555 13.4724 19.4165 13.6318 19.2513 13.5987L17.0468 13.1578C16.9621 13.1409 16.8754 13.1757 16.8259 13.2465L15.6842 14.8809C15.6145 14.9806 15.4765 15.0038 15.3781 14.9323L13.8186 13.7995C13.7225 13.7296 13.5881 13.7499 13.5168 13.8449L12.1205 15.7067C12.0586 15.7892 11.9474 15.8169 11.8541 15.7731L10.589 15.1795C10.4618 15.1198 10.3122 15.1947 10.2837 15.3324L9.88741 17.2484C9.86168 17.3728 9.73525 17.4487 9.61334 17.413L7.86445 16.9009C7.76297 16.8712 7.65482 16.9188 7.60818 17.0137L6.75367 18.7521C6.67771 18.9067 6.4608 18.9158 6.3721 18.7682L5.2678 16.9304C5.23679 16.8788 5.18576 16.8423 5.12688 16.8297L3.38693 16.4576C3.26075 16.4306 3.18568 16.3003 3.22564 16.1776L3.7493 14.5694C3.77604 14.4873 3.75166 14.3971 3.68719 14.3397L2.41052 13.2022C2.31346 13.1157 2.31346 12.9639 2.41052 12.8774L3.68719 11.7399C3.75166 11.6825 3.77604 11.5923 3.7493 11.5102L3.22564 9.90199C3.18568 9.77929 3.26075 9.64899 3.38693 9.622L4.70742 9.33957Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M10.7912 10.4313C11.814 9.38764 11.9361 7.72316 11.0172 6.53432C10.5156 5.88527 9.79851 5.50077 9.04448 5.40368C9.04047 5.63275 9.01063 5.86613 8.94809 6.11696C8.96245 6.10386 8.97728 6.09007 8.99259 6.07556C9.14514 5.93097 9.38603 5.93742 9.53062 6.08997C9.67521 6.24252 9.66876 6.4834 9.51621 6.628C9.24279 6.88716 8.9531 7.09811 8.60281 7.11991C8.25092 7.14181 7.94456 6.96621 7.65826 6.75301C7.48968 6.62748 7.45478 6.38905 7.58032 6.22046C7.70585 6.05188 7.94428 6.01699 8.11287 6.14252C8.12288 6.14998 8.13268 6.15719 8.14227 6.16416C8.23844 5.87279 8.27791 5.63029 8.28318 5.40344C7.77647 5.46851 7.27986 5.66514 6.84646 6.00013C6.73863 6.08347 6.6381 6.17276 6.54497 6.26718C5.51616 7.3104 5.3915 8.97945 6.31235 10.1708C7.31657 11.4701 9.18389 11.7092 10.4831 10.705C10.5935 10.6197 10.6962 10.5282 10.7912 10.4313ZM8.10411 4.22717C7.40392 4.32168 6.71842 4.59591 6.11922 5.05905C5.96822 5.17576 5.82744 5.3008 5.69705 5.43302C4.25661 6.89352 4.08206 9.23026 5.37127 10.8982C6.77718 12.7172 9.39143 13.052 11.2104 11.6461C11.3543 11.5349 11.4889 11.4161 11.6141 11.2907C13.0715 9.83154 13.253 7.48199 11.9583 5.80691C11.1857 4.80735 10.0482 4.25596 8.87835 4.19534C8.8655 4.13983 8.85235 4.08388 8.83906 4.02738L8.83082 3.99229C8.78275 3.78768 8.5779 3.66077 8.37328 3.70884C8.16867 3.75692 8.04176 3.96176 8.08983 4.16638C8.09465 4.18691 8.09941 4.20717 8.10411 4.22717Z" fill="currentColor"></path></g><defs><clipPath id="clip0_92_327"><rect width="24" height="24" fill="currentColor"></rect></clipPath></defs></svg></div></div></div><div class="flex min-w-0 flex-1 flex-col gap-1 justify-center overflow-hidden"><div class="flex min-w-0 max-w-full items-start gap-2"><h1 class="min-w-0 whitespace-normal break-words text-2xl font-semibold leading-8 text-primary">Bio/Med深度可靠研究</h1></div></div><div class="col-span-2 justify-self-end"><div class="flex shrink-0 items-center justify-end gap-2 whitespace-nowrap"><button data-slot="button" class="inline-flex items-center justify-center font-normal transition-all [&_svg]:pointer-events-none shrink-0 [&_svg]:shrink-0 outline-none aria-invalid:border-destructive disabled:pointer-events-none disabled:opacity-50 disabled:cursor-not-allowed border border-new-border hover:bg-snip-card active:bg-muted hover:text-accent-foreground disabled:bg-snip-card disabled:text-muted-foreground disabled:border-bg-border h-8 text-sm gap-1 [&_svg]:size-[16px] has-[>svg]:px-3 leading-5 rounded-[40px] px-4 py-1.5 whitespace-nowrap">複製連結</button><button data-slot="button" class="inline-flex items-center justify-center font-normal transition-all [&_svg]:pointer-events-none shrink-0 [&_svg]:shrink-0 outline-none aria-invalid:border-destructive disabled:pointer-events-none disabled:opacity-50 disabled:cursor-not-allowed bg-primary text-primary-fg hover:opacity-80 active:bg-primary h-8 text-sm gap-1 [&_svg]:size-[16px] has-[>svg]:px-3 leading-5 rounded-[40px] px-4 py-1.5 whitespace-nowrap">在 YouMind 中試用</button></div></div></div><div class="flex flex-col gap-3 px-5"><div class="flex flex-wrap items-center gap-x-10 gap-y-2 w-full"><div class="flex items-center gap-2 min-w-0"><span class="text-sm leading-5 text-caption-fg whitespace-nowrap">作者</span><a class="hover:opacity-80 transition-opacity" href="/skills/bio/7d8d4986-6f56-4da7-8fb5-e8e0355a3ae3"><div class="flex items-center gap-1.5 min-w-0"><span class="relative flex overflow-hidden rounded-full size-5 shrink-0"><span class="flex h-full w-full items-center justify-center rounded-full bg-muted text-[10px] font-medium">李</span></span><span class="text-sm leading-5 font-medium text-foreground whitespace-nowrap truncate">李振龙</span></div></a></div><div class="flex items-center gap-2"><span class="text-sm leading-5 text-caption-fg whitespace-nowrap">安裝人數</span><div class="flex items-center gap-[3.75px]"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-round shrink-0 text-foreground" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span class="text-sm leading-5 font-medium text-foreground whitespace-nowrap">9</span></div></div><div class="flex items-center gap-2"><span class="text-sm leading-5 text-caption-fg whitespace-nowrap">分類</span><span class="text-sm leading-5 font-medium text-foreground whitespace-nowrap">學習</span></div><div class="flex items-center gap-2"><span class="text-sm leading-5 text-caption-fg whitespace-nowrap">來源</span><span class="text-sm leading-5 font-medium text-foreground whitespace-nowrap">YouMind</span></div></div></div><div class="flex flex-col gap-4 px-4"><div><button type="button" class="relative shrink-0 overflow-hidden rounded-xl border border-new-border bg-muted h-60 w-full cursor-pointer"><img src="https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2@medium" alt="" class="absolute inset-0 size-full object-cover"/></button></div><div><button type="button" class="relative shrink-0 overflow-hidden rounded-xl border border-new-border bg-muted h-60 w-full cursor-pointer"><img src="https://cdn.gooo.ai/web-images/f697d3abe7d40284b9afc64c0ec008739ef2f24e668d3e36d7f7890b70206ad7@medium" alt="" class="absolute inset-0 size-full object-cover"/></button></div></div><div class="px-5"><div class="relative overflow-hidden rounded-[28px] border border-black/[0.06] bg-card px-5 py-5"><div class="pointer-events-none absolute inset-0 bg-[radial-gradient(circle_at_top_left,rgba(191,219,254,0.1),transparent_28%),radial-gradient(circle_at_right_center,rgba(254,240,138,0.1),transparent_24%)] opacity-70"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-quote pointer-events-none absolute bottom-5 right-5 size-12 text-black/[0.045] md:bottom-6 md:right-6 md:size-14" aria-hidden="true"><path d="M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"></path><path d="M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"></path></svg><div class="relative flex flex-col gap-4"><div class="flex justify-between gap-3 flex-col items-start"><div class="inline-flex w-fit items-center gap-2 rounded-full border border-sky-100 bg-sky-50 px-3 py-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-badge-check size-3.5 text-sky-600" aria-hidden="true"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"></path><path d="m9 12 2 2 4-4"></path></svg><span class="text-xs font-semibold text-sky-700">編輯精選</span></div><a class="flex items-center gap-2.5 transition-opacity hover:opacity-80" href="/skills/bio/63edaf7c-2fec-49bd-9f2e-02f772e4a1d9"><span class="relative flex shrink-0 overflow-hidden rounded-full size-9 border border-white shadow-sm"><span class="flex h-full w-full items-center justify-center rounded-full bg-muted text-xs font-medium">N</span></span><div class="min-w-0"><p class="text-[11px] font-semibold uppercase tracking-[0.08em] text-caption-fg">精選自</p><p class="truncate text-sm font-semibold text-primary">Nico@YouMind</p></div></a></div><div class="flex flex-col gap-2"><p class="text-base font-semibold leading-6 text-primary">為什麼我們推薦這個技能</p><p class="text-sm italic leading-7 text-secondary-fg">這項技能是生物醫學研究的可靠指南,透過結構化查詢、多階段文獻篩選和嚴謹的IF核查,確保提供高度準確且可驗證的科研資訊。</p></div></div></div></div><div class="flex flex-col gap-10 px-5"><div class="flex flex-col gap-4"><div class="flex items-center justify-between"><p class="text-xl font-semibold leading-7 text-primary">指令<!-- --> </p><button class="flex items-center gap-1 rounded-[20px] px-2.5 py-px "><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14" class="shrink-0 text-caption-fg" viewBox="0 0 20 20" aria-hidden="true" fill="currentColor"><use xlink:href="#icon-translate"></use></svg><span class="text-xs leading-[18px] whitespace-nowrap text-caption-fg">顯示原文</span></button></div><div class="bg-snip-card rounded-3xl p-3 flex flex-col gap-2.5"><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>這套流程的核心是:先用多query 在PubMed / NCBI E-utilities 做可複現初篩,再用PMID 去重和摘要證據分級;只有少量關鍵文獻進入PMC / BioC 全文複現;正文引用必須可點擊;文末必須列完整文獻資訊;IF 只能透過取信可存取權,不能將其保留使用保守結果</p><p></p><p>1. 使用者發起檢索後的預處理</p><p>1.1 先解析使用者問題</p><p>收到用戶問題後,先把自然語言問題拆成結構化要素。</p><p>必須識別:</p><p> • 研究對象:基因、蛋白、藥物、通道、細胞類型、組織、疾病、模型。</p><p> • 生物系統:人、小鼠、大鼠、斑馬魚、類器官、視網膜、腦區、細胞係等。</p><p> • 關係類型:表現、調控、功能、機制、表型、死亡、存活、治療、毒性、發育、退化等。</p><p> • 證據需求:是否需要直接證據、機制證據、全文證據、圖表、劑量參數、實驗方法。</p><p> • 時間範圍:不限時間、近5 年、近1 年、最新進展、經典文獻。</p><p> • 產出類型:簡答、代表文獻、綜述式總結、實驗設計建議、證據表、機製圖譜。</p><p>範例:</p><p>用戶問題:</p><p> “幫我找視網膜類器官死亡相關文獻。”</p><p>結構化拆解(例):</p><p> • 核心模式:retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid。</p><p> • 表型:cell death, apoptosis, degeneration, survival loss, stress, necrosis。</p><p> • 相關細胞:photoreceptor, cone, rod, retinal ganglion cell, Müller glia。</p><p> • 潛在機制:oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis。</p><p> • 證據目標:優先找直接在人源或動物源retinal organoid 中觀察到細胞死亡/凋亡/退化的原始研究;再找間接機製文獻。</p><p> 1.2 關鍵字拆分原則(範例)</p><p>不要只寫一個檢索式。每個概念至少準備三類詞。</p><p>第一類:精確詞。</p><p> • retinal organoid</p><p> • retina organoid</p><p> • human retinal organoid</p><p> • hPSC-derived retinal organoid</p><p> • iPSC-derived retinal organoid</p><p>第二類:同義詞和上位詞。</p><p> • optic cup organoid</p><p> • 3D retinal culture</p><p> • stem cell-derived retina</p><p> • retinal differentiation</p><p> • retinal tissue model</p><p>第三類:機制和表型詞。</p><p> • apoptosis</p><p> • cell death</p><p> • degeneration</p><p> • survival</p><p> • stress</p><p> • oxidative stress</p><p> • ER stress</p><p> • mitochondrial dysfunction</p><p> • hypoxia</p><p> • necroptosis</p><p> • ferroptosis</p><p>如果使用者限定細胞類型,加入:</p><p> • photoreceptor</p><p> • cone</p><p> • rod</p><p> • retinal ganglion cell</p><p> • Müller glia</p><p> • bipolar cell</p><p> • amacrine cell</p><p>如果使用者限定物種或來源,加入:</p><p> • human</p><p> • mouse</p><p> • rat</p><p> • zebrafish</p><p> • hESC</p><p> • iPSC</p><p> • pluripotent stem cell</p><p> 1.3 產生分層檢索式</p><p>至少生成3–6 組query。每組query 對應一個檢索目的。</p><p>第一層:直接證據檢索。</p><p>用於找出目標模型+ 目標表型直接命中的文獻。</p><p> ```text</p><p> ("retinal organoid" OR "retina organoid" OR "human retinal organoid") AND (apoptosis OR "cell death" OR degeneration)</p><p> ```</p><p>第二層:擴充模型檢索。</p><p>用於捕捉作者沒有使用retinal organoid 精確詞但實際相關的文獻。</p><p> ```text</p><p> ("optic cup organoid" OR "3D retinal culture" OR "stem cell-derived retina") AND (survival OR apoptosis OR stress)</p><p> ```</p><p>第三層:機制專項檢索。</p><p>用於驗證具體通路或機制。</p><p> ```text</p><p> ("retinal organoid" OR "retina organoid") AND ("oxidative stress" OR "ER stress" OR hypoxia OR mitochondria)</p><p> ```</p><p>第四層:細胞類型專項檢索。</p><p> ```text</p><p> ("retinal organoid" OR "retina organoid") AND (photoreceptor OR cone OR rod OR "retinal ganglion cell") AND (death OR apoptosis OR degeneration)</p><p> ```</p><p>第五層:疾病模型檢索。</p><p> ```text</p><p> ("retinal organoid" OR "retina organoid") AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)</p><p> ```</p><p>第六層:綜述/背景檢索。</p><p> ```text</p><p> ("retinal organoid" OR "retina organoid") AND (review OR protocol OR model)</p><p> ```</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-microscope" aria-hidden="true"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg>研究</div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>2. 使用什麼方法、在什麼網站檢索</p><p>2.1 首選:PubMed / NCBI E-utilities</p><p> PubMed 是生物醫學文獻檢索首選。不要預設抓PubMed 網頁。應使用NCBI E-utilities API。</p><p> 2.1.1 ESearch:用query 取得PMID</p><p>接口:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi</p><p> ```</p><p>參數:</p><p> ```text</p><p> db=pubmed</p><p> term=<檢索式></p><p> retmode=json</p><p> retmax=20</p><p> sort=relevance</p><p> ```</p><p>也可依時間排序:</p><p> ```text</p><p> sort=pub+date</p><p> ```</p><p>範例:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&term=(%22retinal%20organoid%22%20OR%20 %22retina%20organoid%22)%20AND%20(apoptosis%20OR%20%22cell%20death%22)&retmode=json&retmax=20&sort=relevance</p><p> ```</p><p>返回中讀取:</p><p> ```text</p><p> esearchresult.idlist</p><p> ```</p><p>這就是PMID 清單。</p><p> 2.1.2 ESummary:取得文獻metadata</p><p>接口:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi</p><p> ```</p><p>參數:</p><p> ```text</p><p> db=pubmed</p><p> id=PMID1,PMID2,PMID3</p><p> retmode=json</p><p> ```</p><p>提取字段:</p><p> • PMID</p><p> • title</p><p> • fulljournalname</p><p> • source / journal abbreviation</p><p> • pubdate</p><p> • authors</p><p> • articleids 中的DOI、PMCID</p><p> • volume、issue、pages</p><p> 2.1.3 EFetch:取得摘要和XML 細節</p><p>接口:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi</p><p> ```</p><p>參數:</p><p> ```text</p><p> db=pubmed</p><p> id=PMID1,PMID2</p><p> retmode=xml</p><p> rettype=abstract</p><p> ```</p><p>提取字段:</p><p> • ArticleTitle</p><p> • AbstractText</p><p> • Journal Title</p><p> • ISOAbbreviation</p><p> • ISSN / eISSN</p><p> • PubDate</p><p> • DOI</p><p> • PMCID</p><p> • MeSH terms</p><p> 2.1.4 批次檢索策略</p><p>推薦流程:</p><p> 1. 對每個query 呼叫ESearch。</p><p> 2. 每個query 取前5–20 篇。</p><p> 3. 合併所有PMID。</p><p> 4. 按PMID 去重。</p><p> 5. 用ESummary / EFetch 批次取得metadata 和abstract。</p><p> 6. 初篩階段只讀metadata + abstract,不要一開始抓全文。</p><p> ────────────────</p><p> 2.2 第二階段:PMC / BioC 全文複核</p><p>只有以下情況才會進入全文:</p><p> • 使用者要求精讀全文。</p><p> • 摘要不足以判斷機制。</p><p> • 需要圖表、實驗方法、濃度、劑量、IC50、EC50、Kd、Ki。</p><p> • 已篩選出少量關鍵PMID,需要逐篇機制複核。</p><p> 2.2.1 PMID 轉PMCID</p><p>接口:</p><p> ```text</p><p> https://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=<PMID>&format=json</p><p> ```</p><p>如果傳回PMCID,說明可能有PMC 開放全文。</p><p> 2.2.2 優先BioC JSON</p><p>接口:</p><p> ```text</p><p> https://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json/<PMCID>/unicode</p><p> ```</p><p>優點:結構化程度高,適合抽取正文段落。</p><p> 2.2.3 BioC 不可用時嘗試PMC XML</p><p>接口:</p><p> ```text</p><p> https://www.ncbi.nlm.nih.gov/pmc/articles/<PMCID>/?report=xml</p><p> ```</p><p>抽取正文時跳過:</p><p> • references</p><p> • bibliography</p><p> • acknowledgements</p><p> • author contributions</p><p> • competing interests</p><p>全文複審必須設定停止判據:</p><p> • 每篇文獻只掃描一次。</p><p> • 預設只抽取與問題相關的段落。</p><p> • 若未命中目標字段,標註「未見直接證據」。</p><p> • 不要無限換關鍵字重複抓取。</p><p> ────────────────</p><p> 2.3 bioRxiv / medRxiv</p><p>用於補充最新預印本。</p><p>可以使用官方API:</p><p> ```text</p><p> https://api.biorxiv.org/details/biorxiv/YYYY-MM-DD/YYYY-MM-DD</p><p> https://api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD</p><p> ```</p><p>也可用普通搜尋作為補充:</p><p> ```text</p><p> site:biorxiv.org retinal organoid apoptosis</p><p> site:medrxiv.org retina organoid degeneration</p><p> ```</p><p>預印本必須標註:</p><p> ```text</p><p>預印本,未經同儕評審。</p><p> ```</p><p> ────────────────</p><p> 2.4 Crossref / OpenAlex / Unpaywall</p><p>用於補全DOI、開放全文地址、出版資訊。</p><p> Crossref:</p><p> ```text</p><p> https://api.crossref.org/works?query.title=<title></p><p> ```</p><p> OpenAlex:</p><p> ```text</p><p> https://api.openalex.org/works?search=<title or topic></p><p> ```</p><p> Unpaywall:</p><p> ```text</p><p> https://api.unpaywall.org/v2/<DOI>?email=<your_email></p><p> ```</p><p>用途:</p><p> • DOI 補全。</p><p> • OA PDF 連結查找。</p><p> • 期刊名核驗。</p><p> • 出版年份核驗。</p><p> ────────────────</p><p> 2.5 出版商頁面</p><p>只有在API 資訊不足時才造訪出版商頁面。</p><p>訪問規則:</p><p> • 每個出版商URL 只嘗試一次。</p><p> • 遇到驗證碼、登入牆、Cloudflare、Access Denied、機構權限牆,立即停止。</p><p> • 不要重複刷新、換同站路徑、循環等待。</p><p> • 改用PubMed、PMC、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-microscope" aria-hidden="true"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg>研究</div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>3. 檢索後如何整理訊息</p><p>3.1 建立統一記錄結構</p><p>每篇文獻整理成統一record。</p><p>字段:</p><p> ```text</p><p> pmid</p><p> doi</p><p> pmcid</p><p> title</p><p> authors</p><p> journal</p><p> journal_abbrev</p><p> issn</p><p> eissn</p><p> year</p><p> abstract</p><p> query_source</p><p> evidence_level</p><p> evidence_tags</p><p> paper_type</p><p> url</p><p> ```</p><p> 3.2 去重</p><p>優先:</p><p> 1. PMID 去重。</p><p> 2. 沒有PMID 時用DOI 去重。</p><p> 3. 沒有DOI 時用lower(title) + year + first_author 去重。</p><p>保留第一次命中的query_source,同時記錄該文獻被哪些query 命中。</p><p> 3.3 證據分級</p><p>必須區分:</p><p>直接證據:</p><p>目標物種、組織、細胞類型、模型、處理條件直接命中。</p><p>間接證據:</p><p>相鄰系統、相似模型、相近機制支持,但不是使用者問題的直接系統。</p><p>未見直接證據:</p><p>只能找到背景、推測、綜述或相鄰模型,沒有直接實驗結果。</p><p> 3.4 文獻類型標註</p><p>至少標註:</p><p> • original research</p><p> • review</p><p> • protocol</p><p> • preprint</p><p> • dataset/resource</p><p> • clinical study</p><p> •method paper</p><p> 3.5 排序規則</p><p>推薦排序:</p><p> 1. 直接證據原始研究。</p><p> 2. 關鍵機制研究。</p><p> 3. 最新重要研究。</p><p> 4. 經典奠基研究。</p><p> 5. 高品質綜述。</p><p> 6. 間接證據。</p><p>不要只按IF 排序。 IF 是期刊層面指標,不等於單一文獻品質。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-pen-tool" aria-hidden="true"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg>寫作</div><div class="flex h-[32px] items-center gap-1 px-2 rounded-[20px] min-w-0 max-md:w-[32px] max-md:justify-center max-md:px-0" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_mediinpfivabtkqivb_" data-state="closed" disabled=""><div class="flex-shrink-0"><div class="overflow-hidden bg-cover bg-center bg-no-repeat" style="background-image:url(https://cdn.gooo.ai/assets/select_model_claude.png);width:16px;height:16px;border-radius:8px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-sm font-normal px-[1px] truncate min-w-0 text-foreground max-md:hidden">Claude Sonnet 4.5</span></div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>4. 回覆中如何組織引用</p><p>4.1 正文引用格式</p><p>正文引用必須可點選。</p><p>格式:</p><p> ```markdown</p><p> [[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p> ```</p><p>範例:</p><p> ```markdown</p><p>已有研究在人源retinal organoids 中觀察到發育階段相關的光感受器壓力和退化現象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。</p><p> ```</p><p>不要寫成:</p><p> ```text</p><p> [1]</p><p> (PMID: xxxxx)</p><p>見文獻1</p><p> ```</p><p> 4.2 推薦回答結構</p><p>第一段:直接結論。</p><p> ```text</p><p>結論:已有相關報導,但直接證據主要集中在……;關於……仍缺乏直接證據。</p><p> ```</p><p>第二段:證據分級。</p><p> ```text</p><p>直接證據:</p><p> - 文獻A:…</p><p></p><p>間接證據:</p><p> - 文獻B:…</p><p></p><p>未見直接證據:</p><p> - 本輪找不到…</p><p> ```</p><p>第三段:機制歸納。</p><p>按主題分組,例如:</p><p> • apoptosis / caspase pathway</p><p> • oxidative stress</p><p> • mitochondrial dysfunction</p><p> • ER stress</p><p> • hypoxia / metabolic stress</p><p> • inflammation</p><p> • developmental mismatch</p><p>第四段:研究空白。</p><p>明確說明哪些問題沒有直接證據。</p><p>第五段:實驗啟發。</p><p>如果使用者需要實驗設計,給予marker、assay、time point、control。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-pen-tool" aria-hidden="true"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg>寫作</div><div class="flex h-[32px] items-center gap-1 px-2 rounded-[20px] min-w-0 max-md:w-[32px] max-md:justify-center max-md:px-0" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_midiinpfivabtkqivb_" data-state="closed" disabled=""><div class="flex-shrink-0"><div class="overflow-hidden bg-cover bg-center bg-no-repeat" style="background-image:url(https://cdn.gooo.ai/assets/select_model_claude.png);width:16px;height:16px;border-radius:8px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-sm font-normal px-[1px] truncate min-w-0 text-foreground max-md:hidden">Claude Sonnet 4.5</span></div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>5. 文末完整文獻資訊列表</p><p>只要正文引用具體文獻,文末必須附上完整列表。</p><p>格式:</p><p> ```markdown</p><p> ## 完整文獻資訊列表</p><p></p><p>1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*</p><p> 2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核驗}*</p><p> ```</p><p>作者格式:</p><p> • 1–3 位作者:列出全部。</p><p> • 超過3 位:第一作者et al.</p><p> PMID / DOI / URL 必須可點選。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-microscope" aria-hidden="true"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg>研究</div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>6. IF 核查與標註</p><p>6.1 先說明IF 核查的現實限制</p><p>正常情況下,官方Journal Impact Factor 來自Clarivate Journal Citation Reports(JCR)。但任意外部Agent 通常沒有Clarivate/JCR 帳號,也沒有本地JCR 表,所以不要經過這個路徑核查。</p><p> ```</p><p> 6.2 IF skill 的實際方法</p><p>主要路線:</p><p> 1. 如果輸入是PMID,先用NCBI E-utilities 取得PubMed metadata。</p><p> - 取得FullJournalName。 - 取得Source / ISO abbreviation。 - 取得ISSN / eISSN。 - 取得標題、年份、DOI 等輔助欄位。</p><p> 2. 用公開的iikx / 愛科學行動端JSON 介面查詢期刊。</p><p>搜尋介面:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p>詳情接口:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p> 3. 對搜尋結果做保守配對。</p><p> - 優先exact normalized journal title match。 - 其次exact abbreviation match。 - 對短詞和寬泛詞非常謹慎。 - 不接受明顯substring 誤配,例如Nature 被誤配成Nature Reviews 系列。 - 如果匹配不穩,返回ambiguous / 不_found,而不是猜。</p><p> 4. 如果PubMed 給的是縮寫,嘗試用NLM Catalog 擴展為全名或alternate title。</p><p> NLM Catalog 搜尋介面仍然是NCBI E-utilities:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog&term=<abbr>[Title Abbreviation]&retmode=xml&retmax=1</p><p> ```</p><p>然後用ESummary 取Title / TitleAlternate。</p><p> 5. 從iikx detail 結果中讀取:</p><p> - impact factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分區,如果有。 - source URL。 - match confidence。</p><p> 6. 標註時不把IF 年份寫進正文緊湊標註。</p><p>最終標註只寫:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p>如果失敗:</p><p> ```text</p><p> *{IF=待核驗}*</p><p> ```</p><p>或:</p><p> ```text</p><p> *{IF=未檢出}*</p><p> ```</p><p> 6.3 具體步驟</p><p>對每篇文獻執行以下流程。</p><p>第一步:準備期刊查詢名稱。</p><p>優先從PubMed metadata 取:</p><p> ```text</p><p> FullJournalName</p><p> ISOAbbreviation / Source</p><p> ISSN</p><p> eISSN</p><p> ```</p><p>如果只有DOI,則先用Crossref 或OpenAlex 取期刊名。</p><p> Crossref:</p><p> ```text</p><p> https://api.crossref.org/works/<DOI></p><p> ```</p><p> OpenAlex:</p><p> ```text</p><p> https://api.openalex.org/works/https://doi.org/<DOI></p><p> ```</p><p>第二步:規範化期刊名。</p><p>規範化規則:</p><p> • 全部小寫。</p><p> • HTML unescape。</p><p> • 將& 替換為and。</p><p> • 去除標點。</p><p> • 多個空格合併。</p><p> • 比較時可同時使用compact 形式,即去除所有空格。</p><p>範例偽代碼:</p><p> 『`python</p><p> import re, html</p><p></p><p> def norm(s):</p><p> s = html.unescape(s or '').lower()</p><p> s = re.sub(r'&', ' 和 ', s)</p><p> s = re.sub(r'[^a-z0-9]+', ' ', s)</p><p> return re.sub(r'\s+', ' ', s).strip()</p><p></p><p> def compact(s):</p><p> return norm(s).replace(' ', '')</p><p> ```</p><p>第三步:查詢iikx 搜尋介面。</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p>建議設定User-Agent,例如:</p><p> ```text</p><p> Mozilla/5.0</p><p> ```</p><p>如果第一頁沒找到exact match,可以有限翻頁,例如最多8 頁。</p><p>翻頁參數通常為:</p><p> ```text</p><p> page=2</p><p> page=3</p><p> ```</p><p>第四步:從搜尋結果中選候選。</p><p>候選欄位通常包括:</p><p> ```text</p><p> id</p><p> classid</p><p> title</p><p> smalltitle</p><p> IF 或IF2024</p><p> zky2020</p><p> url</p><p> ```</p><p>匹配規則:</p><p> • 如果compact(query) == compact(candidate.title),接受。</p><p> • 如果norm(query) == norm(candidate.title),接受。</p><p> • 如果compact(query) == compact(candidate.smalltitle),接受。</p><p> • 如果norm(query) == norm(candidate.smalltitle),接受。</p><p> • 如果只是substring,不要直接接受,除非query 夠長且無歧義。</p><p> • 對Nature、Science、Cell、Brain、Vision、Retina 等短字尤其謹慎。</p><p>第五步:如果沒有匹配,用NLM Catalog 擴充縮寫。</p><p>例如PubMed 裡Source 是:</p><p> ```text</p><p> Free Radic Biol Med</p><p> ```</p><p>可以查:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog&term=Free%20Radic%20Biol%20Med%5BTitle%20Abbreviation%5D&retmode=xml&retmax=1%5BTitle%20Abbreviation%5D&retmode=xml&retmax=1</p><p> ```</p><p>拿到NLM Catalog ID 後,再用:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=nlmcatalog&id=<id>&retmode=xml</p><p> ```</p><p>讀取:</p><p> ```text</p><p> Title</p><p> TitleAlternate</p><p> ```</p><p>然後用這些全名再查iikx。</p><p>第六步:查iikx 詳情介面。</p><p>如果搜尋結果裡有:</p><p> ```text</p><p> id=<id></p><p> classid=<classid></p><p> ```</p><p>調用:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p>從detail 讀取:</p><p> ```text</p><p> IF2024, IF2023, IF2022 ...</p><p> IF</p><p> zky2020 或其他JCR quartile 字段</p><p>jcr22 / jcr12 或分區字段</p><p>issn</p><p> eissn</p><p> title</p><p> smalltitle</p><p> category</p><p> ```</p><p>第七步:選擇最新IF。</p><p>在返回欄位中尋找所有形如:</p><p> ```text</p><p> IF20xx</p><p> ```</p><p>例如:</p><p> ```text</p><p> IF2024</p><p> IF2023</p><p> IF2022</p><p> ```</p><p>選年份最大的有效數字。</p><p>如果沒有IF20xx,則嘗試讀取:</p><p> ```text</p><p> IF</p><p> if_value</p><p> ```</p><p>如果沒有有效值,則標為未檢出。</p><p>第八步:輸出置信度和標註。</p><p>如果exact title / abbreviation 命中,且detail 回傳有效IF:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p>如果匹配不確定:</p><p> ```text</p><p> *{IF=待核驗}*</p><p> ```</p><p>如果公開接口沒有結果:</p><p> ```text</p><p> *{IF=未檢出}*</p><p> ```</p><p> 6.4 IF 標註格式</p><p>固定格式:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p>範例:</p><p> ```markdown</p><p> Smith J et al., **Neuron** (2020), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=15.0,Q1}*</p><p> ```</p><p>注意:</p><p> • IF 標註內部不寫JCR 年份。</p><p> • 不寫「2024 JCR IF」。</p><p> • 不寫「JCR 2024」。</p><p> • 年份只保留在文獻發表年份處。</p><p> • 若IF 為0.0、空值、來源不穩、符合不穩,則不顯示數字。</p><p> 6.5 IF 核查失敗時的標準處理</p><p>不要猜。</p><p>不要用期刊名印象補數字。</p><p>不要用大模型記憶補IF。</p><p>失敗時只允許三種狀態:</p><p> ```text</p><p> *{IF=待核驗}*</p><p> ```</p><p>用於:</p><p> • 搜尋結果模糊。</p><p> • 有多個相似期刊。</p><p> • 只找到縮寫但無法確認全名。</p><p> • 公開來源傳回的IF 可疑。</p><p> ```text</p><p> *{IF=未檢出}*</p><p> ```</p><p>用於:</p><p> • 公開介面沒有結果。</p><p> • 期刊不在SCI / JCR 覆蓋範圍。</p><p> • 新刊暫無IF。</p><p> ```text</p><p> *{IF=不可公開核驗}*</p><p> ```</p><p>用於:</p><p> • 使用者要求必須官方JCR,但目前Agent 沒有Clarivate/JCR 權限。</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-microscope" aria-hidden="true"><path d="M6 18h8"></path><path d="M3 22h18"></path><path d="M14 22a7 7 0 1 0 0-14h-1"></path><path d="M9 14h2"></path><path d="M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"></path><path d="M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"></path></svg>研究</div></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>7. 最終回覆自檢清單</p><p>發出前必須檢查:</p><p> • 是否先回答使用者核心問題。</p><p> • 是否區分直接證據、間接證據、未見直接證據。</p><p> • 是否所有正文引用都可點選。</p><p> • 是否文末有完整文獻資訊列表。</p><p> • 是否每篇文獻都帶IF 標註或待核驗/未檢出標註。</p><p> • PMID/DOI/URL 是否可點選。</p><p> • 是否避免將整體組織結果偷換成特定細胞類型結論。</p><p> • 是否避免將活化/磷酸化偷換成總表現量升高。</p><p> • 是否標註預印本。</p><p> • 是否說明檢索邊界。</p><p> • IF 沒有憑記憶猜測。</p></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>8. 可復現偽代碼</p><p>『`python</p><p> queries = build_queries(user_question)</p><p></p><p> all_pmids = []</p><p> for query in queries:</p><p> pmids = ncbi_esearch(query, retmax=20, sort='relevance')</p><p> all_pmids.extend(pmids)</p><p></p><p> pmids = deduplicate_keep_order(all_pmids)</p><p></p><p> metadata = ncbi_esummary(pmids)</p><p> abstracts = ncbi_efetch_abstract(pmids)</p><p></p><p> records = merge_metadata_and_abstracts(metadata, abstracts)</p><p> records = tag_evidence(records, user_question)</p><p> records = rank_records(records)</p><p> selected = select_top_records(records)</p><p></p><p> if need_fulltext:</p><p> for record in selected_key_records:</p><p> pmcid = idconv_pmid_to_pmcid(record.pmid)</p><p> if pmcid:</p><p> record.fulltext = fetch_bioc_or_pmc_xml(pmcid)</p><p></p><p> for record in selected:</p><p> journal_query = record.full_journal_name 或 record.journal_abbrev</p><p> if_result = lookup_if_public_iikx(journal_query)</p><p> if if_result.confident:</p><p> record.if_annotation = f'*{IF={if_result.if_value},{if_result.quartile}}*'</p><p> elif if_result.ambiguous:</p><p> record.if_annotation = '*{IF=待核驗}*'</p><p> else:</p><p> record.if_annotation = '*{IF=未檢出}*'</p><p></p><p> answer = compose_answer(</p><p> conclusion,</p><p> evidence_groups,</p><p> clickable_body_citations,</p><p> full_reference_list_with_if</p><p> )</p><p> ```</p></div></div><div class="flex flex-col rounded-[16px] bg-card p-3"><div class="skill-detail-content h-auto text-sm font-normal break-words whitespace-pre-wrap bg-transparent border-none rounded-xl instruction-content-container pb-4"><p>9. 推薦最終交付模板</p><p>```markdown</p><p>結論:</p><p> ……</p><p></p><p>證據等級:</p><p></p><p>直接證據:</p><p> - ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p>間接證據:</p><p> - ……[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p>未見直接證據:</p><p> - ……</p><p></p><p>機制歸納:</p><p> 1. ……</p><p> 2. ……</p><p></p><p>檢索邊界:</p><p>本輪主要檢索PubMed / PMC / BioC / bioRxiv;初篩基於metadata + abstract,僅對關鍵文獻進入全文複核。 IF 標註是基於公開可存取來源核查;無法高置信度符合時標為待核驗或未檢出。</p><p></p><p>完整文獻資訊列表:</p><p> 1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*</p><p> 2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核驗}*</p><p> ```</p></div><div class="flex flex-row items-center gap-2 flex-1 min-w-0"><div class="relative flex h-[32px] items-center rounded-full px-2 text-xs text-foreground gap-[4px]"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-pen-tool" aria-hidden="true"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg>寫作</div><div class="flex h-[32px] items-center gap-1 px-2 rounded-[20px] min-w-0 max-md:w-[32px] max-md:justify-center max-md:px-0" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_n6diinpfivabtkqivb_" data-state="closed" disabled=""><div class="flex-shrink-0"><div class="overflow-hidden bg-cover bg-center bg-no-repeat" style="background-image:url(https://cdn.gooo.ai/assets/select_model_claude.png);width:16px;height:16px;border-radius:8px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-sm font-normal px-[1px] truncate min-w-0 text-foreground max-md:hidden">Claude Sonnet 4.5</span></div></div></div></div></div><div class="flex flex-col gap-4"><p class="text-xl font-semibold leading-7 text-primary">描述</p><p class="text-sm leading-5 text-secondary-fg whitespace-pre-wrap break-words">適用情境:完成一輪生物/生物醫學類科研文獻檢索並給使用者提供詳實可靠的輸出1. 使用者發起檢索後系統拆解問題和關鍵字2. 使用公開、可複現的資料來源檢索文獻3. 對檢索結果進行去重、分層、證據分級和排序4. 回應中使用可點擊正文回復5.文末逐條列出完整文獻訊息,並以公開可查路線標註IF;若無法高置信核驗,必須標示為「待核驗」或「未檢出」。</p></div></div><div class="flex flex-col gap-5 px-5"><div class="flex items-center justify-between gap-3"><h3 class="font-semibold text-primary text-lg">相關技能</h3><a class="inline-flex items-center gap-1 text-sm font-semibold text-secondary-fg transition-colors hover:text-primary" href="/skills">查看全部<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right size-4" aria-hidden="true"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></a></div><div class="relative -mx-5" role="region" aria-roledescription="carousel"><div class="overflow-hidden"><div class="flex -ml-4 pb-1 pl-5 pr-5"><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 pl-4 basis-[85%] sm:basis-[70%]"><div class="relative flex h-[252px] min-w-[258px] w-full flex-col overflow-hidden rounded-2xl border border-material-card-border bg-material-card p-[11px] text-left"><a aria-label="如何快速了解一個產業" class="absolute inset-0 z-0 rounded-2xl focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2" href="/zh-TW/skills/019f01c5-3018-7f71-bc06-8e7bcb90b181"></a><div class="pointer-events-none relative z-10 flex h-full flex-col"><div class="relative h-[128px] w-full shrink-0 overflow-hidden rounded-[14px] border border-material-card-border bg-gray4"><img src="https://cdn.gooo.ai/web-images/bce9fba54e70e96cd0be3836fa088a36a6e8e473d3032ba958bc16bd49a47c8e@medium" alt="" class="absolute inset-0 size-full object-cover"/><span class="absolute right-[7px] bottom-[7px] rounded-[20px] bg-black/50 px-2.5 py-0.5 text-xs leading-[18px] text-white">學習</span></div><div class="mt-3 flex w-full shrink-0 flex-col gap-1.5"><h3 class="min-w-0 flex-1 truncate text-sm font-medium leading-5 text-primary">如何快速了解一個產業</h3><p class="line-clamp-2 h-9 w-full shrink-0 text-xs leading-[18px] text-caption-fg">📋 使用指南這個Skill 是一套基於麥肯錫方法論驅動的行業研究引擎,基於肖璟《如何快速了解一個行業》中的八維框架。你告訴它一個產業名,它幫你產出一份有系統的研究報告。 —————————————————————————————— 🚀 基礎用法直接告訴我你想研究什麼行業即可,越具體越好: a. "幫我分析一下固態電池行業" b. "看看人形機器人產業鏈,創業視角" c. "光伏行業現在還能投嗎?" 你可以附帶信息(不強制處理,缺了 1.產業名稱:越具體越好,例如「鈣鈦礦光伏」而非「新能源」,此項「必填」; 2. 目標:投資/ 擇業/ 創業/ 競品分析/ 科普,預設:投資;3. 地區:中國市場/ 全球/ 美國/東南亞...,預設:中國市場 —————————————————— 整個流程分為4 個階段: 1. 多輪聯網搜尋搜市場規模/增速/滲透率、產業鏈、競爭格局、護城河證據、政策、估值-每一個結論都有來源和時點,絕不編造; 2. 生命週期定位用滲透率判斷產業處於導入期/成長期/成熟期/重點結構期,不同階段研究維度完全不同;競爭格局(強制逐條五力評分)→ 估價→ PEST → 景氣度; 4. 反共識檢定區分市場已price-in 的明牌vs 被忽略的真問題,給出決策建議; —————————————————————————————— 📊 產出什麼? 一份Markdown格式的專業行研報告,架構如下: 1. ⚡ 30 秒速判— 階段/ 核心賺錢邏輯/ 最大機會/ 最大風險/ 一句話結論; 2. 研究對象,邊界界定; 3. 生命週期定位(含滲透率資料);結論與決策建議; 7. 關鍵風險清單; 8. 資料來源與時間說明; —————————————————————————————— 🔑 兩個核心亮點1. 護城河強制深挖:不只講壁壘類型,必須回答「過去2-3 年是變寬還是變窄」,用份額/毛利率/2.波特五力逐條評分:五條全打,不給偷懶空間,判斷當前誰議價權最強、格局對頭部是友好還是惡化; —————————————————————————————— ⏱️ 耗時大約2-4分鐘,因為需要多輪搜索+ 逐維度分析+ 撰寫報告—————————————— ————————後續可擴展報告產出後,可以繼續接兩個專案分析(需要你手動確認,不會自動跑): 1.「拆鏈找卡點」:從產業鏈中定位趨勢放量時繞不過去的實體卡點,鎖定真受益標的;2.「DCF 估值」:對產業內 直接告訴我一個行業名就行,例如「幫我看看AI Agent 產業,創業視角」或「氫能產業鏈現在什麼情況?」</p></div><div class="mt-2 flex h-[18px] w-full shrink-0 items-center justify-between gap-2"><a aria-label="View 积木的唠叨's profile" title="积木的唠叨" class="pointer-events-auto inline-flex shrink-0 rounded-full transition-opacity hover:opacity-80 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" href="/zh-TW/skills/bio/ac9a3f42-846f-46ac-bebf-8418372746e1"><span class="relative flex overflow-hidden rounded-full size-4 shrink-0 bg-gray4"><span class="flex h-full w-full items-center justify-center rounded-full bg-gray4 text-[8px] font-medium leading-none text-caption-fg">积</span></span></a><div class="flex shrink-0 items-center gap-2 text-caption-fg"><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-round size-3" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span class="text-xs leading-[18px]">19</span></span><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="12" height="12" class="shrink-0" viewBox="0 0 16 16" aria-hidden="true" fill="currentColor"><use xlink:href="#icon-credit"></use></svg><span class="text-xs leading-[18px]">10k</span></span></div></div></div></div></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 pl-4 basis-[85%] sm:basis-[70%]"><div class="relative flex h-[252px] min-w-[258px] w-full flex-col overflow-hidden rounded-2xl border border-material-card-border bg-material-card p-[11px] text-left"><a aria-label="如何快速了解一家企業" class="absolute inset-0 z-0 rounded-2xl focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2" href="/zh-TW/skills/019efcc8-6f7a-77e4-90bd-95c001f999c6"></a><div class="pointer-events-none relative z-10 flex h-full flex-col"><div class="relative h-[128px] w-full shrink-0 overflow-hidden rounded-[14px] border border-material-card-border bg-gray4"><img src="https://cdn.gooo.ai/gen-images/712825e307749c8665300778e1a2e52b4e4b70a14061313b56c789d178ea2db1.png@medium" alt="" class="absolute inset-0 size-full object-cover"/><span class="absolute right-[7px] bottom-[7px] rounded-[20px] bg-black/50 px-2.5 py-0.5 text-xs leading-[18px] text-white">學習</span></div><div class="mt-3 flex w-full shrink-0 flex-col gap-1.5"><h3 class="min-w-0 flex-1 truncate text-sm font-medium leading-5 text-primary">如何快速了解一家企業</h3><p class="line-clamp-2 h-9 w-full shrink-0 text-xs leading-[18px] text-caption-fg">輸入公司名或股票,用查理.芒格的多元思維模型,以價值投資的視角對股票進行深度投研分析,SKILL自動聯網挖掘深度信息,強制先搜後判、雙源交叉、標註口徑與來源,按價值投資七維框架做深度分析,給出三情景估值與2×2質量/價格決策,產出一份可執行的價值投資報告。</p></div><div class="mt-2 flex h-[18px] w-full shrink-0 items-center justify-between gap-2"><a aria-label="View 积木的唠叨's profile" title="积木的唠叨" class="pointer-events-auto inline-flex shrink-0 rounded-full transition-opacity hover:opacity-80 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" href="/zh-TW/skills/bio/ac9a3f42-846f-46ac-bebf-8418372746e1"><span class="relative flex overflow-hidden rounded-full size-4 shrink-0 bg-gray4"><span class="flex h-full w-full items-center justify-center rounded-full bg-gray4 text-[8px] font-medium leading-none text-caption-fg">积</span></span></a><div class="flex shrink-0 items-center gap-2 text-caption-fg"><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-round size-3" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span class="text-xs leading-[18px]">5</span></span><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="12" height="12" class="shrink-0" viewBox="0 0 16 16" aria-hidden="true" fill="currentColor"><use xlink:href="#icon-credit"></use></svg><span class="text-xs leading-[18px]">7k</span></span></div></div></div></div></div><div role="group" aria-roledescription="slide" class="min-w-0 shrink-0 grow-0 pl-4 basis-[85%] sm:basis-[70%]"><div class="relative flex h-[252px] min-w-[258px] w-full flex-col overflow-hidden rounded-2xl border border-material-card-border bg-material-card p-[11px] text-left"><a aria-label="三元拆解:讀懂論文" class="absolute inset-0 z-0 rounded-2xl focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2" href="/zh-TW/skills/019ef897-d537-75a4-b6ed-27ea58357a80"></a><div class="pointer-events-none relative z-10 flex h-full flex-col"><div class="relative h-[128px] w-full shrink-0 overflow-hidden rounded-[14px] border border-material-card-border bg-gray4"><img src="https://cdn.gooo.ai/gen-images/a793134794b59fec8ffdae783bb14f597b6c15693b5767e9dc75ff96d33129ff.png@medium" alt="" class="absolute inset-0 size-full object-cover"/><span class="absolute right-[7px] bottom-[7px] rounded-[20px] bg-black/50 px-2.5 py-0.5 text-xs leading-[18px] text-white">學習</span></div><div class="mt-3 flex w-full shrink-0 flex-col gap-1.5"><h3 class="min-w-0 flex-1 truncate text-sm font-medium leading-5 text-primary">三元拆解:讀懂論文</h3><p class="line-clamp-2 h-9 w-full shrink-0 text-xs leading-[18px] text-caption-fg">用識要素-通小循環-掌大循環三元拆解法,自動或互動式拆解任意論文的論證骨架,內建14個AI Prompt模板,適合所有學術讀者</p></div><div class="mt-2 flex h-[18px] w-full shrink-0 items-center justify-between gap-2"><a aria-label="View 珮's profile" title="珮" class="pointer-events-auto inline-flex shrink-0 rounded-full transition-opacity hover:opacity-80 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" href="/zh-TW/skills/bio/2e82f8a6-8f3d-405b-a701-3382199c02ae"><span class="relative flex overflow-hidden rounded-full size-4 shrink-0 bg-gray4"><span class="flex h-full w-full items-center justify-center rounded-full bg-gray4 text-[8px] font-medium leading-none text-caption-fg">珮</span></span></a><div class="flex shrink-0 items-center gap-2 text-caption-fg"><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-round size-3" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span class="text-xs leading-[18px]">7</span></span><span class="flex items-center gap-1"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="12" height="12" class="shrink-0" viewBox="0 0 16 16" aria-hidden="true" fill="currentColor"><use xlink:href="#icon-credit"></use></svg><span class="text-xs leading-[18px]">399</span></span></div></div></div></div></div></div></div></div></div></div></div><div class="px-5 md:px-[168px]"><div class="relative overflow-hidden rounded-[36px] border border-black/[0.06] bg-card px-6 py-10 md:rounded-[40px] md:px-10 md:py-14"><div class="pointer-events-none absolute inset-0 bg-[radial-gradient(circle_at_left_center,rgba(191,219,254,0.12),transparent_34%),radial-gradient(circle_at_right_center,rgba(254,240,138,0.14),transparent_36%)] opacity-75"></div><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-zap absolute left-6 top-6 size-5 text-[#F5D36A] md:left-8 md:top-8" aria-hidden="true"><path d="M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21" fill="none" class="absolute bottom-6 right-6 size-5 rotate-180 text-[#D9C2FF] md:bottom-8 md:right-8"><path d="M19.4661 9.58712C19.466 9.4839 19.4373 9.38273 19.3831 9.29488C19.3289 9.20703 19.2514 9.13594 19.1592 9.08953L15.2511 7.13147L13.2972 3.2157C13.1083 2.83826 12.4921 2.83826 12.3036 3.2157L10.3497 7.13147L6.44156 9.08953C6.34885 9.13551 6.27082 9.20647 6.21627 9.29441C6.16172 9.38236 6.13281 9.4838 6.13281 9.5873C6.13281 9.69079 6.16172 9.79223 6.21627 9.88018C6.27082 9.96813 6.34885 10.0391 6.44156 10.0851L10.3497 12.0431L12.3036 15.9589C12.3497 16.0512 12.4206 16.1288 12.5084 16.183C12.5961 16.2372 12.6973 16.266 12.8004 16.266C12.9035 16.266 13.0047 16.2372 13.0924 16.183C13.1802 16.1288 13.2511 16.0512 13.2972 15.9589L15.2511 12.0431L19.1592 10.0858C19.2516 10.0392 19.3291 9.96798 19.3833 9.87994C19.4375 9.79189 19.4662 9.69052 19.4661 9.58712Z" fill="#1F1F1F"></path><path d="M4.1235 5.15516L2.46852 4.46495C2.43161 4.44649 2.40058 4.41812 2.37888 4.38302C2.35719 4.34792 2.3457 4.30748 2.3457 4.26622C2.3457 4.22496 2.35719 4.18451 2.37888 4.14941C2.40058 4.11431 2.43161 4.08594 2.46852 4.06748L4.1235 3.37755L4.81348 1.72269C4.83191 1.68572 4.86029 1.65461 4.89542 1.63287C4.93055 1.61113 4.97105 1.59961 5.01237 1.59961C5.05369 1.59961 5.09419 1.61113 5.12932 1.63287C5.16445 1.65461 5.19283 1.68572 5.21126 1.72269L5.90125 3.37755L7.55622 4.06748C7.59313 4.08594 7.62416 4.11431 7.64586 4.14941C7.66755 4.18451 7.67904 4.22496 7.67904 4.26622C7.67904 4.30748 7.66755 4.34792 7.64586 4.38302C7.62416 4.41812 7.59313 4.44649 7.55622 4.46495L5.90125 5.15516L5.21126 6.81002C5.19283 6.84699 5.16445 6.8781 5.12932 6.89984C5.09419 6.92158 5.05369 6.9331 5.01237 6.9331C4.97105 6.9331 4.93055 6.92158 4.89542 6.89984C4.86029 6.8781 4.83191 6.84699 4.81348 6.81002L4.1235 5.15516Z" fill="#C2C2C2"></path><path d="M3.73302 17.5998L1.25063 16.5645C1.19527 16.5368 1.14871 16.4942 1.11618 16.4416C1.08364 16.389 1.06641 16.3283 1.06641 16.2664C1.06641 16.2045 1.08364 16.1438 1.11618 16.0912C1.14871 16.0385 1.19527 15.996 1.25063 15.9683L3.73302 14.9334L4.76797 12.4512C4.79561 12.3958 4.83817 12.3491 4.89087 12.3165C4.94357 12.2839 5.00431 12.2666 5.06629 12.2666C5.12826 12.2666 5.18901 12.2839 5.24171 12.3165C5.2944 12.3491 5.33696 12.3958 5.36461 12.4512L6.39956 14.9334L8.88195 15.9683C8.93731 15.996 8.98386 16.0385 9.0164 16.0912C9.04893 16.1438 9.06617 16.2045 9.06617 16.2664C9.06617 16.3283 9.04893 16.389 9.0164 16.4416C8.98386 16.4942 8.93731 16.5368 8.88195 16.5645L6.39956 17.5998L5.36461 20.082C5.33696 20.1374 5.2944 20.1841 5.24171 20.2167C5.18901 20.2493 5.12826 20.2666 5.06629 20.2666C5.00431 20.2666 4.94357 20.2493 4.89087 20.2167C4.83817 20.1841 4.79561 20.1374 4.76797 20.082L3.73302 17.5998Z" fill="#666666"></path></svg><div class="relative mx-auto flex max-w-[640px] flex-col items-center gap-5 text-center"><div class="flex flex-col gap-3"><h3 class="text-[32px] font-semibold tracking-tight text-primary md:text-[48px] md:leading-[1.05]">發現下一個適合你的技能</h3><p class="text-base leading-7 text-secondary-fg md:text-lg">繼續探索更多精選 AI 技能,用於研究、創作和日常工作。</p></div><a class="inline-flex items-center justify-center gap-2 rounded-full bg-primary px-7 py-3.5 text-base font-semibold text-primary-fg transition-opacity hover:opacity-90 md:px-8" href="/skills">探索全部技能<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right size-4" aria-hidden="true"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></a></div></div></div></div></div></div><!--$--><!--/$--></div><div class="footer relative flex flex-col px-6 pb-[90px] pt-[64px] font-sans-title text-sm bg-card sm:px-[8%] md:pt-[80px] md:text-base"><div class="footer-overview-halo-mask" aria-hidden="true"><div class="footer-overview-halo"></div></div><div class="footer-content relative z-[1] mx-auto mt-4 flex w-full max-w-[1440px] flex-col gap-8 lg:flex-row"><div class="mb-8 min-w-0 flex-1 md:mb-0 lg:max-w-[320px] text-[rgba(0,0,0,0.88)]"><svg width="118" height="20" viewBox="0 0 118 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M117.78 16.4587H115.608V14.8788C115.261 15.3695 114.824 15.7884 114.297 16.1355C113.783 16.4826 113.142 16.6562 112.376 16.6562C111.814 16.6562 111.269 16.5485 110.743 16.333C110.216 16.1176 109.749 15.8004 109.342 15.3815C108.935 14.9506 108.606 14.43 108.355 13.8196C108.103 13.2091 107.978 12.509 107.978 11.719C107.978 10.9291 108.097 10.2289 108.337 9.61849C108.588 9.00808 108.917 8.49341 109.324 8.0745C109.731 7.64362 110.198 7.32046 110.725 7.10502C111.263 6.88958 111.814 6.78186 112.376 6.78186C113.154 6.78186 113.801 6.94943 114.315 7.28456C114.83 7.61969 115.261 8.00868 115.608 8.45152V4.54967C115.608 3.88865 116.144 3.35278 116.805 3.35278H117.78V16.4587ZM115.644 11.719C115.644 11.2522 115.566 10.8333 115.41 10.4623C115.267 10.0913 115.069 9.77408 114.818 9.51077C114.567 9.23548 114.273 9.02603 113.938 8.8824C113.603 8.73878 113.256 8.66696 112.897 8.66696C112.526 8.66696 112.173 8.73878 111.838 8.8824C111.515 9.01406 111.227 9.21155 110.976 9.47486C110.725 9.73818 110.527 10.0613 110.384 10.4443C110.24 10.8154 110.168 11.2403 110.168 11.719C110.168 12.1858 110.24 12.6107 110.384 12.9937C110.527 13.3647 110.725 13.6819 110.976 13.9452C111.227 14.2086 111.515 14.412 111.838 14.5556C112.173 14.6993 112.526 14.7711 112.897 14.7711C113.256 14.7711 113.603 14.6993 113.938 14.5556C114.273 14.412 114.567 14.2086 114.818 13.9452C115.069 13.67 115.267 13.3468 115.41 12.9758C115.566 12.6047 115.644 12.1858 115.644 11.719Z" fill="currentColor"></path><path d="M99.7368 11.109V16.5787H97.5645V6.97971H99.7368V8.45188C99.8924 8.22448 100.06 8.01502 100.239 7.82352C100.431 7.62005 100.646 7.44051 100.886 7.28492C101.137 7.12932 101.406 7.00964 101.694 6.92585C101.993 6.8301 102.328 6.78223 102.699 6.78223C103.776 6.78223 104.608 7.11137 105.195 7.76966C105.781 8.42795 106.074 9.31364 106.074 10.4267V16.5787H105.099C104.438 16.5787 103.902 16.0429 103.902 15.3819V11.0731C103.902 10.331 103.722 9.76248 103.363 9.3675C103.016 8.96056 102.52 8.75709 101.873 8.75709C101.239 8.75709 100.724 8.96655 100.329 9.38546C99.9343 9.7924 99.7368 10.3669 99.7368 11.109Z" fill="currentColor"></path><path d="M95.1706 16.578H92.8965V7.00293H95.1706V16.578Z" fill="currentColor"></path><path d="M84.5204 12.7484C84.6002 12.7484 84.6748 12.7086 84.7193 12.6422L88.199 7.44617V16.5784H90.4073V3.77173H88.0554L84.2314 9.83396L80.4073 3.77173H78.0554V16.5784H80.2278V7.48208L83.6729 12.6419C83.7173 12.7084 83.792 12.7484 83.872 12.7484H84.5204Z" fill="currentColor"></path><path d="M93.9141 5.61491H94.0338C94.6618 5.61491 95.1709 5.10583 95.1709 4.47786C95.1709 3.84989 94.6618 3.34082 94.0338 3.34082H93.9141C93.2862 3.34082 92.7771 3.84989 92.7771 4.47786C92.7771 5.10583 93.2862 5.61491 93.9141 5.61491Z" fill="currentColor"></path><path d="M72.4127 12.3295V6.97937H74.5851V16.5784H73.6096C72.9486 16.5784 72.4127 16.0425 72.4127 15.3815V14.9865C72.1015 15.4414 71.7125 15.8363 71.2457 16.1715C70.779 16.4946 70.1805 16.6562 69.4504 16.6562C68.3732 16.6562 67.5414 16.3271 66.9549 15.6688C66.3684 15.0105 66.0752 14.1248 66.0752 13.0117V6.97937H67.0507C67.7117 6.97937 68.2475 7.51523 68.2475 8.17626V12.3654C68.2475 13.1074 68.4211 13.6819 68.7682 14.0889C69.1273 14.4839 69.63 14.6813 70.2763 14.6813C70.9106 14.6813 71.4253 14.4779 71.8203 14.0709C72.2152 13.652 72.4127 13.0715 72.4127 12.3295Z" fill="currentColor"></path><path d="M63.8126 11.7194C63.8126 12.4016 63.6817 13.0419 63.4198 13.6404C63.1698 14.2388 62.8186 14.7655 62.3662 15.2203C61.9257 15.6631 61.3959 16.0162 60.7768 16.2795C60.1578 16.5428 59.4851 16.6745 58.7589 16.6745C58.0446 16.6745 57.3779 16.5488 56.7589 16.2975C56.1517 16.0342 55.6219 15.6811 55.1695 15.2382C54.7291 14.7834 54.3838 14.2628 54.1338 13.6763C53.8838 13.0779 53.7588 12.4375 53.7588 11.7553C53.7588 11.0731 53.8838 10.4327 54.1338 9.83429C54.3957 9.22388 54.7469 8.69725 55.1874 8.2544C55.6398 7.79958 56.1696 7.44051 56.7767 7.1772C57.3958 6.91388 58.0684 6.78223 58.7946 6.78223C59.5209 6.78223 60.1875 6.91388 60.7947 7.1772C61.4138 7.42855 61.9435 7.78163 62.384 8.23644C62.8364 8.67929 63.1876 9.19994 63.4376 9.79838C63.6876 10.3968 63.8126 11.0372 63.8126 11.7194ZM61.6519 11.7553C61.6519 11.3364 61.5804 10.9414 61.4376 10.5704C61.2947 10.1993 61.0923 9.87618 60.8304 9.6009C60.5804 9.31364 60.2768 9.09222 59.9197 8.93662C59.5744 8.76906 59.1875 8.68528 58.7589 8.68528C58.3303 8.68528 57.9375 8.76906 57.5803 8.93662C57.2351 9.09222 56.9374 9.30766 56.6874 9.58294C56.4374 9.85823 56.247 10.1814 56.116 10.5524C55.985 10.9115 55.9196 11.3005 55.9196 11.7194C55.9196 12.1383 55.991 12.5393 56.1339 12.9223C56.2767 13.2933 56.4732 13.6165 56.7232 13.8917C56.9851 14.167 57.2887 14.3884 57.6339 14.556C57.9911 14.7116 58.378 14.7894 58.7946 14.7894C59.2351 14.7894 59.628 14.7116 59.9732 14.556C60.3304 14.3884 60.634 14.167 60.884 13.8917C61.134 13.6165 61.3245 13.2993 61.4554 12.9402C61.5864 12.5692 61.6519 12.1742 61.6519 11.7553Z" fill="currentColor"></path><path d="M48.9711 11.4498V16.5784H46.7449V11.5036L41.7539 3.77173H43.6903C44.1049 3.77173 44.4899 3.98622 44.7081 4.3387L47.876 9.45694L51.0791 4.33407C51.2979 3.98424 51.6814 3.77173 52.094 3.77173H53.9622L48.9711 11.4498Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M5.33333 4.06667C5.33333 1.82071 3.51262 0 1.26667 0H0V13.8333C0 17.2391 2.7609 20 6.16667 20C9.57243 20 12.3333 17.2391 12.3333 13.8333V12.0333H12.3337V6.73333C12.3337 4.85557 13.8559 3.33333 15.7337 3.33333C17.6114 3.33333 19.1337 4.85557 19.1337 6.73333V17.3333C19.1337 18.8061 20.3276 20 21.8003 20H24.7337V7.03333C24.7337 3.14893 21.5847 0 17.7003 0C13.8159 0 10.667 3.14893 10.667 7.03333V8.01667H10.6667V14C10.6667 15.4728 9.47275 16.6667 8 16.6667C6.52725 16.6667 5.33333 15.4728 5.33333 14V4.06667ZM25.5869 3.4913C27.2187 4.77285 28.3003 6.76385 28.3003 8.99967V17.333C28.3003 18.8058 29.4942 19.9997 30.967 19.9997H33.3336V9.66634C33.3336 9.44118 33.3219 9.21877 33.299 8.99967C32.9658 5.81523 30.2729 3.33301 27.0003 3.33301C26.5435 3.33301 26.0981 3.38136 25.6688 3.47322C25.6414 3.47907 25.6141 3.4851 25.5869 3.4913Z" fill="currentColor"></path></svg><p class="mt-4 text-caption-fg">© <!-- -->2026<!-- --> MIND MOTOR PTE. LTD.</p><button type="button" role="combobox" aria-controls="radix-_R_3dqbtkqivb_" aria-expanded="false" aria-autocomplete="none" dir="ltr" data-state="closed" class="flex h-10 items-center justify-between border border-input px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1 w-[265px] rounded-lg bg-transparent hover:bg-accent transition-colors duration-200 ease-out mt-10"><span style="pointer-events:none"></span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down w-[14px] h-[14px] opacity-75" aria-hidden="true"><path d="m6 9 6 6 6-6"></path></svg></button><select aria-hidden="true" tabindex="-1" style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal"></select><div class="mt-10 flex flex-wrap items-center gap-6"><a href="https://discord.gg/kKvXrB2r7x" target="_blank" rel="noopener"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="text-caption-fg"><path d="M19.6949 5.41887C19.6888 5.407 19.6786 5.39769 19.6663 5.39262C18.2366 4.7367 16.728 4.26897 15.178 4.00115C15.164 3.99853 15.1494 4.00042 15.1365 4.00654C15.1235 4.01267 15.1128 4.02272 15.1059 4.03527C14.9005 4.40813 14.714 4.79112 14.5472 5.18277C12.8764 4.92915 11.177 4.92915 9.5062 5.18277C9.33826 4.79012 9.14878 4.40704 8.93863 4.03527C8.93142 4.023 8.92069 4.01318 8.90782 4.00709C8.89495 4.001 8.88054 3.99893 8.86648 4.00115C7.31637 4.26841 5.80762 4.73617 4.37818 5.39266C4.36595 5.39785 4.35562 5.4067 4.34863 5.41801C1.49004 9.68693 0.70697 13.8509 1.09112 17.9633C1.0922 17.9734 1.0953 17.9831 1.10023 17.992C1.10515 18.0008 1.11181 18.0086 1.11981 18.0149C2.78434 19.2473 4.64613 20.1881 6.62575 20.7969C6.63969 20.8011 6.65457 20.8009 6.6684 20.7964C6.68223 20.7919 6.69434 20.7832 6.70311 20.7716C7.12829 20.1931 7.50502 19.5805 7.82949 18.94C7.83395 18.9312 7.8365 18.9216 7.83696 18.9118C7.83743 18.9019 7.8358 18.8921 7.83219 18.8829C7.82858 18.8737 7.82307 18.8654 7.81602 18.8586C7.80897 18.8517 7.80054 18.8464 7.79128 18.843C7.19719 18.6157 6.62204 18.3416 6.07123 18.0235C6.06123 18.0176 6.05282 18.0093 6.04676 17.9994C6.04071 17.9895 6.03718 17.9783 6.03649 17.9667C6.03581 17.9551 6.03798 17.9436 6.04283 17.933C6.04768 17.9225 6.05505 17.9133 6.0643 17.9063C6.1802 17.8197 6.29409 17.7304 6.40588 17.6386C6.41569 17.6305 6.42755 17.6254 6.44014 17.6237C6.45273 17.622 6.46554 17.6238 6.47713 17.629C10.0857 19.2759 13.9925 19.2759 17.5584 17.629C17.57 17.6235 17.583 17.6214 17.5957 17.6229C17.6085 17.6245 17.6206 17.6296 17.6305 17.6378C17.7425 17.7301 17.8566 17.8196 17.973 17.9063C17.9823 17.9132 17.9897 17.9223 17.9946 17.9328C17.9996 17.9433 18.0018 17.9549 18.0012 17.9665C18.0006 17.9781 17.9972 17.9893 17.9912 17.9993C17.9852 18.0092 17.9769 18.0175 17.9669 18.0235C17.4173 18.3443 16.8417 18.6182 16.246 18.8421C16.2368 18.8456 16.2284 18.8511 16.2214 18.8581C16.2144 18.865 16.2089 18.8734 16.2054 18.8827C16.2018 18.8919 16.2003 18.9018 16.2008 18.9117C16.2014 18.9216 16.204 18.9312 16.2085 18.94C16.5384 19.5769 16.9146 20.1887 17.3341 20.7706C17.3426 20.7825 17.3546 20.7915 17.3685 20.7962C17.3824 20.8009 17.3974 20.8011 17.4114 20.7968C19.3946 20.19 21.2596 19.2492 22.9262 18.0149C22.9344 18.0089 22.9411 18.0014 22.9461 17.9926C22.951 17.9839 22.954 17.9742 22.9549 17.9642C23.4148 13.2098 22.185 9.07996 19.6949 5.41887ZM8.36841 15.4593C7.28196 15.4593 6.38676 14.4623 6.38676 13.2378C6.38676 12.0134 7.2646 11.0163 8.36841 11.0163C9.48085 11.0163 10.3674 12.022 10.35 13.2377C10.35 14.4623 9.47215 15.4593 8.36841 15.4593ZM15.6952 15.4593C14.6087 15.4593 13.7135 14.4623 13.7135 13.2378C13.7135 12.0134 14.5914 11.0163 15.6952 11.0163C16.8077 11.0163 17.6942 12.022 17.6768 13.2377C17.6768 14.4623 16.8077 15.4593 15.6952 15.4593Z" fill="black" fill-opacity="0.6"></path></svg></a><a href="https://x.com/YouMind_AI" target="_blank" rel="noopener"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" class="text-caption-fg"><g clip-path="url(#clip0_932_2592)"><path d="M17.7477 2.7995H20.8025L14.0953 10.4364L21.9314 20.796H15.782L10.9675 14.5005L5.45564 20.796H2.40089L9.50651 12.6278L2.00244 2.7995H8.30453L12.6542 8.55041L17.7477 2.7995ZM16.6785 19.003H18.3719L7.41467 4.5261H5.5951L16.6785 19.003Z" fill="black" fill-opacity="0.6"></path></g><defs><clipPath id="clip0_932_2592"><rect width="20" height="17.9965" fill="white" transform="translate(2 2.79965)"></rect></clipPath></defs></svg></a></div></div><div class="grid min-w-0 flex-1 grid-cols-2 gap-x-8 gap-y-10 sm:grid-cols-4 lg:grid-cols-4 lg:gap-x-14 xl:gap-x-20 2xl:gap-x-24"><div class="min-w-0"><div class="mb-[16px] text-base font-semibold">提示詞</div><div class="flex flex-col gap-[20px] text-sm"><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/nano-banana-pro-prompts"><span class="inline-flex items-center gap-1.5">Nano Banana Pro 提示詞</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/gpt-image-2-prompts"><span class="inline-flex items-center gap-1.5">GPT Image 2 提示詞<span aria-hidden="true" class="pointer-events-none relative inline-flex shrink-0 h-2.5 w-2.5"><span class="absolute inline-flex h-full w-full rounded-full animate-ping bg-red-400 opacity-75"></span><span class="relative inline-flex h-full w-full rounded-full bg-red-500"></span></span></span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/seedance-2-0-prompts"><span class="inline-flex items-center gap-1.5">Seedance 2.0 提示詞</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/gpt-image-1-5-prompts"><span class="inline-flex items-center gap-1.5">GPT Image 1.5 提示詞</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/seedream-4-dot-5-prompts"><span class="inline-flex items-center gap-1.5">Seedream 4.5 提示詞</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/gemini-3-prompts"><span class="inline-flex items-center gap-1.5">Gemini 3 Pro 提示詞</span></a></div></div><div class="min-w-0"><div class="mb-[16px] text-base font-semibold">資源</div><div class="flex flex-col gap-[20px] text-sm"><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/for-agents?utm_source=footer"><span class="inline-flex items-center gap-1.5">面向 Agent</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/blog/best-notebooklm-alternatives"><span class="inline-flex items-center gap-1.5">NotebookLM 替代方案</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/landing/gpt-image-2-slides"><span class="inline-flex items-center gap-1.5">GPT Image 2 投影片</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/landing/x-viral-articles"><span class="inline-flex items-center gap-1.5">𝕏 爆款文章追蹤</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/landing/markdown-to-x-article"><span class="inline-flex items-center gap-1.5">Markdown 轉 𝕏 文章</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/model-arena/nano-banana-2-vs-nano-banana-pro"><span class="inline-flex items-center gap-1.5">Nano Banana 2 與 Pro 對比</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/landing/ai-photo-editor"><span class="inline-flex items-center gap-1.5">AI 修圖工具</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/landing/photo-prompt"><span class="inline-flex items-center gap-1.5">AI 照片編輯提示詞</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/landing/image-to-prompt"><span class="inline-flex items-center gap-1.5">圖片轉提示詞</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/landing/lenny-career-coach"><span class="inline-flex items-center gap-1.5">Lenny 職涯教練</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/abti"><span class="inline-flex items-center gap-1.5">ABTI 性格測試</span></a></div></div><div class="min-w-0"><div class="mb-[16px] text-base font-semibold">產品</div><div class="flex flex-col gap-[20px] text-sm"><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/skills"><span class="inline-flex items-center gap-1.5">技能</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW#download"><span class="inline-flex items-center gap-1.5">瀏覽器擴充功能</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW#download"><span class="inline-flex items-center gap-1.5">應用程式</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/pricing"><span class="inline-flex items-center gap-1.5">定價</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/blog"><span class="inline-flex items-center gap-1.5">部落格</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/updates"><span class="inline-flex items-center gap-1.5">更新</span></a></div></div><div class="mt-0 min-w-0"><div class="mb-[16px] text-base font-semibold">公司</div><div class="flex flex-col gap-[20px] text-sm"><div class="cursor-pointer break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]">聯絡我們</div><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/privacy">隱私權政策</a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/zh-TW/terms">服務條款</a></div></div></div></div></div></main><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><!--$--><!--/$--><script src="/_next/static/chunks/0kq5to.864jbw.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[713513,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\"],\"default\"]\n3:I[438865,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\"],\"default\"]\n4:I[335838,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/06v6jczrgkg~v.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\"],\"default\"]\n8:I[399411,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nc:I[399411,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\"],\"ViewportBoundary\"]\ne:I[399411,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\"],\"MetadataBoundary\"]\n10:I[663151,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0i8n9m3cujr2x.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/06ohjbos.i_rf.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\"],\"default\"]\n12:I[471642,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\",\"/_next/static/chunks/16n2jkrhvi-pz.js\",\"/_next/static/chunks/0f4tr~5l-qwe9.js\",\"/_next/static/chunks/0bhxpnlf5ail7.js\"],\"Header\"]\n14:I[515144,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\",\"/_next/static/chunks/16n2jkrhvi-pz.js\",\"/_next/static/chunks/0f4tr~5l-qwe9.js\",\"/_next/static/chunks/0bhxpnlf5ail7.js\"],\"Footer\"]\n15:I[592649,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"\"]\n16:I[197414,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"default\"]\n17:I[855331,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"PostHogProvider\"]\n18:I[612645,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_"])</script><script>self.__next_f.push([1,"next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"GtagProvider\"]\n19:I[242092,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"ThemeProvider\"]\n1b:I[355864,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"default\"]\n1d:I[121504,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"StaticI18nProvider\"]\n1f:I[42884,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"NuqsAdapter\"]\n20:I[40717,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"CjkSerifFontLoader\"]\n21:I[470174,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"default\"]\n22:I[416398,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"GoogleOneTapPrompt\"]\n23:I[170637,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"default\"]\n24:I[246331,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~r"])</script><script>self.__next_f.push([1,"bopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"Toaster\"]\n25:I[673227,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\"],\"PageRedirecting\"]\n:HL[\"/_next/static/chunks/02hyqwfyqb9pm.css\",\"style\"]\n:HL[\"/_next/static/chunks/06ew8al_75xur.css\",\"style\"]\n:HL[\"/_next/static/chunks/0ooc~4oeqw4u5.css\",\"style\"]\n:HL[\"/_next/static/chunks/0tmabwndcw0zt.css\",\"style\"]\n:HL[\"/_next/static/chunks/0c5zz01_1j_c2.css\",\"style\"]\n:HL[\"/_next/static/chunks/0g_kx87ntck.4.css\",\"style\"]\n:HL[\"/_next/static/media/051742360c26797e-s.p.0f97p8c3305p~.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/1904c30335c1760b-s.p.08w36q5lu9vc4.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/20a72cd0c9704d06-s.p.0wk9o2ly~jaap.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/38df7484fe560b25-s.p.0_h8~hcb-m6kp.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/7ebf22b5a21034f8-s.p.10_7676vm7pyy.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Bd-s.p.0zrn8nawcg4x4.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Bk-s.p.07qy3p9jsost4.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Blk-s.p.058ndt5i1t2zv.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Lt-s.p.0plf8ivmhq9jc.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Md-s.p.08_-_pk6.ifi~.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_XBd-s.p.0l85nvd__drfd.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/Arvo_Bold-s.p.0.8k75a72nr-k.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/Arvo_BoldItalic-s.p.11d1_0ap3ag.x.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/Arvo_Italic-s.p.02a7.3u5s~_tj.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/Arvo_Regular-s.p.0n3do0_xda3qj.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/a624dffa201843ff-s.p.0xr-_bh6gedpp.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e41d5df559864f9e-s.p.0gq7fw9.sy_5..woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/f5031e7b18bdfbb3-s.p.17530ebvtj~5g.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/fabcf92ba1ccea36-s.p.0lwj123ije5i..woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/chunks/0c-.vk1qg481e.css\",\"style\"]\n0:{\"P\":null,\"c\":[\"\",\"zh-TW\",\"skills\",\"biomed-research-assistant-zXJCpN71mICVZ2\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[[\"locale\",\"zh-TW\",\"d\",null],{\"children\":[\"(site)\",{\"children\":[\"skills\",{\"children\":[[\"id\",\"biomed-research-assistant-zXJCpN71mICVZ2\",\"d\",null],{\"children\":[\"__PAGE__\",{}]}]}]}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/02hyqwfyqb9pm.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/06ew8al_75xur.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"async\":t"])</script><script>self.__next_f.push([1,"rue,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/16n5spzk7h5jo.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"$L4\",null,{}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0ooc~4oeqw4u5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0ooc~4oeqw4u5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/02bj8.g.2y357.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0i_4~rbopx69k.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0x-0~aayuagy2.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/0yn91s91gmmxu.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/027g.nnvn-88q.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/03ytj6stx.azu.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L5\"]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0tmabwndcw0zt.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0c5zz01_1j_c2.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"2\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0g_kx87ntck.4.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/16n2jkrhvi-pz.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0f4tr~5l-qwe9.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0bhxpnlf5ail7.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L6\"]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[\"$L7\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0c-.vk1qg481e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0w-owyy.fgb-a.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0rl_6jxcy8~8..js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0q~tn_buzkkbh.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0ewyep~4bzfg7.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/0d3y~wt-kf~8e.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Nex"])</script><script>self.__next_f.push([1,"t.MetadataOutlet\",\"children\":\"$@a\"}]}]]}],{},null,false,null]},null,false,\"$@b\"]},null,false,\"$@b\"]},null,false,null]},null,false,null]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Le\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lf\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$10\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/02hyqwfyqb9pm.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/06ew8al_75xur.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"2\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0ooc~4oeqw4u5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":false,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"dwC_RKcop8Y5jyG-0gGiQ\"}\n11:[]\nb:\"$W11\"\n6:[[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@graph\\\":[{\\\"@type\\\":\\\"Organization\\\",\\\"@id\\\":\\\"https://youmind.club/#organization\\\",\\\"name\\\":\\\"YouMind\\\",\\\"url\\\":\\\"https://youmind.club\\\",\\\"logo\\\":\\\"https://youmind.club/__ym/marketing-assets/youmind-logo.png\\\",\\\"description\\\":\\\"YouMind is where learning meets creation. Learn, think, and create with AI agents. Everything flows together and grows with you.\\\",\\\"sameAs\\\":[\\\"https://x.com/youmind_ai\\\",\\\"https://www.linkedin.com/company/mindbicycle\\\",\\\"https://www.youtube.com/@youmind_ai\\\"]},{\\\"@type\\\":\\\"WebSite\\\",\\\"@id\\\":\\\"https://youmind.club/#website\\\",\\\"url\\\":\\\"https://youmind.club\\\",\\\"name\\\":\\\"YouMind\\\",\\\"description\\\":\\\"Learn smarter. Create bolder.\\\",\\\"publisher\\\":{\\\"@id\\\":\\\"https://youmind.club/#organization\\\"}}]}\"}}],[\"$\",\"main\",null,{\"className\":\"flex flex-col min-h-screen overflow-x-clip marketing-body\",\"children\":[[\"$\",\"$L12\",null,{\"variant\":\"glass\"}],[\"$\",\"div\",null,{\"className\":\"flex-grow bg-card\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}],\"$L13\"]}]]\n13:[\"$\",\"$L14\",null,{\"forceLight\":true,\"labels\":{\"prompts\":\"提示詞\",\"resources\":\"資源\",\"nanoBananaPrompts\":\"Nano Banana Pro 提示詞\",\"gptImage2Prompts\":\"GPT Image 2 提示詞\",\"seedance20Prompts\":\"Seedance 2.0 提示詞\",\"gptImage1_5Prompts\":\"GPT Image 1.5 提示詞\",\"seedream4_5Prompts\":\"Seedream 4.5 提示詞\",\"gemini3Prompts\":\"Gemini 3 Pro 提示詞\",\"abti\":\"ABTI 性格測試\",\"gptImage2Slides\":\"GPT Image 2 投影片\",\"xViralArticlesTracking\":\"𝕏 爆款文章追蹤\",\"markdownToXArticle\":\"Markdown 轉 𝕏 文章\",\"nanoBanana2VsPro\":\"Nano Banana 2 與 Pro 對比\",\"imageToPrompt\":\"圖片轉提示詞\",\"aiPhotoEditor\":\"AI 修圖工具\",\"photoPromptStudio\":\"AI 照片編輯提示詞\",\"lennyCareerCoach\":\"Lenny 職涯教練\",\"forAgents\":\"面向 Agent\",\"blog\":\"部落格\",\"blogs\":\"部落格\",\"notebooklmAlternatives\":\"NotebookLM 替代方案\",\"product\":\"產品\",\"skills\":\"技能\",\"extension\":\"瀏覽器擴充功能\",\"app\":\"應用程式\",\"updates\":\"更新\",\"pricing\":\"定價\",\"company\":\"公司\",\"contactUs\":\"聯絡我們\",\"privacy\":\"隱私權政策\",\"terms\":\"服務條款\"},\"prefetchScope\":\"youhome\"}]\n5:[\"$\",\"html\",null,{\"lang\":\"zh-TW\",\"suppressHydrationWarning\":true,\"className\":\"inter_1b545fac-module__b8QJrq__variable arvo_47c97b1b-module__gSbheq__variable cereal_d27b773e-module__vIeTSq__variable pacifico_2c68cb73-module__2O2tPW__variable instrument_serif_e6807043-module__ZE2Y9q__variable libre_baskerville_34dd47e7-module__hy4KVG__variable bebas_neue_2462c9af-module__3UALqa__variable literata_a1f9e2d0-module__IX9Mva__variable jetbrains_mono_75b673cc-module__gh4UVG__variable font-sans\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"hre"])</script><script>self.__next_f.push([1,"f\":\"https://cdn.gooo.ai\",\"crossOrigin\":\"anonymous\"}],[\"$\",\"link\",null,{\"rel\":\"dns-prefetch\",\"href\":\"https://cdn.gooo.ai\"}],[\"$\",\"link\",null,{\"data-rh\":\"true\",\"rel\":\"apple-touch-icon\",\"href\":\"https://youmind.club/__ym/marketing-assets/logo-128.png\",\"sizes\":\"128x128\"}],[\"$\",\"link\",null,{\"data-rh\":\"true\",\"rel\":\"apple-touch-icon\",\"href\":\"https://youmind.club/__ym/marketing-assets/logo-96.png\",\"sizes\":\"96x96\"}],[\"$\",\"link\",null,{\"data-rh\":\"true\",\"rel\":\"apple-touch-icon\",\"href\":\"https://youmind.club/__ym/marketing-assets/logo-256.png\",\"sizes\":\"256x256\"}],[\"$\",\"link\",null,{\"data-rh\":\"true\",\"rel\":\"apple-touch-icon\",\"href\":\"https://youmind.club/__ym/marketing-assets/logo-512.png\",\"sizes\":\"512x512\"}],[[\"$\",\"$L15\",null,{\"id\":\"firstpromoter-init\",\"strategy\":\"lazyOnload\",\"dangerouslySetInnerHTML\":{\"__html\":\"\\n (function(w){\\n w.fpr=w.fpr||function(){\\n w.fpr.q = w.fpr.q||[];\\n w.fpr.q[arguments[0]=='set'?'unshift':'push'](arguments);\\n };\\n })(window);\\n fpr(\\\"init\\\", {cid:\\\"r3ldf8qa\\\"});\\n fpr(\\\"click\\\");\\n \"}}],[\"$\",\"$L15\",null,{\"src\":\"https://cdn.firstpromoter.com/fpr.js\",\"strategy\":\"lazyOnload\"}]],[[\"$\",\"$L15\",null,{\"src\":\"https://www.googletagmanager.com/gtag/js?id=G-EP3DKQTSZ9\",\"strategy\":\"lazyOnload\"}],[\"$\",\"$L15\",null,{\"id\":\"gtag-init\",\"strategy\":\"lazyOnload\",\"dangerouslySetInnerHTML\":{\"__html\":\"\\n window.dataLayer = window.dataLayer || [];\\n function gtag(){dataLayer.push(arguments);}\\n gtag('js', new Date());\\n gtag('config', 'G-EP3DKQTSZ9');\\n gtag('config', 'AW-9337236397');\\n \"}}]],[\"$\",\"style\",null,{\"children\":\".icon {\\n fill: currentColor;\\n overflow: hidden;\\n }\"}],[\"$\",\"$L15\",null,{\"src\":\"https://cdn.gooo.ai/assets/iconfont_icons.js\",\"strategy\":\"lazyOnload\"}]]}],[\"$\",\"body\",null,{\"translate\":\"no\",\"suppressHydrationWarning\":true,\"className\":\"bg-white text-foreground\",\"children\":[[\"$\",\"$L16\",null,{\"shadow\":false,\"color\":\"var(--primary)\",\"showSpinner\":false,\"height\":3,\"showForHashAnchor\":false}],[\"$\",\"$L17\",null,{\"children\":[\"$\",\"$L18\",null,{\"children\":[\"$\",\"$L19\",null,{\"attribute\":\"class\",\"defaultTheme\":\"light\",\"forcedTheme\":\"light\",\"enableSystem\":true,\"disableTransitionOnChange\":true,\"children\":\"$L1a\"}]}]}]]}]]}]\n1a:[\"$\",\"$L1b\",null,{\"formats\":\"$undefined\",\"locale\":\"zh-TW\",\"messages\":{\"LocaleLayout\":{\"title\":\"YouMind - AI 創作工作室\",\"description\":\"YouMind 是一個創新的創作智能體,利用生成式 AI 的力量將多樣化的材料轉化為富有靈感的創作。\"},\"Footer\":{\"prompts\":\"提示詞\",\"nanoBanana2VsPro\":\"Nano Banana 2 與 Pro 對比\",\"nanoBananaPrompts\":\"Nano Banana Pro 提示詞\",\"gptImage1_5Prompts\":\"GPT Image 1.5 提示詞\",\"seedream4_5Prompts\":\"Seedream 4.5 提示詞\",\"gemini3Prompts\":\"Gemini 3 Pro 提示詞\",\"seedance20Prompts\":\"Seedance 2.0 提示詞\",\"product\":\"產品\",\"pricing\":\"定價\",\"blog\":\"部落格\",\"notebooklmAlternatives\":\"NotebookLM 替代方案\",\"updates\":\"更新\",\"company\":\"公司\",\"contactUs\":\"聯絡我們\",\"privacy\":\"隱私權政策\",\"terms\":\"服務條款\",\"gptImage2Prompts\":\"GPT Image 2 提示詞\",\"gptImage2Slides\":\"GPT Image 2 投影片\",\"xViralArticlesTracking\":\"𝕏 爆款文章追蹤\",\"abti\":\"ABTI 性格測試\",\"forAgents\":\"面向 Agent\",\"markdownToXArticle\":\"Markdown 轉 𝕏 文章\",\"resources\":\"資源\",\"skills\":\"技能\",\"extension\":\"瀏覽器擴充功能\",\"app\":\"應用程式\",\"blogs\":\"部落格\",\"lennyCareerCoach\":\"Lenny 職涯教練\",\"imageToPrompt\":\"圖片轉提示詞\",\"aiPhotoEditor\":\"AI 修圖工具\",\"photoPromptStudio\":\"AI 照片編輯提示詞\"},\"Auth\":{\"Footnote\":{\"desc\":\"繼續即表示你同意\",\"terms\":\"條款\",\"privacy\":\"隱私權政策\",\"and\":\"和\"},\"Login\":{\"title\":\"加入 YouMind\",\"description\":\"\",\"action\":\"繼續\",\"actionLoading\":\"正在傳送郵件\",\"actionByOAuth\":\"使用 {provider} 繼續\",\"visualSloganPrefix\":\"大膽創作,不止於學\",\"visualSloganEmphasis\":\"\",\"authError\":\"身"])</script><script>self.__next_f.push([1,"份驗證失敗。請重新登入。\",\"form\":{\"email\":{\"label\":\"電子郵件\",\"invalid\":\"請輸入有效的電子郵件\",\"placeholder\":\"輸入你的電子郵件\",\"invalidWithInvite\":\"請輸入有效的電子郵件\"},\"inviteCode\":{\"label\":\"邀請碼\",\"placeholder\":\"輸入邀請碼(可選)\",\"invalid\":\"無效的邀請碼\"},\"turnstile\":{\"required\":\"請完成驗證\"}}},\"OTP\":{\"title\":\"輸入驗證碼\",\"description\":\"我們已向 {email} 傳送郵件\",\"goBack\":\"返回\",\"action\":\"繼續\",\"actionLoading\":\"正在驗證\",\"resend\":\"重新傳送\",\"resending\":\"傳送中\",\"resendSuccess\":\"驗證碼已傳送\",\"form\":{\"token\":{\"label\":\"驗證碼\",\"invalid\":\"請輸入有效的驗證碼\"},\"turnstile\":{\"required\":\"請完成驗證\"}}},\"Onboard\":{\"title\":\"即將完成!\",\"description\":\"我們應該怎麼稱呼你?\",\"action\":\"繼續\",\"actionLoading\":\"正在儲存你的姓名\",\"form\":{\"name\":{\"label\":\"姓名\",\"placeholder\":\"輸入你的姓名\",\"invalid\":\"請輸入姓名\"}}},\"Waiting\":{\"logout\":\"登出\"}},\"Header\":{\"overview\":\"概覽\",\"useCases\":\"使用案例\",\"skills\":\"技能\",\"prompts\":\"提示詞\",\"pricing\":\"定價\",\"download\":\"下載\",\"blog\":\"部落格\",\"updates\":\"更新\",\"signIn\":\"登入\",\"signOut\":\"登出\",\"openYouMind\":\"開啟 YouMind\"},\"Invite\":{\"metaTitle\":\"邀請朋友加入 YouMind\",\"metaDescription\":\"使用邀請碼加入 YouMind,解鎖 200 獎勵點數。\"},\"Pricing\":{\"metaTitle\":\"YouMind 定價\",\"metaDescription\":\"YouMind 是重新構想的 AI 寫作工具,在你思考的地方與你相遇。將零散的想法轉化為完整、精緻的作品。\",\"multiModeSources\":{\"title\":\"多模態素材源\",\"description\":\"一鍵儲存一切 —— YouTube 影片、播客、網頁、音訊、PDF、圖片等等。\"},\"creativeBoards\":{\"title\":\"創意看板\",\"description\":\"YouMind 中的看板是一個整理器,將混亂變為有序的專案。它幫助你理順工作流程,將創意想法轉化為最終作品。\"},\"powerfulAI\":{\"title\":\"強大的 AI\",\"description\":\"由 OpenAI、Anthropic、Google 和 DeepSeek 等頂級 AI 模型驅動,你將體驗到持續高質量的 AI 創作能力。\"},\"faq\":{\"title\":\"常見問題\",\"questions\":{\"howToUse\":{\"question\":\"如何使用 YouMind?\",\"answer\":\"你可以使用 YouMind 瀏覽器外掛或流動應用程式收集資訊,並透過造訪 youmind.ai 進行深度思考和創作。\"},\"isFree\":{\"question\":\"YouMind 免費嗎?\",\"answer\":\"YouMind 提供免費方案,讓你完全存取我們的平台並包含使用積分。在你探索 YouMind 能為你做什麼之後,還有付費方案可支援更高的使用限制和進階功能。\"},\"howToPay\":{\"question\":\"如何為 YouMind 付款?\",\"answer\":\"你可以透過 Stripe 使用信用卡、流動支付和其他方式付款。你可以按月或按年付費。\"}}}},\"Skills\":{\"meta\":{\"title\":\"探索學習、寫作與創作的 AI 技能 - YouMind 技能\",\"description\":\"發現 100+ 可複用的 AI 技能,用於研究、內容創作、社群媒體和簡報。無需編程——直接運行,即刻獲得結果。\",\"packTitle\":\"{name} - YouMind 技能包\",\"skillTitle\":\"{name} - YouMind 技能\",\"tryFree\":\"在 YouMind 免費體驗。\",\"defaultPackDescription\":\"在 YouMind 探索這個技能包。\",\"defaultSkillDescription\":\"在 YouMind 嘗試這個 AI 技能。\"},\"guideText\":\"技能快速上手指南\",\"heroTitle\":\"YouMind 技能廣場\",\"skillsDescription\":\"技能是你在 YouMind 中學習和創作的最佳夥伴,協助你閱讀和思考。\",\"recommendedPacks\":\"推薦技能包\",\"exploreSkills\":\"探索技能\",\"searchPlaceholder\":\"搜尋\",\"latest\":\"最新\",\"installed\":\"安裝次數\",\"noSkillsFound\":\"未找到技能\",\"tryInYouMind\":\"在 YouMind 中試用\",\"backToSkills\":\"技能\",\"copyLink\":\"複製連結\",\"install\":\"安裝\",\"getWith\":\"兌換需\",\"run\":\"執行\",\"author\":\"作者\",\"categoriesLabel\":\"分類\",\"tools\":\"工具\",\"instructions\":\"指令\",\"instructionPrivate\":\"作者已將指令設為私密,以下為指令簡介。\",\"instructionEmpty\":\"暫無指令。\",\"instructionVisibleToCreator\":\"僅建立者可見\",\"featured\":{\"badge\":\"編輯精選\",\"title\":\"為什"])</script><script>self.__next_f.push([1,"麼我們推薦這個技能\",\"by\":\"精選自\",\"defaultCurator\":\"YouHome 編輯部\"},\"relatedSkills\":{\"title\":\"相關技能\",\"viewAll\":\"查看全部\"},\"cta\":{\"title\":\"發現下一個適合你的技能\",\"description\":\"繼續探索更多精選 AI 技能,用於研究、創作和日常工作。\",\"button\":\"探索全部技能\"},\"skills\":\"個技能\",\"credits\":\"積分\",\"goToGallery\":\"返回列表\",\"noBioFound\":\"未找到用戶資料。\",\"installSuccess\":\"技能安裝成功\",\"installFailed\":\"技能安裝失敗\",\"categories\":{\"learn\":\"學習\",\"write\":\"寫作\",\"create\":\"創作\",\"life\":\"生活\",\"research\":\"研究\",\"images\":\"圖片\",\"slides\":\"簡報\",\"webpage\":\"網頁\",\"other\":\"更多\",\"video\":\"影片\"},\"aiAssistant\":{\"hoverHint\":\"AI 助手\",\"title\":\"想要什麼技能?\",\"description\":\"告訴我你的需求,我會努力幫你找到最合適的!\",\"buttonText\":\"幫我推薦\",\"prompt\":\"幫我推薦一些技能\"},\"aiFind\":{\"buttonText\":\"AI 幫你找\",\"prompt\":\"幫我找一個關於「{query}」的技能\"},\"tryIt\":\"立即試用\",\"goExploreSkills\":\"去探索 Skill\",\"goCreateSkill\":\"去創建\",\"editorPickTitle\":\"編輯精選\",\"seeAll\":\"查看全部\",\"editorPicksPage\":{\"title\":\"編輯精選\",\"subtitle\":\"由 YouMind 編輯精選\"},\"topSkills\":{\"weekly\":\"週榜\",\"monthly\":\"月榜\",\"free\":\"熱門免費技能\",\"paid\":\"熱門付費技能\"},\"featuredPacks\":\"精選技能包\"},\"GiftRedeem\":{\"cardAlt\":\"YouMind gift card\",\"loading\":\"Loading…\",\"notFoundTitle\":\"Gift not found\",\"notFoundDescription\":\"This gift link may be invalid or expired. If you believe this is a mistake, please contact support.\",\"unavailableTitle\":\"Gift unavailable\",\"unavailableFallback\":\"This gift is not available for redemption.\",\"unavailableRedeemed\":\"This gift has already been redeemed.\",\"unavailableExpiredRefunded\":\"This gift expired and was refunded to the sender.\",\"unavailableExpiredRefundFailed\":\"This gift has expired. Please contact support for assistance.\",\"unavailableDisputed\":\"This gift is unavailable. Please contact support for assistance.\",\"unavailableRevoked\":\"This gift has been revoked. Please contact support for assistance.\",\"unavailableRefundInProgress\":\"This gift is expiring. Please contact support for assistance.\",\"heading\":\"You've received a gift\",\"summary\":\"{months} of YouMind {tier}\",\"expiryNotice\":\"此禮物有效期至 {date}\",\"redeeming\":\"Redeeming…\",\"redeemButton\":\"Redeem your gift\",\"signInToRedeem\":\"Sign in to redeem\",\"errorCouldNotRedeem\":\"Could not redeem gift\",\"months\":{\"1month\":\"1 month\",\"3months\":\"3 months\",\"6months\":\"6 months\",\"1year\":\"1 year\"},\"unavailableExpired\":\"此禮品已過期。請聯絡贈送人協助處理。\",\"creditPackHeading\":\"你收到了積分\",\"creditPackSummary\":\"{quantity} × 10,000 積分 · 共 {credits} 積分\"},\"CreatorRewardBanner\":{\"homeLabel\":\"創作者激勵計畫啟動\",\"skillsLabel\":\"創作者激勵計畫啟動\"},\"OverviewV2\":{\"hero\":{\"ariaLabel\":\"YouMind 首屏\",\"titlePrefix\":\"大膽創作\",\"titleEmphasis\":\"\",\"descriptionLine1\":\"心有所念,皆可呈現。\",\"descriptionLine2\":\"\",\"cta\":\"免費開始\",\"studioTitle\":\"你的 AI 創作工作室\",\"storyLink\":\"為什麼我們做的是 AI 創作工作室,而不只是工具\",\"storyVideoOpenLabel\":\"播放 YouMind 故事影片\",\"storyVideoCloseLabel\":\"關閉影片\",\"storyVideoTitle\":\"為什麼我們做的是 AI 創作工作室,而不只是工具\",\"storyLinkTitle\":\"堅持創作會改變什麼?\",\"storyLinkSubtitle\":\"請看品牌短片\"},\"useCases\":{\"ariaLabel\":\"YouMind 如何幫你把想法做出來\",\"headlineLine1\":\"每個想法都值得變成作品,\",\"headlineLine2\":\"YouMind 讓這一切成為可能\",\"items\":[{\"image\":\"use-case-capture-v4.webp\",\"title\":\"捕捉閃現的靈感\",\"body\":\"你總有一些偶然撞見的時刻:一篇文章、一段影片、一個突然閃過的念頭...直覺告訴你它們很重要、彷彿都在指向某個方向,卻又說不清為什麼。YouMind 將它們匯聚一處,準備好直到你開始行動的那一刻。\"},{\"image\":\"use-case-thinking-v4.webp\",\"title\":\"推動深入的思考\",\"body\":\"你收藏了什麼,其中藏著"])</script><script>self.__next_f.push([1,"什麼關聯,YouMind 一清二楚。它會替你問出那個還沒想到的問題,補上你跳過的缺口,讓思緒的線始終不斷。於是想法開始揚帆遠航,而非中途擱淺。\"},{\"image\":\"use-case-shape-v4.webp\",\"title\":\"讓想法變成作品\",\"body\":\"YouMind 生成的一切,都只是起點。你可以重寫、重組、打磨,直到它有了你的烙印。你能在此創作文章、投影片、影片、網頁,從此零散的火花,終成作品,並且隨時都能直接分享。\"}]},\"studioStory\":{\"ariaLabel\":\"YouMind 創作工作室介紹\",\"title\":\"你的 AI 創作工作室\",\"videoTitle\":\"YouMind 品牌影片\",\"promptTitle\":\"你想創作什麼?\",\"inputLabel\":\"描述你想創作的內容\",\"placeholder\":\"問我任何問題,或一起做點什麼...\",\"submitLabel\":\"開始創作\"},\"made\":{\"ariaLabel\":\"用 YouMind 創作\",\"title\":\"用 YouMind 創作\",\"description\":\"來自創作者的真實作品\",\"items\":[[\"made-with-youmind/page-01/01-luxury-travel.webp\",\"奢華旅行\",\"投影片\"],[\"made-with-youmind/page-01/02-minimalist-design-studio.webp\",\"極簡設計工作室\",\"網頁\"],[\"made-with-youmind/page-01/03-y2k-about-me.webp\",\"Y2K 關於我\",\"網頁\"],[\"made-with-youmind/page-01/04-pink-retro-podcaster.webp\",\"粉色復古播客人\",\"網頁\"],[\"made-with-youmind/page-01/05-desktop-scrapbook.webp\",\"桌面剪貼簿\",\"網頁\"],[\"made-with-youmind/page-01/06-kelin-blue-gallery-pitch.webp\",\"Kelin 藍色畫廊提案\",\"投影片\"],[\"made-with-youmind/page-02/01-particle-animation-landing-page.webp\",\"粒子動畫落地頁\",\"網頁\"],[\"made-with-youmind/page-02/02-modern-architect.webp\",\"現代建築師\",\"投影片\"],[\"made-with-youmind/page-02/03-welcome-to-our-wedding.webp\",\"歡迎來到我們的婚禮\",\"網頁\"],[\"made-with-youmind/page-02/04-creative-cola-ads-v2.webp\",\"創意可樂廣告\",\"影片\"],[\"made-with-youmind/page-02/05-realistic-commercial-photoshoot.webp\",\"真實商業攝影\",\"圖片\"],[\"made-with-youmind/page-02/06-elegant-folded-paper-cartography.webp\",\"優雅摺紙風地圖\",\"圖片\"]],\"paginationLabel\":\"用 YouMind 創作的作品分頁\",\"paginationPage\":\"顯示第 {page} 頁\"},\"banner\":{\"ariaLabel\":\"那件一直想做的事\",\"line1\":\"想創作的念頭,\",\"line2\":\"在心裡轉了多久?\"},\"creators\":{\"ariaLabel\":\"創作者\",\"carouselLabel\":\"創作者輪播\",\"title\":\"YouMind 創作者社群\",\"description\":\"他們來自不同領域,都在 YouMind 開啟創作\",\"cards\":[[\"creators-v2/01-youtuber.webp\",\"YouTube 影片博主\",\"Marco\",\"從選題到腳本、分鏡、封面,YouMind 幫我在一個對話裡全部搞定。這樣一來我可以把時間花在拍攝和剪輯上。\"],[\"creators-v2/02-student-instagramer.webp\",\"學生 \u0026 IG 博主\",\"Zora Mitchell\",\"在 YouMind 裡,上週拍的一張照片可能變成一個故事,或者一個模糊的靈感變成了一幅抽象畫——這是讓所有事物可以互相對話的地方。\"],[\"creators-v2/03-high-school-teacher.webp\",\"高中物理老師\",\"Priya Sharma\",\"我跟 YouMind 說「做個關於牛頓第一定律的課件,加點學生喜歡的梗」,它一下就做好了,還能直接轉成影片。學生說這是他們第一次覺得物理課還挺有意思的。\"],[\"creators-v2/04-indie-developer.webp\",\"獨立開發者\",\"Alex Turner\",\"YouMind 更像我的產品和 GTM copilot。它幫我追蹤同類產品、使用者討論和發布節奏,也記得我每次功能取捨背後的原因。\"],[\"creators-v2/05-small-business-owner.webp\",\"個體經營者\",\"Carlos Reyes\",\"YouMind 讓我能快速做出專業的海報和文案。顧客都以為我請了團隊\"],[\"creators-v2/06-career-coach.webp\",\"職業規劃教練\",\"Nina\",\"幾個類似案例之後,YouMind 慢慢摸清了我的判斷方式:哪些話背後是真問題,哪些節點該追問。我原本說不清的隱性知識,變成了一個可以複用的技能。新學員一來,能更快進入關鍵。\"],[\"creators-v2/07-product-manager.webp\",\"產品經理\",\"陳佳薇\",\"會議記錄、調研筆記、使用者回饋,資訊太多重點被埋沒。我把這些丟給 YouMind"])</script><script>self.__next_f.push([1,",它幫我抽絲剝繭、發現洞察。這是我第一次覺得 AI 真的能在工作流中幫到我,而非增加負擔。\"]]},\"stats\":{\"ariaLabel\":\"YouMind 里程碑\",\"title\":\"YouMind 里程碑\",\"description\":\"一則筆記、一張截圖、一個閃念。每一天,全球的創作者都能用 YouMind 把靈感火花變成作品。\",\"items\":[[\"創作者\",\"600K+\",\"選擇 YouMind 作為他們的創作工具\"],[\"作品\",\"3M+\",\"文件、圖像、投影片等等在 YouMind 被創作和發布\"],[\"國家和地區\",\"70+\",\"不同語言、文化的創作者在 YouMind 完成作品\"],[\"技能\",\"2K+\",\"創作者們製作並分享的可重用創作技能\"]]},\"ready\":{\"ariaLabel\":\"準備創作\",\"title\":\"準備開始創作了嗎?\",\"placeholder\":\"讓 YouMind 為我創作……\",\"submitLabel\":\"送出提示詞\",\"toolsLabel\":\"創作模式\",\"recommendationsLabel\":\"創作推薦\",\"previousLabel\":\"上一組範例\",\"nextLabel\":\"下一組範例\",\"toolLabels\":{\"learn\":\"學習\",\"write\":\"寫作\",\"image\":\"圖像\",\"slides\":\"簡報\",\"webpage\":\"網頁\",\"video\":\"影片\"},\"learnPrompts\":{\"p1\":\"將梅西 2026 年帽子戲法與世界盃史上最偉大的個人表現進行對比\",\"p2\":\"為 Anthropic Mythos/Fable 關停事件生成一份結構化復盤\",\"p3\":\"生成一份關於 2025–2026 年 AI 人才流動的數據驅動研究簡報\"},\"writePrompts\":{\"p1\":\"寫一篇文章,梳理 SpaceX-Cursor 收購後的 AI 程式設計格局\",\"p2\":\"寫一支 TikTok 腳本,講 Allbirds 這個鞋履品牌如何轉向銷售 AI 伺服器\",\"p3\":\"起草一組 X thread,主題是「為什麼戰爭『結束』了,汽油仍然超過 4 美元」\"},\"learnPromptNames\":{\"p1\":\"梅西 2026 年帽子戲法 vs. 世界盃傳奇表現\",\"p2\":\"Anthropic Mythos / Fable 關停復盤\",\"p3\":\"用數據看 2025–2026 年 AI 人才流失\"},\"writePromptNames\":{\"p1\":\"SpaceX 收購 Cursor 後的 AI 程式設計格局\",\"p2\":\"Allbirds:從運動鞋到 AI 伺服器\",\"p3\":\"戰爭結束後汽油為何仍要 4 美元\"},\"placeholderPrompts\":[\"讓 YouMind 研究下班後學習新技能的最佳方法\",\"讓 YouMind 寫一份在家工作時保持專注的簡短指南\",\"讓 YouMind 建立一張安靜舒適的居家辦公室佈置圖\",\"讓 YouMind 建立一套關於規劃高效一週的投影片\",\"讓 YouMind 建立一段關於養成更好日常習慣的 30 秒影片\",\"讓 YouMind 建立一個優雅的個人閱讀清單網頁\"],\"startLabel\":\"開始\"},\"closing\":{\"titlePrefix\":\"大膽創作\",\"titleEmphasis\":\"\",\"descriptionLine1\":\"YouMind 是每一位內容創作者,都值得擁有的好工具。\",\"descriptionLine2\":\"\",\"cta\":\"開始創作\",\"downloads\":{\"ariaLabel\":\"下載 YouMind\",\"browser\":{\"title\":\"瀏覽器擴充功能\",\"action\":\"加入 Chrome\"},\"android\":{\"title\":\"Android\",\"action\":\"取得 App\"},\"ios\":{\"title\":\"iOS\",\"action\":\"取得 App\"},\"macos\":{\"title\":\"macOS\",\"action\":\"下載\",\"unsupportedTitle\":\"暫不支援 Intel Mac\",\"unsupportedDescription\":\"目前 macOS beta 僅支援 Apple 晶片 Mac,Intel Mac 支援會在後續版本開放。\",\"unsupportedClose\":\"知道了\"}}},\"studio\":{\"workspaceName\":\"來杯咖啡,開始創作\",\"allTasks\":\"你的任務\",\"tasks\":[{\"id\":\"morning-ai-digest\",\"title\":\"AI 晨間摘要\",\"kind\":\"schedule\",\"statusLabel\":\"定時任務\",\"prompt\":\"每天上午 9 點,從 Reddit、X 和 Hacker News 拉取前 5 個熱門話題。每個話題用一句話說明,並附上來源連結。\",\"messages\":[{\"type\":\"assistant\",\"body\":\"我已經為你安排好每日熱門話題摘要任務。每天上午 9:00,我會從 Reddit、X 和 Hacker News 中整理 5-10 個最值得關注的話題,並提供:\"},{\"type\":\"tool\",\"title\":\"AI 晨間摘要\",\"detail\":\"定時任務已建立\"}],\"summaryItems\":[\"話題標題\",\"一句話解釋它為什麼正在被討論\",\"可靠來源連結(如有)\"],\"todoItems\":[\"建立每日 AI 晨間摘要定時任務。\"],\"finalNote\":\"首次執行:明天 09:00。如需暫停或調整,可在定時任務中管理。\"},{\"id\":\"matcha-brands-report\",\"title\":\"十大抹茶品牌報告\",\"kind\":\"research\",\"statusLabel\":\"研究任務\",\"prompt\":\"為一家精品"])</script><script>self.__next_f.push([1,"咖啡店對比最值得關注的抹茶品牌。包含價格區間、風味特徵、產地與採購資訊,以及每個品牌適合的使用情境。\",\"messages\":[{\"type\":\"assistant\",\"body\":\"我從產地、價格、風味和供貨便利性幾個維度,對儀式級高端抹茶和日常飲用型抹茶做了對比,並按實際使用情境重新分組。\"},{\"type\":\"tool\",\"title\":\"品牌對比表\",\"detail\":\"品牌矩陣已整理\"},{\"type\":\"assistant\",\"body\":\"報告會重點說明哪些品牌更適合拿鐵、零售貨架、品鑑套餐,以及高端單一產地菜單。\"}],\"summaryItems\":[\"價格區間\",\"風味特徵\",\"產地與採購資訊\",\"最適合的使用情境\"],\"todoItems\":[\"研究近期熱門抹茶品牌\",\"收集前 10 個品牌的價格、產地和風味資料\",\"整理每個品牌對應的創作者或達人背書\",\"撰寫結構化品牌對比報告\"],\"finalNote\":\"可以直接交給採購團隊審閱,也可以進一步整理成供應商候選名單。\"},{\"id\":\"trust-talk-deck\",\"title\":\"小眾受眾信任構建簡報\",\"kind\":\"presentation\",\"statusLabel\":\"簡報草稿\",\"prompt\":\"做一份 12 頁投影片,用於 15 分鐘演講:《如何與小眾受眾建立信任》。文字盡量少,視覺大膽,並包含講者備註。\",\"messages\":[{\"type\":\"assistant\",\"body\":\"我先為創作者、創業者和營運者整理了一條緊湊的演講主線,面向那些受眾規模不大但信任度很高的人。\"},{\"type\":\"tool\",\"title\":\"生成投影片\",\"detail\":\"簡報和演講備註已產生\"},{\"type\":\"assistant\",\"body\":\"最終產物包含 12 頁視覺強烈的投影片、一份講者備註文件,以及適配 15 分鐘演講的節奏建議。\"}],\"summaryItems\":[\"演講大綱\",\"投影片圖片\",\"講者備註\",\"節奏建議\"],\"todoItems\":[\"起草內部演講大綱\",\"確認大綱方向\",\"產生投影片圖片\",\"整理簡報和講者備註\"],\"finalNote\":\"可以直接演講,也可以繼續壓縮成短分享,或擴展成更完整的工作坊簡報。\"},{\"id\":\"portfolio-site\",\"title\":\"我的作品集網站\",\"kind\":\"website\",\"statusLabel\":\"網頁\",\"prompt\":\"建立一個簡潔的個人作品集:短簡介、三個帶縮圖的精選專案、聯絡方式區域。使用乾淨的無襯線字體和深色模式。\",\"messages\":[{\"type\":\"assistant\",\"body\":\"我已經搭好一個簡潔的深色模式作品集頁面,包含短簡介、三個專案卡片和聯絡方式區域。\"},{\"type\":\"tool\",\"title\":\"生成網頁\",\"detail\":\"網頁已修改\"},{\"type\":\"assistant\",\"body\":\"頁面已經整理成一個獨立 HTML 產物,使用系統字體,不依賴任何外部資源。\"}],\"summaryItems\":[\"短簡介\",\"三個專案卡片\",\"聯絡方式區域\",\"深色模式\"],\"todoItems\":[\"生成個人作品集網頁。\"],\"finalNote\":\"可以直接開啟預覽,也可以繼續修改文案或替換連結。\"},{\"id\":\"headphones-video\",\"title\":\"耳機產品影片\",\"kind\":\"video\",\"statusLabel\":\"影片片段\",\"prompt\":\"為奶油白無線耳機生成一支明亮的 15 秒產品影片。整體要高級、輕盈、極簡,有柔和日光、產品懸浮運動和乾淨的收尾畫面。\",\"messages\":[{\"type\":\"assistant\",\"body\":\"我調用了生成影片技能,製作了一支明亮、精緻的產品短片:柔和陰影、輕微懸浮運動,並穿插材質細節特寫。\"},{\"type\":\"tool\",\"title\":\"生成影片\",\"detail\":\"影片片段已建立\"},{\"type\":\"assistant\",\"body\":\"最終影片把耳機放在明亮的棚拍色調中,鏡頭運動很輕,整體更像高端零售頁面的產品主視覺。\"}],\"summaryItems\":[\"柔和日光情境\",\"產品懸浮運動\",\"材質細節特寫\",\"乾淨的收尾畫面\"],\"todoItems\":[\"產生明亮的產品影片概念\",\"渲染 15 秒耳機影片\",\"準備預覽播放器\",\"總結鏡頭拆解\"],\"finalNote\":\"可以用於行銷活動樣稿,也可以作為產品頁首屏影片。\"}],\"aria\":{\"materials\":\"資料\",\"webpages\":\"網頁\",\"newTask\":\"新任務\",\"fileCount\":\"{count} 個文件\",\"shareTask\":\"分享任務\",\"moreActions\":\"更多操作\"},\"artifactTitles\":{\"matchaReport\":\"十大抹茶品牌:健康創作者報告 2026\",\"slidesOu"])</script><script>self.__next_f.push([1,"tline\":\"大綱 - 如何與小眾受眾建立信任\",\"slidesNotes\":\"講者備註 - 如何與小眾受眾建立信任\",\"slidesDeck\":\"如何與小眾受眾建立信任\",\"website\":\"Mira:AI 產品與社區\"},\"common\":{\"thoughtForAWhile\":\"思考了一會儿\",\"runningSkill\":\"正在執行技能\",\"planned\":\"已規劃\",\"loadedOneTool\":\"已載入 1 個工具\",\"documentCreated\":\"文件已建立\",\"taskCompleted\":\"任務已完成\",\"allTodosCompleted\":\"所有待辦已完成\",\"createSlides\":\"生成投影片\",\"createVideo\":\"生成影片\",\"createWebpages\":\"生成網頁\",\"research\":\"研究\",\"open\":\"開啟\",\"slidesModified\":\"投影片已修改\"},\"panel\":{\"morePreviewOptions\":\"更多預覽選項\",\"downloadWebpage\":\"下載網頁\",\"shareWebpage\":\"分享網頁\",\"moreWebpageActions\":\"更多網頁操作\",\"downloadDeck\":\"下載簡報\",\"moreDeckActions\":\"更多簡報操作\"},\"tasksTab\":\"任務\",\"startCreating\":\"開始創作\",\"artifacts\":{\"matchaResearch\":{\"planAriaLabel\":\"研究计划\",\"planTitle\":\"研究计划\",\"planDescription\":\"深入研究 10+ 个抹茶品牌,覆蓋風味、等级、价格、產地與創作者合作。重点关注 2025-2026 年健康生活創作者经济趨勢。\",\"questions\":[{\"label\":\"Q1\",\"text\":\"2025-2026 年 Instagram、TikTok 和 YouTube 上,健康生活創作者最常提到的 10 个抹茶品牌有哪些?\"},{\"label\":\"Q2\",\"text\":\"每个品牌的風味、等级、价格区间和產地信息分别是什么?\"},{\"label\":\"Q3\",\"text\":\"哪些健康生活創作者正在主动推荐这些抹茶品牌?\"},{\"label\":\"Q4\",\"text\":\"传统日本品牌和新兴西方健康生活品牌相比,有什么差异?\"}],\"searchAriaLabel\":\"搜索结果\",\"searchQuery\":\"搜索 2025 年最佳抹茶品牌 健康創作者 TikTok 排名\",\"searchResults\":[{\"title\":\"抹茶市场趨勢:2026 年预测與增长动力\",\"source\":\"atekin\"},{\"title\":\"京都洞察:2025 全球抹茶消费报告\",\"source\":\"mckinsey\"},{\"title\":\"2026 抹茶热潮:咖啡馆與零售的 11 个预测\",\"source\":\"forbes\"},{\"title\":\"Zenith Analytics:2026 抹茶采用数据\",\"source\":\"google\"},{\"title\":\"2025 年美国 55 个热门抹茶创业品牌\",\"source\":\"techcrunch\"}],\"moreResults\":\"+ 3 条更多结果\",\"openReportLabel\":\"開啟报告预览\",\"reportTitle\":\"十大抹茶品牌:健康生活創作者报告 2026\",\"reportSummary\":\"抹茶泡沫并没有破裂,而是开始分层。TikTok 上的 #MatchaTok 依然每天带来百万级观看,創作者经济也分成了仪式感纯粹派、健康审美品牌和日常饮用派。\",\"reportHighlights\":[[\"传统金标准:\",\"Ippodo, Marukyu Koyamaen\"],[\"創作者偏爱的品牌:\",\"Rocky’s Matcha, Matchaful, Naoki\"],[\"健康 DTC:\",\"Pique, Encha, Golde\"]],\"delivered\":\"报告已完成。包含對比表、品牌笔记、創作者與品牌映射、按使用情境整理的购买指南和趨勢觀察。\"},\"matchaReport\":{\"title\":\"十大抹茶品牌:健康生活創作者报告 2026\",\"intro\":\"抹茶泡沫并没有破裂,而是开始分层。TikTok 上的 #MatchaTok 依然每天带来百万级观看,創作者经济也清楚分成三类:仪式级抹茶纯粹派、健康生活方式审美品牌,以及更容易入门的日常饮用派。下面是这片市场的完整圖景。\",\"tldrTitle\":\"TL;DR\",\"tldr\":[[\"传统金标准:\",\"Ippodo, Marukyu Koyamaen\"],[\"創作者偏爱的品牌:\",\"Rocky’s Matcha, Matchaful, Naoki\"],[\"健康 DTC:\",\"Pique, Encha, Golde\"],[\"咖啡馆與商超默认選擇:\",\"Mizuba, Jade Leaf\"]],\"comparisonTitle\":\"對比表\",\"comparisonAriaLabel\":\"抹茶品牌對比\",\"comparisonHeaders\":[\"品牌\",\"產地\",\"風味\",\"价格\",\"創作者卖点\"],\"comparisonRows\":[[\"Ippodo Ummon\",\"Uji, Kyoto\",\"浓郁鲜味,涩感低\",\"$$34 / 40g\",\"传统权威選擇\"],[\"Marukyu Aoarashi\",\"Uji, Kyoto\",\"柔和的植物甜感\",\"$$28 / 40g\",\"茶道学习者偏爱\"],[\"Rocky’s Matcha\",\"Kagoshima\",\"顺滑温和\",\"$$40 / 30g\",\"洛杉矶創作者热门品牌\"],[\"Matchaful Hojo\",\"Shizuoka\",\"明亮青草香\",\"$$42 / 30g\",\"纽约咖啡馆常备\"],[\"Pique Sun Goddess\",\"Kagoshima\",\"柔和、低苦味条装\",\"$$68 / 28\",\"随身携"])</script><script>self.__next_f.push([1,"带的高階選擇\"]],\"brandNotesTitle\":\"品牌笔记\",\"brandNotes\":[{\"title\":\"Ippodo\",\"body\":\"这家擁有 300 年历史的京都老铺,是其他仪式级抹茶常被拿来比较的基准。Ummon 依然是推荐给纯粹派用户时最稳妥的高階選擇。\"},{\"title\":\"Rocky’s Matcha\",\"body\":\"这个新品牌把抹茶做成了一种时尚表达。它依靠稀缺感、咖啡馆联名,以及一眼就能识别的罐身在創作者圈传播。\"},{\"title\":\"Pique\",\"body\":\"高階结晶条装能打动創作者市场,因为它适合旅行包、晨间流程和快速食谱影片。\"}],\"creatorMapTitle\":\"創作者 → 品牌映射\",\"creatorMap\":[\"@misheru:Matchaful、Ippodo\",\"@matcha.mommy:Mizuba、Naoki\",\"@kaitlinzheng:Pique、Rocky’s Matcha\",\"Trinity Mouzon Wofford:Golde\"],\"buyingGuideTitle\":\"购买指南\",\"buyingGuide\":[\"首次购买:Jade Leaf 或 Naoki\",\"日常拿铁:Encha 或 Golde\",\"纯饮点茶:Ippodo Ummon 或 Marukyu Aoarashi\",\"审美礼物:Rocky’s Matcha 或 Matchaful\",\"随身情境:Pique 条装\"]},\"slidesFlow\":{\"confirmAriaLabel\":\"确认大纲與视觉风格\",\"confirmTitle\":\"已确认:大纲與视觉风格\",\"confirmQuestion\":\"大纲会把这场演讲组织为:流量是借来的,信任会复利 -\u003e 三个信任信号(稳定出现、真實袒露、足够具体)-\u003e 7 天启动行动手册。这个方向可以吗?\",\"confirmFirstOptions\":[\"同意,產生全部 12 頁\",\"同意,但先预览 3 頁\",\"先调整结构\"],\"visualQuestion\":\"这套投影片的视觉方向?\",\"confirmVisualOptions\":[\"瑞士国际主义风格\",\"现代极简编辑风\",\"水墨 + 极简\"],\"confirmReplyQuestion\":\"Q: 大纲会把这场演讲组织为:流量是借来的,信任会复利 -\u003e 三个信任信号(稳定出现、真實袒露、足够具体)-\u003e 7 天启动行动手册。这个方向可以吗?\",\"confirmReplyAnswer\":\"A: 看起来对,继续產生剩下 9 頁\",\"visualReplyQuestion\":\"Q: 这套投影片的视觉方向?\",\"visualReplyAnswer\":\"A: 瑞士国际主义风格\",\"previewConfirmAriaLabel\":\"看起来对,继续產生剩下 9 頁\",\"previewConfirmTitle\":\"看起来对,继续產生剩下 9 頁\",\"previewReplyQuestion\":\"Q: 看起来对,继续產生剩下 9 頁?\",\"previewReplyAnswer\":\"A: 看起来对,產生剩下 9 頁\",\"outlineTitle\":\"大纲:小眾受眾信任構建\",\"openOutlineLabel\":\"開啟大纲预览\",\"outlinePreviewTitle\":\"如何與小眾受眾建立信任\",\"outlinePreviewItems\":[\"受眾:在 newsletter、播客、独立產品或社区中擁有少于 1000 名受眾的創作者、创业者和运营者。\",\"目标:带走一个清楚框架和 7 天行动手册,在不先追求粉丝增长的情况下加深信任。\",\"叙事方式:把“小”重新解释成优势,介绍三个信任信号,再把框架转成行动。\",\"頁数范围:12 頁,每頁约 75 秒。\"],\"outlinePreviewSections\":[{\"title\":\"1. 标题:如何與小眾受眾建立信任\",\"items\":[\"封面副标题:100 个信任你的读者胜过一群陌生人。\",\"开场先点明房间里的事实:这里大多数人的追蹤者都不到 1000。\"]},{\"title\":\"2. 钩子:你追逐的数字错了\",\"items\":[\"對比 5 万粉丝却只有 12 个赞的账号,與一个 400 人邮件列表。\",\"落点:触达是租来的,信任会复利。\"]}],\"outlineDrafted\":\"大纲已起草:12 頁,每頁约 75 秒。產生前需要两个快速确认:\",\"threeSlidesGenerated\":\"已產生 3 张投影片圖片\",\"slideThumbnailsLabel\":\"已產生投影片缩略圖\",\"openSlideLabel\":\"開啟 {title}\",\"previewReady\":\"预览已就绪:3 頁已经放入 deck。封面、框架锚点和信任信号一致;奶油纸张背景與红色信号强调色也已统一。\",\"nineSlidesGenerated\":\"已產生 9 张投影片圖片\",\"deckTitle\":\"與小眾受眾建立信任\",\"openDeckLabel\":\"開啟投影片预览\",\"notesTitle\":\"講者備註:小眾受眾信任構建\",\"openNotesLabel\":\"開啟演讲備註预览\",\"notesPreview\":{\"intro\":\"一场 15 分钟演讲,12 頁投影片,每頁平均约 75 秒。\",\"body\":\"節奏目标:封面和结尾各控制在 30 秒"])</script><script>self.__next_f.push([1,"内。钩子、定义和 7 天行动手册是最重的部分,框架頁承担整场演讲。\",\"sectionTitle\":\"第 01 頁:封面,约 20 秒\",\"sectionBody\":\"上台。不读标题。先点明现场:你们大多数人的追蹤者不到一千。很好,这正是这场演讲最适合的房间。\"},\"finalCopy\":\"完成。看板上有两个产物:投影片和講者備註。整套 deck 使用奶油纸张、红色信号强调色,并在 12 頁中克制地加入钴蓝和芥末黄。\",\"deckSlidesLabel\":\"投影片\",\"showSlideLabel\":\"显示 {title}\"},\"slidesArtifacts\":{\"outline\":{\"title\":\"大纲:小眾受眾信任構建\",\"intro\":\"目标:带走一个清楚框架和 7 天行动手册,在不先追求粉丝增长的情况下加深信任。\",\"talkFrameTitle\":\"如何與小眾受眾建立信任\",\"talkFrameItems\":[\"把“小”重新定义为优势,而不是短板。\",\"說明为什么触达是租来的,而信任会复利。\",\"介绍三个信任信号:稳定、真實袒露、足够具体。\",\"把框架转成一个可执行的 7 天行动手册。\"],\"slidePlanTitle\":\"與小眾受眾建立信任\",\"slidePlanItems\":[\"标题:與小眾受眾建立信任。\",\"钩子:你追逐的数字错了。\",\"重构:信任是重复、具体、自愿的注意力。\",\"证明:500 人可以做到 5 万人做不到的事。\",\"信号 01:按可预期的節奏出现。\",\"信号 02:先展示过程,再展示结果。\",\"信号 03:说清楚它适合谁,也不适合谁。\",\"行动手册:用 7 天开始累积信任。\",\"结尾:停止借注意力,开始建立相信。\"],\"visualDirectionTitle\":\"视觉方向\",\"visualDirectionBody\":\"瑞士国际主义风格,奶油纸张、强黑色排版、红色信号强调色,并用克制的钴蓝和芥末黄支撑框架頁。\"},\"notes\":{\"title\":\"講者備註:小眾受眾信任構建\",\"intro\":\"一场 15 分钟演讲,12 頁投影片,每頁平均约 75 秒。\",\"sections\":[{\"title\":\"節奏備註\",\"body\":\"封面和结尾各控制在 30 秒内。钩子、定义和 7 天行动手册是最重的部分。框架頁承载这场演讲的情绪重量與实用价值。\"},{\"title\":\"第 01 頁:封面,约 20 秒\",\"body\":\"上台。不读标题。先点明现场:你们大多数人的追蹤者不到一千。很好,这正是这场演讲最适合的房间。\"},{\"title\":\"第 02 頁:钩子,约 90 秒\",\"body\":\"對比 5 万粉丝却只有 12 个赞的账号,以及一个 400 人邮件列表能在一天内填满工作坊。直接說明:注意力不等于相信。\"},{\"title\":\"第 03 頁:信任定义,约 90 秒\",\"body\":\"把信任定义为重复、具体、自愿的注意力。重复意味着他们会回来;具体意味着他们知道为什么来;自愿意味着如果停止,他们会想念。\"},{\"title\":\"第 08 頁:7 天行动手册,约 120 秒\",\"body\":\"这一段要务实。每天给一个清楚动作,把目标定义为多获得一个回复、推荐或回访读者,而不是追逐虚荣指标。\"},{\"title\":\"结尾:约 30 秒\",\"body\":\"用这句话收尾:停止借注意力,开始建立相信。说完停顿,让投影片完成最后的表达。\"}]}},\"websitePreview\":{\"openLabel\":\"開啟作品集網頁预览\",\"title\":\"Mira:AI 產品與社区\",\"type\":\"網頁\",\"finalIntro\":\"完成。你的作品集已经作为網頁产物產生:深色模式、三个带渐变缩略圖的專案卡片,以及一个可以替換連結的聯絡方式区域。\",\"notesTitle\":\"几点說明:\",\"finalBullets\":[\"简介使用了你的真實背景:YouMind PM、Women Coding Club 和 Vibe Coding。需要的话可以调整表述。\",\"聯絡連結是佔位:mailto:hello@example.com 等。替換成你的真實账号即可。\",\"已構建为单个 HTML 文件,系統字体栈,无外部依賴。\"],\"finalQuestion\":\"要我替換强调色、压缩文案,或增加第四个專案吗?\",\"iframeTitle\":\"Shuting 作品集網頁\"},\"videoPreview\":{\"assistantNote\":\"我会使用 Create video 技能產生一个明亮、高级的耳机短片:柔和日光、悬浮运动、干净特写和极简產品亮相。\",\"playerLabel\":\""])</script><script>self.__next_f.push([1,"已產生的耳机產品影片\",\"done\":\"完成。已產生 15 秒明亮無線耳机產品影片。\",\"shotBreakdownTitle\":\"鏡頭拆解:\",\"shotItems\":[\"0:00-0:04:柔和日光中,暖色中性背景里耳机轻盈出现。\",\"0:04-0:08:贴近耳罩和头梁材质,展示柔软触感。\",\"0:08-0:12:在留白空间中缓慢旋转,阴影轻微移动。\",\"0:12-0:15:极简收尾,產品居中,并留出品牌文案空间。\"],\"finalNote\":\"轻柔环境配乐與平滑轉場,适合作为產品頁首屏影片。\"}},\"files\":{\"fileTab\":\"文件\",\"allFiles\":\"所有文件\",\"openFileLabel\":\"開啟 {title}\",\"ariaLabel\":\"Studio 文件\",\"sidebarItems\":[{\"id\":\"story\",\"title\":\"YouMind 背後的小故事\"},{\"id\":\"trust-slide\",\"title\":\"構建信任的小型受眾簡報...\"},{\"id\":\"youtube\",\"title\":\"大膽創作|YouMind 1.0\"},{\"id\":\"matcha\",\"title\":\"十大抹茶品牌:健康生活...\"},{\"id\":\"headphones\",\"title\":\"無線耳机產品影片...\"},{\"id\":\"subscription\",\"title\":\"目前訂閱支付率...\"},{\"id\":\"jazz\",\"title\":\"WEDNESDAY JAZZ:晨间...\"},{\"id\":\"mira\",\"title\":\"Mira:AI 產品與社区\"},{\"id\":\"outline\",\"title\":\"大纲:小眾受眾信任構建...\"},{\"id\":\"dog\",\"title\":\"戴珍珠耳环的犬\"},{\"id\":\"coffee-post\",\"title\":\"咖啡在煮,阳光刚好...\"},{\"id\":\"meeting\",\"title\":\"meeting_2026.05.03\"},{\"id\":\"quote\",\"title\":\"标准比例约为...\"}],\"cards\":[{\"id\":\"story\",\"source\":\"YouMind\",\"title\":\"YouMind 背後的小故事\",\"body\":\"如今,我们花很多时间刷 YouTube 影片、推文和 Instagram 帖子,最后却发现这些时间几乎没有沉淀出真正有价值的东西。\",\"time\":\"剛剛\"},{\"id\":\"mira\",\"title\":\"Mira 的個人主頁\",\"time\":\"1 小時前\"},{\"id\":\"coffee-post\",\"author\":\"Alex Johnson\",\"handle\":\"@johnson\",\"body\":\"咖啡在煮,阳光刚露头,一切都还有可能。\",\"time\":\"2 個月前\"},{\"id\":\"trust-slide\",\"title\":\"與小眾受眾建立信任\",\"time\":\"\"},{\"id\":\"outline\",\"title\":\"大纲:小眾受眾信任構建\",\"body\":\"一场 15 分钟演讲,12 頁投影片,每頁平均约 75 秒。節奏目标:封面和结尾各不超过 30 秒;钩子、定义和 7 天行动手册最重。\"},{\"id\":\"coffee-ratio\",\"body\":\"标准比例约为每 6 盎司水搭配 2 汤匙咖啡。\",\"time\":\"2 個月前\"},{\"id\":\"youtube\",\"source\":\"Youtube\",\"title\":\"大膽創作|YouMind 1.0\",\"body\":\"\",\"time\":\"1 小時前\"},{\"id\":\"subscription\",\"title\":\"2025 年工具软件目前訂閱支付率\",\"time\":\"2026 年 6 月 5 日\"},{\"id\":\"matcha\",\"title\":\"十大抹茶品牌:健康生活創作者报告 2026\",\"body\":\"抹茶泡沫并没有破裂,而是开始分层。Hailey Bieber 上個月也许说它“被高估”,但 TikTok 上的 #MatchaTok 依然每天有百万级观看。\"},{\"id\":\"jazz\",\"title\":\"WEDNESDAY JAZZ:晨间咖啡馆爵士乐...\",\"time\":\"2 個月前\"},{\"id\":\"meeting\",\"title\":\"meeting_2026.05.03\",\"time\":\"1 個月前\"}]}}},\"ForAgents\":{\"metaTitle\":\"YouMind for agents\",\"metaDescription\":\"面向 AI agent 使用 YouMind 的說明和 API 參考。\",\"eyebrow\":\"面向 Agent\",\"title\":\"讓 AI agent 使用 YouMind\",\"subtitle\":\"把官方 YouMind skill 和 API 參考交給你的 agent,讓它在你的 YouMind 工作區中擷取、整理和創作。\",\"cardTitle\":\"複製這段 prompt\",\"cardDescription\":\"複製到你的 agent 對話或自動化執行器中。\",\"prompt\":\"Read https://youmind.club/skill.md and follow the instructions to use YouMind.\\n\\nIf you can install skills, run:\\nnpx skills add https://github.com/YouMind-OpenLab/skills --skill youmind\",\"copy\":\"複製 prompt\",\"copied\":\"已複製\"},\"FirstPurchaseBanner\":{\"label\":\"立即訂閱,最高省 50%,手慢無 →\"},\"DownloadPage\":{\"metadata\":{\"title\":\"下載 YouMind\",\"description\":\"下載適用於 macOS、iOS、Android 和 Chrome 的 YouMind。\"},\"hero\":{\"title\":\"隨時隨地用 YouMind\",\"description\":\"你可以在行動端和桌面端下載並使用 YouMind,獲得不同的體驗。\",\"macosCta\":\"下載 macOS 版\"},\"ariaLabel\":\"下載選項\",\"mobile\":{\"title\":\"行動端\"},\"desktop\":{\"title\":\"桌面端\"},\"browser\":{\"title\":\"瀏覽器擴充功能\"},\"plat"])</script><script>self.__next_f.push([1,"forms\":{\"ios\":\"iOS\",\"android\":\"Android\",\"macosAppleSilicon\":\"macOS(Apple 晶片)\",\"windows\":\"Windows\",\"chromeWebStore\":\"Chrome 線上應用程式商店\"},\"actions\":{\"scanQr\":\"掃碼下載\",\"appStore\":\"App Store\",\"playStore\":\"Play Store\",\"download\":\"下載\",\"comingSoon\":\"敬請期待\",\"open\":\"打開\"},\"macosUnsupported\":{\"title\":\"暫不支援 Intel 晶片 Mac\",\"description\":\"目前 macOS 用戶端僅支援 Apple 晶片 Mac,Intel 晶片 Mac 將於後續支援。\",\"close\":\"知道了\"}},\"Domain\":{\"skill\":{\"gallery\":{\"priceFilter\":{\"all\":\"全部\",\"paid\":\"付費\",\"free\":\"免費\"}}}}},\"now\":\"$undefined\",\"timeZone\":\"UTC\",\"children\":\"$L1c\"}]\n1c:[\"$\",\"$L1d\",null,{\"locale\":\"zh-TW\",\"messages\":{\"Skills\":{\"meta\":{\"title\":\"探索學習、寫作與創作的 AI 技能 - YouMind Skills\",\"description\":\"發現 100+ 可複用的 AI 技能,用於研究、內容創作、社群媒體和簡報。無需編程——直接運行,即刻獲得結果。\",\"packTitle\":\"{name} - YouMind 技能包\",\"skillTitle\":\"{name} - YouMind 技能\",\"tryFree\":\"在 YouMind 免費體驗。\",\"defaultPackDescription\":\"在 YouMind 探索這個技能包。\",\"defaultSkillDescription\":\"在 YouMind 嘗試這個 AI 技能。\"}},\"Common\":{\"emptyState\":{\"nothingHere\":\"這裡什麼都沒有\"},\"subscription\":{\"renewChange\":{\"message\":\"將於 {{date}} 從 {{currentTier}} {{currentSubTier}} {{currentInterval}} 變更為 {{newTier}} {{newSubTier}} {{newInterval}}\"},\"pro\":{\"buttonUpcoming\":\"即將生效\"},\"max\":{\"buttonUpcoming\":\"即將生效\"}},\"codeBlock\":{\"showAll\":\"展開全部({{count}} 行)\",\"collapse\":\"收合\"}},\"Domain\":{\"chat\":{\"chatModelGroup\":\"對話\",\"reasoningModelGroup\":\"推理\",\"modeAgentDescription\":\"更深入思考並執行操作\",\"modeAskDescription\":\"即時回答\",\"searchTooltip\":\"搜尋互聯網\",\"toolsLabel\":\"工具\",\"toolSearchName\":\"研究\",\"toolSearchShortName\":\"研究\",\"toolLearnName\":\"學習\",\"toolWritePageName\":\"寫文件\",\"toolWritePageShortName\":\"寫作\",\"toolCreateImageName\":\"創建圖片\",\"toolCreateImageShortName\":\"圖片\",\"toolCreateDiagramName\":\"創建圖表\",\"toolCreateDiagramShortName\":\"圖表\",\"toolCreateAudioName\":\"創建音訊\",\"toolCreateAudioShortName\":\"音訊\",\"toolGenerateWebpageName\":\"創建網頁\",\"toolGenerateWebpageShortName\":\"網頁\",\"imageSizeLabel\":\"圖片尺寸\",\"imageSizeLandscape\":\"橫向\",\"imageSizeSquare\":\"正方形\",\"imageSizePortrait\":\"縱向\",\"imageStyleLabel\":\"圖片風格\",\"imageStyleGhibli\":\"吉卜力\",\"imageStylePixar\":\"皮克斯\",\"imageStyleCartoon\":\"卡通\",\"imageStylePixel\":\"像素\",\"writingModelLabel\":\"寫作模型\",\"modelBadgeThinking\":\"思考型\",\"modelBadgeNew\":\"新\",\"modelJiMeng40\":\"即夢 4.0\",\"modelBadgeFree\":\"限時免費\",\"imageStyleButtonLabel\":\"設定\",\"askModeSubtitle\":\"以最快捷、最簡便的方式體驗世界頂尖模型。\",\"askModeDescription\":\"在问答模式下,你可以體驗最新的模型,更快地獲得想要的答案。\",\"agentModeSubtitle\":\"學習與創作最忠實的夥伴。\",\"agentModeDescription\":\"在 Agent 模式下,你可以與 AI 協作來創建內容、查找資訊,並幫助你管理專案內容。\",\"modeDisabledTooltip\":\"當前對話處於 {{mode}} 模式。請開啟新對話以切換模式。\",\"askModeName\":\"Ask\",\"agentModeName\":\"Agent\",\"imageModelLabel\":\"圖片模型\",\"toolSlidesGenerateName\":\"建立簡報\",\"slidesAspectRatioLabel\":\"畫面比例\",\"slidesQualityLabel\":\"圖片品質\",\"slidesQualityLow\":\"低\",\"slidesQualityMedium\":\"中\",\"slidesQualityHigh\":\"高\",\"slidesModelLabel\":\"Image model\",\"toolSlidesGenerateShortName\":\"簡報\",\"slidesOptionAuto\":\"自動\",\"toolVideoGenerateName\":\"生成影片\",\"toolVideoGenerateShortName\":\"影片\",\"videoAspectRatioLabel\":\"長寬比\",\"videoDurationLabel\":\"時長\",\"videoQualityLabel\":\"品質\",\"videoQualityLow\":\"低\",\"videoQualityMedium\":\"中\",\"videoQualityHigh\":\"高\",\"videoOptionAuto\":\"自動\",\"videoDurationTooltip\":\"時長限制為 5-10 秒\",\"maxMode\":\"Max 模式\",\"maxBadge\":\"Max\",\"maxModeTip\":\"Max 模式可以使用更大的上下文視窗,增強模型的對話能力。\",\"maxModeTipHighlight\":\"請注意,開啟後將增加"])</script><script>self.__next_f.push([1,"積分消耗。\",\"imageAspectRatioLabel\":\"長寬比\",\"imageQualityLabel\":\"圖片品質\",\"imageQualityLow\":\"低\",\"imageQualityMedium\":\"中\",\"imageQualityHigh\":\"高\",\"imageOptionAuto\":\"自動\",\"webpageModelLabel\":\"網頁生成模型\",\"toolVideoGenerateDesc\":\"支援文字生成影片或首、尾幀圖片生成影片\",\"toolMoreName\":\"更多\",\"agentModeSelectDescription\":\"思考更久,行動更好。\",\"askModeSelectDescription\":\"立即回答。\",\"dictate\":\"聽寫\",\"skillsLabel\":\"技能\",\"skillsLoading\":\"載入中...\",\"skillsEmpty\":\"暫無技能\",\"skillsPinned\":\"已置頂\",\"skillsPrivate\":\"私有\",\"skillsInstalled\":\"已安裝\",\"skillsTypeHint\":\"輸入 / 選擇技能\",\"skillsManage\":\"管理\",\"placeholderDescribeResearch\":\"描述一個主題\",\"placeholderDescribePage\":\"從一個想法開始\",\"placeholderDescribeImage\":\"描述一張圖片\",\"placeholderDescribeSlides\":\"描述一個簡報\",\"placeholderDescribeWebpage\":\"描述一個網頁\",\"greetingTitleLearn\":\"你對什麼感到好奇?\",\"greetingTitleWrite\":\"你現在想寫什麼?\",\"greetingTitleImage\":\"你想創作什麼?\",\"greetingTitleSlides\":\"你想展示什麼?\",\"greetingTitleWebpage\":\"你想構建什麼?\",\"slidesModelDefaultSuffix\":\"(預設)\",\"videoModelLabel\":\"模型\",\"videoModeLabel\":\"模式\",\"videoModeTooltip\":\"你可在聊天訊息中加入圖片或影片作為參考素材。\\n首尾幀模式:圖片作為起始/結束幀驅動動畫生成。\\n參考模式:圖片和影片(僅 Seedance 2.0 系列)引導風格和內容,不鎖定幀。\\n參考影片要求:單個 2~15 秒,最多 3 個,總時長不超過 15 秒。\",\"videoModeKeyframe\":\"首尾幀\",\"videoModeReference\":\"參考圖\",\"videoAudioLabel\":\"音訊\",\"greetingTitleVideo\":\"你想創建什麼影片?\",\"placeholderDescribeVideo\":\"描述一個影片\",\"videoSoundLabel\":\"聲音\",\"videoSoundOn\":\"有聲\",\"videoSoundOff\":\"無聲\",\"videoStyleButtonLabel\":\"設定\",\"videoModeReferenceWithVideo\":\"參考圖/影片\",\"toolCreateCastName\":\"建立 Cast\",\"toolCreateCastShortName\":\"Cast\",\"greetingTitleCast\":\"你想展示什麼?\",\"placeholderDescribeCast\":\"描述你想建立的 PPT 影片\",\"autoModelLabel\":\"自動\",\"chatDirectlyWithModels\":\"選擇一個模型直接提問\",\"modelListMore\":\"更多\",\"modelLockedTooltipTitle\":\"解鎖頂級 AI 模型\",\"modelLockedTooltipDescription\":\"升級你的方案,解鎖最強大的 AI 模型。\"},\"craft\":{\"previous\":\"上一個\",\"next\":\"下一個\",\"play\":\"播放\",\"pause\":\"暫停\",\"rename\":\"重新命名\",\"download\":\"下載\",\"delete\":\"刪除\",\"generating\":\"生成中...\",\"itllTakeAMoment\":\"這需要幾分鐘時間。\",\"failedToGenerateAudio\":\"音訊生成失敗\",\"failedToRegenerateAudio\":\"音訊重新生成失敗\",\"pleaseTryAgainLater\":\"請稍後再試。\",\"nothingToPlayYet\":\"還沒有可播放的內容\",\"save\":\"儲存\",\"title\":\"標題\",\"newAudio\":\"建立新音訊\",\"add\":\"新增\",\"regenerate\":\"重新生成\",\"addEpisode\":\"新增續集\",\"editTranscript\":\"編輯文稿\"},\"editor\":{\"done\":\"完成\",\"enterUrl\":\"輸入 URL\",\"url\":\"URL\",\"linkTitle\":\"連結標題\",\"enterLinkTitle\":\"輸入連結標題\",\"pasteLink\":\"貼上連結\",\"emptyLink\":\"空白連結\",\"openLink\":\"開啟連結\",\"copyLink\":\"複製連結\",\"copyHeadingLink\":\"複製標題連結\",\"copy\":\"複製\",\"editLink\":\"編輯連結\",\"edit\":\"編輯\",\"removeLink\":\"移除連結\",\"copiedToClipboard\":\"已複製到剪貼簿\",\"searchLanguages\":\"搜尋語言...\",\"noLanguagesFound\":\"找不到語言\",\"headerRow\":\"標題列\",\"toggleHeaderRow\":\"切換標題列\",\"addAbove\":\"在上方新增\",\"insertRowAbove\":\"在上方插入列\",\"addBelow\":\"在下方新增\",\"insertRowBelow\":\"在下方插入列\",\"removeRow\":\"移除列\",\"deleteRow\":\"刪除列\",\"headerCol\":\"標題欄\",\"toggleHeaderColumn\":\"切換標題欄\",\"addLeft\":\"在左側新增\",\"insertColumnBefore\":\"在前方插入欄\",\"addRight\":\"在右側新增\",\"insertColumnAfter\":\"在後方插入欄\",\"removeCol\":\"移除欄\",\"deleteColumn\":\"刪除欄\",\"of\":\"共\",\"allDiffsHandled\":\"所有差異已處理\",\"rejectAll\":\"全部拒絕\",\"acceptAll\":\"全部接受\",\"insertTextAfterImage\":\"在圖片後插入文字\",\"dow"])</script><script>self.__next_f.push([1,"nload\":\"下載\",\"copied\":\"已複製!\",\"newNote\":\"新筆記\",\"newPage\":\"New page\",\"imageUploadFailed\":\"圖片上傳失敗\",\"imageReadFailed\":\"圖片檔案讀取失敗\",\"imageDimensionsFailed\":\"獲取圖片尺寸失敗\",\"pageNodeInaccessible\":\"此頁面不可用。它可能已被刪除或你不再有權訪問。\",\"pageNodeLoadFailed\":\"頁面資料載入失敗。\",\"pageNodeClickToWrite\":\"點擊在此處寫些什麼。\",\"delete\":\"刪除\",\"privatePage\":\"私密頁面\",\"uploadFailed\":\"上傳失敗\",\"moveToRoot\":\"移至作品清單\",\"moveToRootFailed\":\"移至頂層失敗\",\"openInNewTab\":\"在新分頁中開啟\",\"imageLoadFailed\":\"圖片載入失敗\",\"imageLoadTimeout\":\"網路狀況不佳,圖片載入異常,請檢查網路後重試\",\"expandHeading\":\"展開\",\"collapseHeading\":\"收合\",\"privateLinkTooltip\":\"此連結未公開分享\",\"findReplaceFindPlaceholder\":\"尋找\",\"findReplaceFindLabel\":\"尋找文字\",\"findReplacePreviousMatch\":\"上一個符合項目\",\"findReplaceNextMatch\":\"下一個符合項目\",\"findReplaceClose\":\"關閉\",\"findReplaceHideReplace\":\"隱藏取代區塊\",\"findReplaceShowReplace\":\"顯示取代區塊\",\"findReplaceWithPlaceholder\":\"取代為\",\"findReplaceReplaceLabel\":\"取代文字\",\"findReplaceReplace\":\"取代\",\"findReplaceReplaceAll\":\"全部取代\",\"convertToLink\":\"轉換為連結\",\"convertToYoutubeEmbed\":\"轉換為 YouTube 嵌入\",\"uploadCover\":\"上傳封面\",\"imageGenerateTriggerTitle\":\"圖片生成\",\"imageGenerateTriggerSubtitle\":\"描述想生成的圖片,或插入圖片。\",\"imageGenerateUploadTitle\":\"上傳圖片\",\"imageGenerateUploadHint\":\"或拖放到這裡\",\"imageGenerateCustomScene\":\"自訂\",\"imageGeneratePromptPlaceholder\":\"生成圖表、資訊圖、漫畫、圖片……\",\"imageGenerateDescribeYourIdea\":\"或描述你的想法……\",\"imageGenerateScenePhoto\":\"照片\",\"imageGenerateSceneIllustration\":\"插畫\",\"imageGenerateSceneDiagram\":\"圖解\",\"imageGenerateSceneMindMap\":\"心智圖\",\"imageGenerateSceneInfographic\":\"資訊圖\",\"imageGenerateSceneMockup\":\"原型\",\"imageGenerateSceneResearch\":\"研究\",\"imageGenerateSceneCartoon\":\"卡通\",\"imageGenerateGeneratingTitle\":\"正在為你作畫\",\"imageGenerateCreateWithAi\":\"用 AI 創作\",\"imageGenerateGeneratingPhotoStep1\":\"取景中…\",\"imageGenerateGeneratingPhotoStep2\":\"測一下自然光…\",\"imageGenerateGeneratingPhotoStep3\":\"選定焦段…\",\"imageGenerateGeneratingPhotoStep4\":\"鎖住主體…\",\"imageGenerateGeneratingPhotoStep5\":\"校準白平衡…\",\"imageGenerateGeneratingPhotoStep6\":\"撥好曝光值…\",\"imageGenerateGeneratingPhotoStep7\":\"等一縷光落下來…\",\"imageGenerateGeneratingPhotoStep8\":\"輕輕托住高光…\",\"imageGenerateGeneratingPhotoStep9\":\"讓陰影稍稍打開…\",\"imageGenerateGeneratingPhotoStep10\":\"調一杯專屬的色調…\",\"imageGenerateGeneratingPhotoStep11\":\"讓對比變得柔和…\",\"imageGenerateGeneratingPhotoStep12\":\"銳化每一處細節…\",\"imageGenerateGeneratingPhotoStep13\":\"把中間調調出來…\",\"imageGenerateGeneratingPhotoStep14\":\"加一點空氣感…\",\"imageGenerateGeneratingPhotoStep15\":\"最後一遍調色…\",\"imageGenerateGeneratingPhotoStep16\":\"準備按下快門…\",\"imageGenerateGeneratingIllustrationStep1\":\"翻開速寫本…\",\"imageGenerateGeneratingIllustrationStep2\":\"追著靈感的輪廓…\",\"imageGenerateGeneratingIllustrationStep3\":\"起草第一筆線條…\",\"imageGenerateGeneratingIllustrationStep4\":\"留出呼吸的空白…\",\"imageGenerateGeneratingIllustrationStep5\":\"調一盤喜歡的顏色…\",\"imageGenerateGeneratingIllustrationStep6\":\"鋪上第一層底色…\",\"imageGenerateGeneratingIllustrationStep7\":\"一筆一筆疊上去…\",\"imageGenerateGeneratingIllustrationStep8\":\"讓光在畫布上遊走…\",\"imageGenerateGeneratingIllustrationStep9\":\"加一點手作的肌理…\",\"imageGenerateGeneratingIllustrationStep10\":\"雕琢每一處細節…\",\"imageGenerateGeneratingIllustrationStep11\":\"把邊緣修乾淨…\",\"imageGenerateGeneratingIllustrationStep12\":\"後退一步審視氛圍…\",\"imageGenerateGeneratingIllustrationStep13\":\"讓色彩唱起合聲…\",\"imageGenerateGenerati"])</script><script>self.__next_f.push([1,"ngIllustrationStep14\":\"落下心意的最後一筆…\",\"imageGenerateGeneratingIllustrationStep15\":\"聽一聽畫面的呼吸…\",\"imageGenerateGeneratingIllustrationStep16\":\"顏料還沒乾透…\",\"imageGenerateGeneratingDiagramStep1\":\"看清整張圖的脈絡…\",\"imageGenerateGeneratingDiagramStep2\":\"圈出核心節點…\",\"imageGenerateGeneratingDiagramStep3\":\"給每個方框選個形狀…\",\"imageGenerateGeneratingDiagramStep4\":\"拉出第一根連線…\",\"imageGenerateGeneratingDiagramStep5\":\"讓箭頭順勢走一遍…\",\"imageGenerateGeneratingDiagramStep6\":\"把版面對得齊齊整整…\",\"imageGenerateGeneratingDiagramStep7\":\"選一組冷靜的顏色…\",\"imageGenerateGeneratingDiagramStep8\":\"留出該有的留白…\",\"imageGenerateGeneratingDiagramStep9\":\"校準每一處比例…\",\"imageGenerateGeneratingDiagramStep10\":\"把轉角磨成圓滑…\",\"imageGenerateGeneratingDiagramStep11\":\"節點之間再鬆一點…\",\"imageGenerateGeneratingDiagramStep12\":\"讓每根線都更俐落…\",\"imageGenerateGeneratingDiagramStep13\":\"拉出層級關係…\",\"imageGenerateGeneratingDiagramStep14\":\"再走一遍資訊流向…\",\"imageGenerateGeneratingDiagramStep15\":\"最後一次對齊…\",\"imageGenerateGeneratingDiagramStep16\":\"收掉最後一根線…\",\"imageGenerateGeneratingMindMapStep1\":\"找到那個核心想法…\",\"imageGenerateGeneratingMindMapStep2\":\"把它放在畫面正中…\",\"imageGenerateGeneratingMindMapStep3\":\"第一根分支長出來了…\",\"imageGenerateGeneratingMindMapStep4\":\"讓子分支一路延展…\",\"imageGenerateGeneratingMindMapStep5\":\"把同類的想法聚到一起…\",\"imageGenerateGeneratingMindMapStep6\":\"給每條分支一個顏色…\",\"imageGenerateGeneratingMindMapStep7\":\"讓放射布局舒展開…\",\"imageGenerateGeneratingMindMapStep8\":\"把連接弧度調柔…\",\"imageGenerateGeneratingMindMapStep9\":\"讓節點大小有節奏感…\",\"imageGenerateGeneratingMindMapStep10\":\"傾聽整體的呼吸…\",\"imageGenerateGeneratingMindMapStep11\":\"讓左右更對稱一些…\",\"imageGenerateGeneratingMindMapStep12\":\"把重點節點亮出來…\",\"imageGenerateGeneratingMindMapStep13\":\"加點手繪的隨性…\",\"imageGenerateGeneratingMindMapStep14\":\"再做一次平衡檢查…\",\"imageGenerateGeneratingMindMapStep15\":\"整理散落的線頭…\",\"imageGenerateGeneratingMindMapStep16\":\"思維之網正在成形…\",\"imageGenerateGeneratingInfographicStep1\":\"拆解關鍵數據…\",\"imageGenerateGeneratingInfographicStep2\":\"想一個合適的視覺比喻…\",\"imageGenerateGeneratingInfographicStep3\":\"搭起底層的網格…\",\"imageGenerateGeneratingInfographicStep4\":\"選好圖示家族…\",\"imageGenerateGeneratingInfographicStep5\":\"配一組講故事的顏色…\",\"imageGenerateGeneratingInfographicStep6\":\"把資訊分成幾個章節…\",\"imageGenerateGeneratingInfographicStep7\":\"讓模組對齊到同一把尺…\",\"imageGenerateGeneratingInfographicStep8\":\"把每個圖示打磨乾淨…\",\"imageGenerateGeneratingInfographicStep9\":\"讓版面鬆緊得當…\",\"imageGenerateGeneratingInfographicStep10\":\"微調每塊的佔比…\",\"imageGenerateGeneratingInfographicStep11\":\"加上恰到好處的分隔…\",\"imageGenerateGeneratingInfographicStep12\":\"形狀語言保持一致…\",\"imageGenerateGeneratingInfographicStep13\":\"微調文字與圖示的間距…\",\"imageGenerateGeneratingInfographicStep14\":\"倒著再看一遍版面…\",\"imageGenerateGeneratingInfographicStep15\":\"最後一遍潤色…\",\"imageGenerateGeneratingInfographicStep16\":\"資訊可以上桌了…\",\"imageGenerateGeneratingMockupStep1\":\"選好裝置的外框…\",\"imageGenerateGeneratingMockupStep2\":\"起草螢幕的版面…\",\"imageGenerateGeneratingMockupStep3\":\"擺放每一個 UI 元件…\",\"imageGenerateGeneratingMockupStep4\":\"拉一組品牌的顏色…\",\"imageGenerateGeneratingMockupStep5\":\"搭起主視覺的舞台…\",\"imageGenerateGeneratingMockupStep6\":\"把導覽對齊好…\",\"imageGenerateGeneratingMockupStep7\":\"雕琢每張卡片的細節…\",\"imageGenerateGeneratingMockupStep8\":\"拉開視覺層次…\",\"imageGenerateGeneratingMockupStep9\":\"加一點恰"])</script><script>self.__next_f.push([1,"到好處的陰影…\",\"imageGenerateGeneratingMockupStep10\":\"讓邊緣更乾淨…\",\"imageGenerateGeneratingMockupStep11\":\"調出柔和的漸層…\",\"imageGenerateGeneratingMockupStep12\":\"讓互動過渡更順…\",\"imageGenerateGeneratingMockupStep13\":\"在畫面裡悄悄打一束光…\",\"imageGenerateGeneratingMockupStep14\":\"後退一步審視全局…\",\"imageGenerateGeneratingMockupStep15\":\"微調每一處細節…\",\"imageGenerateGeneratingMockupStep16\":\"螢幕亮起來了…\",\"imageGenerateGeneratingResearchStep1\":\"仔細觀察標本…\",\"imageGenerateGeneratingResearchStep2\":\"量一量它的尺寸…\",\"imageGenerateGeneratingResearchStep3\":\"起草整體結構…\",\"imageGenerateGeneratingResearchStep4\":\"切開剖面看進去…\",\"imageGenerateGeneratingResearchStep5\":\"標註關鍵部位…\",\"imageGenerateGeneratingResearchStep6\":\"選一組中性的顏色…\",\"imageGenerateGeneratingResearchStep7\":\"描出精確的輪廓線…\",\"imageGenerateGeneratingResearchStep8\":\"校對每一處比例…\",\"imageGenerateGeneratingResearchStep9\":\"添上質感與紋理…\",\"imageGenerateGeneratingResearchStep10\":\"讓光影更克制…\",\"imageGenerateGeneratingResearchStep11\":\"把線條再細一點…\",\"imageGenerateGeneratingResearchStep12\":\"邊緣銳利但不刺眼…\",\"imageGenerateGeneratingResearchStep13\":\"在標本旁寫下註解…\",\"imageGenerateGeneratingResearchStep14\":\"一一核對每個細節…\",\"imageGenerateGeneratingResearchStep15\":\"最後一次對照原物…\",\"imageGenerateGeneratingResearchStep16\":\"標本卡即將完成…\",\"imageGenerateGeneratingCartoonStep1\":\"翻開漫畫分鏡本…\",\"imageGenerateGeneratingCartoonStep2\":\"起草角色的輪廓…\",\"imageGenerateGeneratingCartoonStep3\":\"挖出他的小個性…\",\"imageGenerateGeneratingCartoonStep4\":\"把表情誇張到極限…\",\"imageGenerateGeneratingCartoonStep5\":\"配一組活潑的顏色…\",\"imageGenerateGeneratingCartoonStep6\":\"讓動作更有戲…\",\"imageGenerateGeneratingCartoonStep7\":\"偷偷加一個小道具…\",\"imageGenerateGeneratingCartoonStep8\":\"用墨線把輪廓描清楚…\",\"imageGenerateGeneratingCartoonStep9\":\"讓畫面有了節奏…\",\"imageGenerateGeneratingCartoonStep10\":\"撒上大膽的色塊…\",\"imageGenerateGeneratingCartoonStep11\":\"讓五官生動起來…\",\"imageGenerateGeneratingCartoonStep12\":\"讓曲線圓潤起來…\",\"imageGenerateGeneratingCartoonStep13\":\"給他來個出場動作…\",\"imageGenerateGeneratingCartoonStep14\":\"撒上一兩顆笑點…\",\"imageGenerateGeneratingCartoonStep15\":\"最後一道點睛閃光…\",\"imageGenerateGeneratingCartoonStep16\":\"主角即將登場…\",\"bold\":\"粗體 (Ctrl+B)\",\"italic\":\"斜體 (Ctrl+I)\",\"underline\":\"底線 (Ctrl+U)\",\"strikethrough\":\"刪除線\",\"code\":\"程式碼 (Ctrl+E)\",\"clearFormatting\":\"清除格式 (Ctrl+\\\\)\",\"alignLeft\":\"靠左對齊 (Ctrl+Shift+L)\",\"alignCenter\":\"置中對齊 (Ctrl+Shift+E)\",\"alignRight\":\"靠右對齊 (Ctrl+Shift+R)\",\"justify\":\"左右對齊 (Ctrl+Shift+J)\",\"highlight\":\"螢光標示 (Ctrl+Shift+H)\",\"blockquote\":\"引用區塊\",\"codeBlock\":\"程式碼區塊 (Ctrl+Alt+C)\",\"horizontalRule\":\"水平線\",\"link\":\"連結\",\"unlink\":\"取消連結\",\"insertTable\":\"插入表格\",\"addRowBelow\":\"在下方新增列\",\"addColumnAfter\":\"在後方新增欄\",\"deleteTable\":\"刪除表格\",\"undo\":\"復原 (Ctrl+Z)\",\"redo\":\"重做 (Ctrl+Shift+Z)\",\"outline\":\"大綱 (Ctrl+Shift+O)\",\"linkUrlPrompt\":\"連結 URL\",\"paragraph\":\"段落\",\"heading1\":\"標題 1\",\"heading2\":\"標題 2\",\"heading3\":\"標題 3\",\"findReplace\":{\"panelLabel\":\"尋找和取代\",\"hideReplace\":\"隱藏取代\",\"showReplace\":\"顯示取代\",\"closeAriaLabel\":\"關閉尋找和取代\",\"findToolbarTitle\":\"尋找 (Ctrl+F)\"},\"linkPanelApply\":\"套用連結\",\"linkPanelCancel\":\"取消\",\"linkPanelUrlInputAria\":\"連結 URL\",\"linkPanelTitleLabel\":\"標題\",\"linkPanelTitleInputAria\":\"連結標題\",\"linkPanelPastePlaceholder\":\"貼上連結\",\"linkHoverToolbarAria\":\"連結操作\",\"linkHoverOpen\":\"開啟連結\",\"callout\":\"高亮區塊\",\"calloutDescription\":\"螢光標示資訊區塊\",\"calloutToggle\":\"標註 (Mod-Shift-C)\",\"calloutColorOptionAriaLabel\":\"{name} "])</script><script>self.__next_f.push([1,"標註顏色\",\"tableActions\":\"表格操作\",\"clearData\":\"清除資料\",\"deleteColumns\":\"刪除欄\",\"deleteRows\":\"刪除列\",\"insertColumnLeft\":\"在左側插入欄\",\"insertColumnRight\":\"在右側插入欄\",\"appendColumn\":\"附加欄\",\"appendRow\":\"附加列\",\"dragRow\":\"拖曳列\",\"dragColumn\":\"拖曳欄\",\"tableRowHandle\":\"表格列控制點\",\"tableColumnHandle\":\"表格欄控制點\",\"insertTableSlashLabel\":\"表格\",\"insertTableSlashDescription\":\"插入 3×3 表格\",\"copyImage\":\"複製圖片\",\"copyImageLink\":\"複製圖片連結\",\"viewImage\":\"檢視圖片\",\"editImageCaption\":\"編輯圖片說明\",\"imageCaptionPlaceholder\":\"新增圖片說明\",\"insertOcrTextAriaLabel\":\"在圖片後插入 OCR 文字\",\"insertOcrText\":\"插入 OCR 文字\",\"pickImage\":\"挑選圖片\",\"addImageToChat\":\"將圖片新增到對話\",\"downloadImage\":\"下載圖片\",\"imagePreview\":\"圖片預覽\",\"closeImagePreview\":\"關閉圖片預覽\",\"loadingImage\":\"正在載入圖片\",\"imageFailedToLoad\":\"圖片載入失敗\",\"uploadingImage\":\"正在上傳圖片\",\"uploading\":\"正在上傳\",\"copied2\":\"已複製\",\"linkCopied\":\"連結已複製\",\"copyFailed\":\"複製失敗\",\"picked\":\"已挑選\",\"added\":\"已新增\",\"imageSlashLabel\":\"圖片\",\"imageSlashDescription\":\"插入圖片\",\"bulletList\":\"項目符號清單\",\"bulletListDescription\":\"簡單的項目符號清單\",\"orderedList\":\"編號清單\",\"orderedListDescription\":\"帶編號的清單\",\"taskList\":\"待辦清單\",\"taskListDescription\":\"附核取方塊的清單\",\"bulletListToolbarTitle\":\"項目符號清單 (Ctrl+Shift+8)\",\"orderedListToolbarTitle\":\"編號清單 (Ctrl+Shift+9)\",\"taskListToolbarTitle\":\"待辦清單 (Ctrl+Shift+0)\",\"taskMarkIncompleteAriaLabel\":\"標記任務未完成\",\"taskMarkCompleteAriaLabel\":\"標記任務已完成\",\"slashText\":\"文字\",\"slashTextDescription\":\"純段落文字\",\"slashHeading1Description\":\"大型章節標題\",\"slashHeading2Description\":\"中型章節標題\",\"slashHeading3Description\":\"小型章節標題\",\"media\":{\"attachment\":{\"uploadFailedAriaLabel\":\"附件上傳失敗\",\"uploadingAriaLabel\":\"正在上傳附件\",\"downloadAriaLabel\":\"下載附件\"},\"audio\":{\"defaultTitle\":\"音訊\",\"editTitleAriaLabel\":\"編輯音訊標題\",\"downloadAriaLabel\":\"下載音訊\"},\"video\":{\"unavailable\":\"影片無法使用\",\"uploadingAriaLabel\":\"正在上傳影片\",\"uploadFailedAriaLabel\":\"影片上傳失敗\",\"deleteAriaLabel\":\"刪除影片\"},\"webPage\":{\"iframeTitle\":\"嵌入式網頁\",\"openAriaLabel\":\"開啟網頁\",\"unavailable\":\"網頁無法使用\"},\"youtube\":{\"iframeTitle\":\"YouTube 影片\",\"invalidUrl\":\"無效的 YouTube 連結\",\"openAriaLabel\":\"開啟 YouTube\",\"convertToLinkAriaLabel\":\"將 YouTube 轉換為連結\",\"deleteAriaLabel\":\"刪除 YouTube\"},\"svg\":{\"title\":\"SVG\"},\"imageGenerate\":{\"triggerTitle\":\"生成圖片\",\"submitAriaLabel\":\"生成圖片\",\"triggerSubtitle\":\"上傳圖片或用 AI 創作一張\",\"uploadHint\":\"點擊或將圖片拖放到此處\",\"describeIdea\":\"描述你的想法\",\"promptPlaceholder\":\"描述你想創作的圖片\",\"modelMenuAriaLabel\":\"圖片生成模型\",\"sceneMenuAriaLabel\":\"圖片生成場景\",\"scene\":{\"mindMap\":{\"title\":\"心智圖\",\"prompt\":\"一張圍繞本節核心概念的心智圖,展示周邊想法如何關聯。\"},\"photo\":{\"prompt\":\"一張在視覺上與周邊文字相呼應的照片。\"},\"illustration\":{\"prompt\":\"一幅將周邊文字核心概念視覺化的編輯插畫。\"},\"diagram\":{\"prompt\":\"一張圖解附近所述流程、結構或關係的圖表。\"},\"infographic\":{\"prompt\":\"一張總結周邊文字關鍵事實或資料點的資訊圖。\"},\"mockup\":{\"prompt\":\"一張呈現周邊文字所述產品、介面或工作流程的原型圖。\"},\"research\":{\"prompt\":\"一幅以研究圖版風格呈現附近所討論特定物體、現象或標本的插畫。\"},\"cartoon\":{\"prompt\":\"一幅趣味卡通插畫,描繪附近所述的場景、角色或情境。\"}}},\"slash\":{\"imageGenerate\":{\"description\":\"上傳圖片或用 AI 創作一張\",\"label\":\"生成圖片\"},\"video\":{\"label\":\"影片\",\"description\":\"上傳影片\"},\"attachment\":{\"label\":\"附件\",\"description\":\"上傳檔案附件\"}}},\"mermaidSlas"])</script><script>self.__next_f.push([1,"hLabel\":\"Mermaid 圖表\",\"mermaidSlashDescription\":\"插入 Mermaid 圖表\",\"mermaidHideCode\":\"隱藏程式碼\",\"mermaidShowCode\":\"顯示程式碼\",\"mermaidDownloadPng\":\"下載 PNG\",\"mermaidPreview\":\"預覽\",\"mermaidSyntaxErrorBadge\":\"語法錯誤\",\"mermaidRenderingBadge\":\"渲染中…\",\"mermaidRenderingDiagram\":\"正在渲染圖表\",\"mermaidSyntaxErrorTitle\":\"語法錯誤\",\"mermaidEmptyPrompt\":\"輸入 Mermaid 程式碼以查看預覽\",\"mermaidPreviewOverlayLabel\":\"Mermaid 預覽\",\"referenceSlashLabel\":\"連結內容\",\"referenceSlashDescription\":\"連結到頁面或素材\",\"referenceSearchPlaceholder\":\"搜尋內容\",\"referenceNoResults\":\"無結果\",\"referenceGroupCrafts\":\"作品\",\"referenceGroupMaterials\":\"素材\",\"referenceSuggestionFallbackCraftTitle\":\"新增文件\",\"referenceSuggestionFallbackMaterialTitle\":\"素材\",\"referenceMentionFallbackLabel\":\"檔案\",\"pick\":\"Pick\",\"bold2\":\"粗體\",\"chat\":\"聊天\",\"italic2\":\"斜體\",\"underline2\":\"底線\",\"code2\":\"程式碼\",\"quote\":\"引用\",\"format\":\"格式\",\"textStyle\":\"文字樣式\",\"clearTextStyle\":\"清除文字樣式\",\"yellowTextStyle\":\"黃色文字樣式\",\"greenTextStyle\":\"綠色文字樣式\",\"lightBlueTextStyle\":\"淺藍色文字樣式\",\"blueTextStyle\":\"藍色文字樣式\",\"pinkTextStyle\":\"粉色文字樣式\",\"redTextStyle\":\"紅色文字樣式\",\"grayTextStyle\":\"灰色文字樣式\",\"italicDescription\":\"斜體文字\",\"underlineDescription\":\"底線文字\",\"strikethroughDescription\":\"刪除線文字\",\"inlineCodeDescription\":\"行內程式碼\",\"codeBlockLanguageAriaLabel\":\"程式碼語言\",\"codeBlockSearchLanguages\":\"搜尋語言\",\"codeBlockSlashLabel\":\"程式碼區塊\",\"codeBlockSlashDescription\":\"帶語法醒目提示的程式碼\",\"codeBlockPlainText\":\"純文字\",\"mathFormulaLabel\":\"數學公式\",\"mathFormulaDescription\":\"行內數學運算式\",\"mathNewEquationPlaceholder\":\"新增方程式\",\"mathErrorFallback\":\"數學公式錯誤\",\"mathSourceAriaLabel\":\"LaTeX 數學原始碼\",\"mathSourcePlaceholder\":\"E = mc^2\",\"mathInvalidLatex\":\"無效的 LaTeX\",\"outlinePanelTitle\":\"大綱\",\"outlinePanelEmpty\":\"尚無標題。\",\"keyboardShortcuts\":\"鍵盤快速鍵\",\"shortcutsSectionTextFormatting\":\"文字格式\",\"highlight2\":\"螢光標示\",\"insertEditLink\":\"插入/編輯連結\",\"shortcutsSectionBlockTypes\":\"區塊類型\",\"codeBlock2\":\"程式碼區塊\",\"bulletList2\":\"項目符號清單\",\"orderedList2\":\"編號清單\",\"taskList2\":\"待辦清單\",\"shortcutsSectionAlignment\":\"對齊\",\"alignLeft2\":\"靠左對齊\",\"alignCenter2\":\"置中對齊\",\"alignRight2\":\"靠右對齊\",\"justify2\":\"左右對齊\",\"shortcutsSectionEditing\":\"編輯\",\"undo2\":\"復原\",\"redo2\":\"重做\",\"findAndReplace\":\"尋找與取代\",\"newParagraphSplitBlock\":\"新增段落 / 分割區塊\",\"lineBreakInListNewParagraph\":\"清單內換行 / 新增段落\",\"deleteBackwardJoinBlocks\":\"向前刪除 / 合併區塊\",\"indentListNextTableCell\":\"縮排清單 / 下一個表格儲存格\",\"outdentListPrevTableCell\":\"減少縮排 / 上一個表格儲存格\",\"moveBlockUp\":\"上移區塊\",\"moveBlockDown\":\"下移區塊\",\"duplicateBlock\":\"複製區塊\",\"clearFormatting2\":\"清除格式\",\"pasteAsPlainText\":\"貼上為純文字\",\"shortcutsSectionNavigation\":\"導覽\",\"toggleOutlinePanel\":\"切換大綱面板\",\"slashCommandMenuAtBlockStart\":\"斜線命令選單(區塊開頭)\",\"toggleFocusMode\":\"切換專注模式\",\"keyboardShortcutsHelp\":\"鍵盤快速鍵說明\",\"blockquoteSlashDescription\":\"區塊引用\",\"dividerSlashLabel\":\"分隔線\",\"horizontalRuleSlashDescription\":\"水平分隔線\",\"markdownNormalizedChip\":\"Markdown 已正規化\",\"markdownPasteDiagnostics\":\"Markdown 貼上診斷\",\"markdownDiagnosticsCloseLabel\":\"關閉 Markdown 診斷\",\"turnInto\":\"轉換為\",\"blockActionsMenuLabel\":\"區塊操作\",\"documentHeadings\":\"文件標題\",\"closeDocumentHeadings\":\"關閉文件標題\",\"openDocumentHeadings\":\"開啟文件標題\",\"acceptAllDiffBlocks\":\"接受所有差異區塊\",\"rejectAllDiffBlocks\":\"拒絕所有差異區塊\",\"copyCode\":\"複製程式碼\",\"title\":\"標題\",\"subtitle\":\"副標題\",\"smallHeading\":\"三級標題\",\"numberedList\":\"編號清單\",\"formula\":\"公式\",\"atta"])</script><script>self.__next_f.push([1,"chment\":\"附件\",\"mermaid\":\"Mermaid 圖表\",\"askAnything\":\"隨便問些什麼\",\"askAiSubmit\":\"傳送\"},\"snip\":{\"pdf\":{\"failedToLoad\":\"載入PDF檔案失敗。\",\"noData\":\"未指定頁面。\",\"previousPage\":\"前往上一頁\",\"nextPage\":\"前往下一頁\"},\"transcript\":{\"title\":\"文本\",\"description\":{\"title\":\"描述\"},\"copy\":\"複製\",\"copied\":\"文本已複製\",\"save\":\"儲存為文檔\",\"saved\":\"文本已儲存為文檔\",\"export\":\"下載\",\"exported\":\"文本已匯出\",\"displayLineByLine\":\"逐行檢視\",\"displayByParagraph\":\"章節檢視\",\"generate\":\"生成\",\"regenerate\":\"重新生成\",\"empty\":\"暫無文本。\",\"generating\":\"我們正在努力生成文本,可能需要30分鐘以上。\",\"generatingFlash\":\"我們正在努力生成文本,大約需要 2 分鐘。\",\"editTranscript\":\"編輯文本\",\"saveTranscript\":\"儲存文本\",\"editTranscriptSuccess\":\"編輯文本成功\",\"editTranscriptFailed\":\"編輯文本失敗\",\"preview\":\"預覽\",\"previewWarning\":\"僅在開發或預覽環境中啟用。\",\"previewWarningDescription\":\"從youget.ai獲取最新文本。\",\"upload\":\"上傳\",\"uploadText\":\"上傳文本\",\"uploadTranscript\":\"上傳文本\",\"dragDropSrt\":\"拖放或點擊上傳.srt檔案\",\"uploadSrtDescription\":\"僅支援.srt檔案\",\"clipboardSrtDetected\":\"從剪貼簿檢測到SRT內容\",\"invalidSrtFormat\":\"無效的SRT檔案格式\",\"fileReadError\":\"讀取檔案時發生錯誤\",\"noTranscriptContent\":\"無文本內容\",\"transcriptUploaded\":\"文本上傳成功\",\"transcriptUploadFailed\":\"文本上傳失敗\",\"cancel\":\"取消\",\"uploading\":\"正在上傳...\",\"speaker\":\"說話者\",\"multipleSpeakers_zero\":\"無說話者\",\"multipleSpeakers_one\":\"偵測到1位說話者\",\"multipleSpeakers_other\":\"偵測到{{count}}位說話者\",\"enhanceText\":\"優化文本的標點、段落和說話者分組。\",\"enhance\":\"優化\",\"waitForLineByLineTranscriptCompleted\":\"請等待逐行視圖中的文本完成。\",\"fetchingTranscript\":\"正在獲取最新文本...\",\"transcriptFetched\":\"文本獲取成功,請等待顯示。\",\"fetchTranscriptFailed\":\"獲取文本失敗\",\"failedToEnhance\":\"無法優化文本。請重試。\",\"identifyingSpeakers\":\"正在識別說話人...\",\"auto\":\"自動捲動\",\"manual\":\"手動捲動\",\"grabbing\":\"正在獲取字幕,請稍候...\",\"grabbingWithEstimate\":\"正在生成字幕,預計需要大約 {{minutes}} 分鐘\",\"lessThanOneMinute\":\"少於一分鐘\",\"aiGenerate\":\"AI 生成\",\"durationExceeded\":\"暫不支援 AI 生成超過兩小時的影片\"},\"description\":{\"title\":\"描述\"},\"slide\":{\"title\":\"簡報\"},\"audioPlayer\":{\"skipBack\":\"後退15秒\",\"skipForward\":\"前進15秒\",\"mute\":\"靜音\",\"unmute\":\"取消靜音\",\"play\":\"播放\",\"pause\":\"暫停\",\"listen\":\"聆聽\",\"generating\":\"正在生成...\",\"loading\":\"正在載入...\",\"expand\":\"展開\",\"collapse\":\"摺疊\",\"locate\":\"定位目前字幕\",\"previous\":\"上一個\",\"next\":\"下一個\",\"pick\":\"摘錄 (p)\",\"mode\":{\"sequential\":\"啟用重複\",\"repeatOne\":\"單曲循環\",\"repeatAll\":\"全部循環\",\"enableShuffle\":\"啟用隨機播放\"}},\"shownotes\":{\"title\":\"節目筆記\"},\"viewMode\":{\"normal\":\"普通模式\",\"theater\":\"劇場模式\"},\"quiz\":{\"question\":\"問題\",\"true\":\"正確\",\"false\":\"錯誤\",\"correctAnswer\":\"正確答案\",\"correct\":\"正確\",\"incorrect\":\"錯誤\",\"quizChallenge\":\"測驗挑戰\",\"totalQuestions\":\"題目總數\",\"score\":\"得分\",\"answered\":\"已回答\",\"tryAgain\":\"再試一次\",\"submitAnswers\":\"提交答案\",\"quizComplete\":\"測驗完成!\",\"youScored\":\"你得了\",\"outOf\":\",總共\",\"questionsCorrectly\":\"道題正確。\",\"excellent\":\"優秀!(90%+)\",\"goodJob\":\"很棒!(70%+)\",\"keepLearning\":\"繼續加油!(50%+)\",\"tryAgainLow\":\"再試一次!(低於50%)\",\"emoji\":{\"party\":\"🎉\",\"trophy\":\"🏆\",\"thumbsUp\":\"👍\",\"books\":\"📚\",\"muscle\":\"💪\"}},\"languageSelector\":{\"autoDetect\":\"自動偵測\",\"system\":\"系統\",\"searchPlaceholder\":\"搜尋語言...\",\"noLanguageFound\":\"未找到語言。\"},\"twitter\":{\"partialReplies\":\"部分回覆\",\"hideReplies\":\"隱藏回覆\",\"showReplies\":\"顯示回覆\",\"all\":\"全部\",\"author\":\"作者\",\"verifiedAccount\":\"已驗證帳戶\"},\"image\":{\"addDescription\":\"新增描"])</script><script>self.__next_f.push([1,"述...\",\"editText\":\"編輯文字\",\"quickEdit\":\"快速編輯\",\"noTextModificationDetected\":\"未偵測到文字修改\",\"noTextRecognized\":\"未辨識到文字\",\"applyModifiedText\":\"套用修改後的文字\",\"deleteLine\":\"刪除該行文字\",\"selectArea\":\"選擇區域\",\"erase\":\"擦除\",\"removeBackground\":\"去除背景\",\"upscale\":\"高清放大\",\"cursorSize\":\"游標大小\",\"crop\":\"裁剪\",\"original\":\"原始\",\"square\":\"正方形 (1:1)\",\"landscape\":\"橫向\",\"landscape169\":\"16:9\",\"landscape43\":\"4:3\",\"landscape32\":\"3:2\",\"portrait\":\"縱向\",\"portrait916\":\"9:16\",\"portrait34\":\"3:4\",\"portrait23\":\"2:3\",\"ratio\":\"比例\",\"lockAspectRatio\":\"鎖定長寬比\",\"unlockAspectRatio\":\"解鎖長寬比\",\"custom\":\"自訂\",\"cropSectionGeneral\":\"一般\",\"cropSectionWechat\":\"微信\",\"cropSectionTheRed\":\"小紅書\",\"cropSectionXTwitter\":\"X / Twitter\",\"wechatCoverLarge\":\"封面(大)\",\"wechatCoverSmall\":\"封面(小)\",\"twitterCoverPhoto\":\"封面圖\",\"twitterLandscape\":\"橫向\",\"twitterProfilePhoto\":\"大頭貼\",\"cancel\":\"取消\",\"confirm\":\"確認\",\"done\":\"完成\",\"applying\":\"套用中...\",\"editingImage\":\"正在編輯圖片…\",\"imageEditBackgroundHint\":\"任務正在背景處理,你可以先去忙別的。\",\"stop\":\"停止\",\"completed\":\"已完成\",\"cropNotSupported\":\"目前環境不支援裁剪\",\"cropSuccess\":\"圖片裁剪成功\",\"failedToEditImage\":\"編輯圖片失敗\",\"describeTheChange\":\"描述要進行的修改...\",\"noHistoryVersionThumbnails\":\"這些版本暫無可預覽的縮圖。\",\"versionHistoryGalleryAria\":\"圖片歷史版本\",\"restoreThisVersion\":\"還原此版本\",\"historyLiveVersion\":\"目前版本\",\"editArea\":\"編輯區域\",\"editAreaApplyAll\":\"全部套用 ({{count}})\",\"editAreaMaxRegionsReached\":\"每次最多編輯 {{max}} 個區域\",\"editAreaRegionLabel\":\"區域 {{index}}\",\"editAreaRegionsHint\":\"拖曳或點擊新增區域\",\"editAreaRemoveRegion\":\"刪除區域\",\"batchEdit\":\"批次編輯\",\"batchEditApply\":\"套用\",\"batchEditDiscard\":\"捨棄\",\"batchEditCount\":\"{{count}} 條編輯\",\"batchEditMaxCommentsReached\":\"單次最多 {{max}} 條評論\",\"batchEditRemoveComment\":\"刪除評論\",\"batchEditUntitledComment\":\"未命名評論\",\"magicLayer\":\"魔法圖層\",\"magicLayerSplitting\":\"正在分割圖層…\",\"magicLayerNoTextFound\":\"未識別到可編輯的文字。\",\"magicLayerNotSupported\":\"目前環境不支援魔法圖層。\",\"magicLayerSplitFailed\":\"圖層分割失敗。\",\"magicLayerExporting\":\"正在匯出圖片…\",\"magicLayerSuccess\":\"圖片已儲存\",\"magicLayerExportFailed\":\"匯出圖片失敗\",\"magicLayerDownload\":\"下載\",\"magicLayerDownloadSvg\":\"SVG\",\"magicLayerSvgDownloaded\":\"SVG 已下載\",\"magicLayerSvgExportFailed\":\"匯出 SVG 失敗\",\"magicLayerDownloadPptx\":\"PPTX\",\"magicLayerPptxDownloaded\":\"PPTX 已下載。可在 Keynote 或 PowerPoint 中開啟。\",\"magicLayerPptxExportFailed\":\"匯出 PPTX 失敗\",\"magicLayerShortcutsTitle\":\"快捷鍵\",\"magicLayerShortcutUndo\":\"復原\",\"magicLayerShortcutRedo\":\"重做\",\"magicLayerShortcutCopy\":\"複製\",\"magicLayerShortcutCut\":\"剪下\",\"magicLayerShortcutPaste\":\"貼上\",\"magicLayerShortcutDelete\":\"刪除圖層\",\"magicLayerShortcutEdit\":\"插入或編輯文字\",\"magicLayerShortcutDoubleClick\":\"雙擊\",\"magicLayerShortcutMultiSelect\":\"多選\",\"magicLayerShortcutDragSelect\":\"在畫布上拖動\",\"batchEditSend\":\"發送評論\",\"batchEditCommentPlaceholder\":\"新增評論\",\"batchEditHintNew\":\"New\",\"batchEditHintMessage\":\"用 AI 批次編輯投影片。\"},\"common\":{\"openSource\":\"開源\",\"analyzing\":\"分析中...\",\"copiedToClipboard\":\"已複製到剪貼簿\",\"action\":{\"copy\":\"複製\",\"delete\":\"刪除\",\"remove\":\"移除\",\"cancel\":\"取消\",\"showLess\":\"收起\",\"showMore\":\"展開更多\"}},\"download\":{\"downloading\":\"下載中...\",\"downloadSuccess\":\"下載成功\",\"downloadFailed\":\"下載失敗\",\"unsupportedFileType\":\"不支援的檔案類型\",\"fileUrlNotFound\":\"檔案URL未找到\"},\"fileHeader\":{\"file\":\"檔案\",\"download\":\"下載\",\"uploaded\":\"已上傳\",\"parse\":\"解析\"},\"imageExport\":{\"currentContentEmpty\":\"目前內容為空\",\"browserNotSupport\":\"你的瀏覽器不支援圖片複製功能。\",\"imageDownloaded\""])</script><script>self.__next_f.push([1,":\"圖片已下載\",\"imageCopied\":\"圖片已複製\",\"failedToGenerate\":\"生成圖片失敗\",\"failedToExport\":\"{{type}}圖片失敗\"},\"pick\":{\"emptyTitle\":\"選擇對你重要的內容。\",\"emptyDescription\":\"在閱讀、聆聽或觀看時,標記並儲存關鍵時刻、引言或想法。\",\"sortOrder\":{\"timestamp\":\"時間戳記\",\"updated\":\"更新日期\",\"created\":\"建立日期\"},\"annotate\":\"新增註釋\",\"addAnnotationPlaceholder\":\"新增註釋\",\"removeHighlightAndPick\":\"刪除標註和摘錄?\",\"removePick\":\"刪除摘錄?\",\"autoPicks\":\"自動摘錄\",\"yourPicks\":\"你的摘錄\",\"pickAsYours\":\"收藏為我的\",\"generateAIPicks\":\"產生 AI 摘錄\",\"noTranscript\":\"無轉錄文字\",\"authorPicks\":\"作者的摘錄\"},\"topComments\":\"熱門留言\",\"tldr\":\"內容摘要\",\"picks\":\"摘錄\",\"generating\":\"生成中…\",\"instagram\":{\"title\":\"Instagram\"},\"youtube\":{\"subtitleDataUnavailable\":\"字幕截圖數據不可用\",\"saveToBoard\":\"保存到專案\",\"failedToLoadData\":\"載入 YouTuber 數據失敗\",\"latest\":\"最新\",\"popular\":\"熱門\"},\"translate\":\"翻譯\",\"noElementsToTranslate\":\"沒有可翻譯的內容\",\"showOriginal\":\"顯示原文\",\"translateInto\":\"翻譯為:\",\"options\":\"選項\",\"visibleInDevAndPreview\":\"僅在開發和預覽環境可見\",\"currentModeInsert\":\"當前模式:插入\",\"clickToSwitchToReplace\":\"點擊切換到替換模式\",\"currentModeReplace\":\"當前模式:替換\",\"clickToSwitchToInsert\":\"點擊切換到插入模式\",\"currentContentNotSupported\":\"當前內容不支援翻譯\",\"error\":\"錯誤\"},\"translate\":{\"autoDetect\":\"自動偵測\",\"systemLanguage\":\"(系統)\",\"source\":\"來源語言\",\"target\":\"目標語言\",\"searchLanguagePlaceholder\":\"搜尋語言...\",\"noLanguageFound\":\"找不到語言。\"},\"skill\":{\"seeMore\":\"查看更多\",\"install\":\"安裝\",\"getWith\":\"獲取需要\",\"uninstall\":\"解除安裝\",\"pin\":\"置頂\",\"unpin\":\"取消置頂\",\"share\":\"分享\",\"unshare\":\"取消分享\",\"edit\":\"編輯\",\"duplicate\":\"複製\",\"delete\":\"刪除\",\"instructionPrivate\":\"該技能的指令內容已被作者隱藏,你仍可以安裝和使用。\",\"author\":\"作者\",\"categories\":\"類別\",\"category\":{\"learn\":\"學習\",\"write\":\"寫作\",\"create\":\"創作\",\"life\":\"生活\",\"other\":\"其他\",\"research\":\"研究\",\"images\":\"圖片\",\"slides\":\"Slides\",\"webpage\":\"網頁\",\"video\":\"影片\"},\"instructions\":\"指令\",\"tools\":\"工具\",\"instructionEmpty\":\"指令為空\",\"instructionVisibleToCreator\":\"僅建立者可見\",\"deletedDescription\":\"該技能已被作者刪除\",\"privatizedDescription\":\"該技能已被作者設為私有,你仍然可以使用它\",\"installedBy\":\"安裝人數\",\"creditsEarned\":\"已獲取積分\",\"showOriginal\":\"顯示原文\",\"versions\":\"版本歷史\",\"paidInstall\":{\"confirmPurchaseTitle\":\"確認購買\",\"paidSkillDescription\":\"這是一個付費 Skill,安裝需要支付積分。\",\"youHave\":\"您擁有\",\"creditsAvailable\":\"積分可用。\",\"notesLabel\":\"注意:\",\"notesBody\":\" 積分不可退還。該 Skill 由 @{{name}} 發佈,YouMind 不保證其品質。\",\"contactAuthor\":\"購買前請確認。如有疑問,請聯繫作者 @{{name}}。\",\"payAndInstall\":\"支付並安裝\",\"purchaseSuccessTitle\":\"購買成功\",\"purchaseSuccessDescription\":\"你已成功購買並安裝該技能。你可以在「Skill-Yours」中找到它,或在聊天框中輸入「/」來使用。\",\"done\":\"完成\",\"runNow\":\"立即執行\",\"notEnoughCredits\":\"積分不足\",\"upgradeForMoreCredits\":\"升級獲取更多積分\",\"buyCredits\":\"購買積分\"},\"draft\":\"草稿\",\"draftTooltip\":\"這是草稿視圖。發布前請先更新到最新版本。\",\"draftTooltipPrefix\":\"這是草稿視圖。發布前請先\",\"draftTooltipAction\":\"更新\",\"draftTooltipSuffix\":\"到最新版本。\",\"madeBy\":\"作者\",\"version\":\"版本\",\"from\":\"來源\",\"categoryLabel\":\"分類\",\"description\":\"描述\",\"updates\":\"更新記錄\",\"latest\":\"最新\",\"runIt\":\"執行\",\"play\":\"播放\",\"marketing\":{\"campaign\":\"活動\",\"campaignDescription\":\"發布你的技能,自主定價,每次安裝都能賺取獎勵。獎勵可兌換點數或其他福利。\",\"viewDetail\":\"查看詳情\",\"viewMyRewards\":\"查看我的"])</script><script>self.__next_f.push([1,"獎勵\",\"earned\":\"已賺取\",\"publishedSkillCount\":\"{{count}} 個技能\",\"editorPicks\":\"精選文章\",\"featuredCreators\":\"精選創作者\",\"featuredCreatorType\":\"{{category}}創作者\",\"topCreators\":\"優秀創作者\",\"campaignTitle\":\"將你的技能變為獎勵\",\"joinPlan\":\"加入創作者激勵計畫\"},\"gallery\":{\"skillCount\":\"{{count}} 個技能\",\"tab\":{\"weekly\":\"週榜\",\"monthly\":\"月榜\",\"all\":\"全部\"},\"priceFilter\":{\"all\":\"全部\",\"paid\":\"付費\",\"free\":\"免費\"}}},\"pack\":{\"copyLink\":\"複製連結\",\"copySuccess\":\"連結已複製到剪貼簿\",\"copyFailed\":\"複製失敗\"},\"document\":{\"insert\":\"插入\",\"format\":\"格式\",\"title\":\"標題\",\"subtitle\":\"副標題\",\"smallHeading\":\"三級標題\",\"text\":\"文字\",\"taskList\":\"任務清單\",\"numberedList\":\"編號清單\",\"bulletList\":\"項目符號清單\",\"quote\":\"引用\",\"codeBlock\":\"程式碼區塊\",\"italic\":\"斜體\",\"underline\":\"底線\",\"strikethrough\":\"刪除線\",\"code\":\"程式碼\",\"table\":\"表格\",\"divider\":\"分隔線\",\"mermaid\":\"Mermaid 圖表\",\"formula\":\"公式\",\"callout\":\"高亮區塊\",\"image\":\"圖片\",\"imageGenerate\":\"生成圖片\",\"video\":\"影片\",\"attachment\":\"附件\",\"linkContent\":\"連結內容\",\"style\":\"樣式\",\"font\":\"字體\",\"backdrop\":\"背景\",\"default\":\"預設\"}},\"View\":{\"htmlEditor\":{\"code\":\"程式碼\",\"preview\":\"預覽\",\"fullscreen\":\"全螢幕\",\"exitFullscreen\":\"退出全螢幕\",\"insertToPage\":\"插入到頁面\",\"copyCode\":\"複製程式碼\",\"codeCopied\":\"程式碼已複製到剪貼簿\",\"copyLink\":\"複製連結\",\"saveWebpageToCraft\":\"儲存網頁到創作區\"},\"imageToolbar\":{\"copiedMxGraphCode\":\"已複製 mxgraph 程式碼。你可以將其貼上到 https://app.diagrams.net/ 進行編輯。\",\"copiedImageLink\":\"已複製圖片連結\",\"failedToCopyImageLink\":\"複製圖片連結失敗\",\"copiedImage\":\"已複製圖片\",\"failedToCopyImage\":\"複製圖片失敗\",\"startDownloadingImage\":\"開始下載圖片\",\"failedToDownloadImage\":\"下載圖片失敗\",\"switchToOriginal\":\"切換至原圖\",\"switchToCompressed\":\"切換至壓縮圖\",\"copy\":\"複製\",\"pick\":\"摘錄\",\"extractText\":\"提取文字\",\"askAI\":\"詢問 AI\",\"viewImage\":\"查看圖片\",\"download\":\"下載\",\"copyLink\":\"複製連結\",\"copyMxGraphCode\":\"複製 mxgraph 代碼\",\"save\":\"儲存到專案\",\"extracting\":\"提取中...\",\"noTextExtracted\":\"未提取到文字\",\"copiedToClipboard\":\"已複製到剪貼簿\",\"copyToClipboard\":\"複製到剪貼簿\",\"history\":\"歷史\",\"historyVersions\":\"歷史版本\",\"close\":\"關閉\",\"editArea\":\"編輯區域\",\"editImage\":\"編輯圖片\"},\"timeSince\":{\"secondsAgo\":\"幾秒前\",\"secondAgo\":\"1 秒前\",\"secondsAgoCount\":\"{{count}} 秒前\",\"minuteAgo\":\"1 分鐘前\",\"minutesAgoCount\":\"{{count}} 分鐘前\",\"hourAgo\":\"1 小時前\",\"hoursAgoCount\":\"{{count}} 小時前\",\"yesterday\":\"昨天\",\"dayAgo\":\"1 天前\",\"daysAgoCount\":\"{{count}} 天前\",\"weekAgo\":\"1 週前\",\"weeksAgoCount\":\"{{count}} 週前\",\"monthAgo\":\"1 個月前\",\"monthsAgoCount\":\"{{count}} 個月前\",\"yearAgo\":\"1 年前\",\"yearsAgoCount\":\"{{count}} 年前\",\"year\":\"年\",\"years\":\"年\",\"month\":\"月\",\"months\":\"月\",\"week\":\"週\",\"weeks\":\"週\",\"day\":\"天\",\"days\":\"天\",\"hour\":\"小時\",\"hours\":\"小時\",\"minute\":\"分鐘\",\"minutes\":\"分鐘\",\"second\":\"秒\",\"seconds\":\"秒\"},\"subscription\":{\"annually\":\"按年付費\",\"monthly\":\"按月付費\",\"twoMonthsFree\":\"節省 17%\",\"priceDisclaimer\":\"價格不含稅費、徵稅和關稅。\",\"free\":{\"name\":\"免費版\",\"description\":\"探索 YouMind 能為你做什麼。\",\"buttonGet\":\"開始使用\",\"buttonCurrent\":\"目前方案\",\"features\":{\"credits\":\"有限 AI 點數\",\"aiModels\":\"有限存取 AI 模型\",\"materials\":\"最多 100 個檔案\",\"aiFeatures\":\"有限 AI 功能\",\"files\":\"最多 100 個檔案\",\"memory\":\"有限記憶和上下文\"},\"dailyLimitTitle\":\"已達每日額度上限。\",\"dailyLimitDescription\":\"你的免費積分已用完。\",\"imageGenerateLimitTitle\":\"生圖數量已達上限\",\"imageGenerateLimitDescription\":\"你已達到生成圖片數量的上限。 \",\"videoGenerateLimitTitle\":\"影片生成數量已達上限\",\"videoGenerateLimitDescription\":\"你已達到生成影片數量的上限。 \",\"slidesGenerateLimitTitle"])</script><script>self.__next_f.push([1,"\":\"簡報生成數量已達上限\",\"slidesGenerateLimitDescription\":\"你已達到生成簡報數量的上限。 \",\"newMaterialLimitTitle\":\"材料建立數量已達上限\",\"newMaterialLimitDescription\":\"你已達到材料建立的上限。\",\"freePlanTitle\":\"你目前為免費方案\",\"freePlanDescription\":\"升級即可解鎖全部功能並獲得更多積分\",\"messageFreePlanLimitTitle\":\"免費方案額度已用完\",\"unitMonthly\":\"月\",\"forever\":\"永久免費\",\"freeDailyGrantWelcomeTitle\":\"升級解鎖全部能力\",\"freeDailyGrantWelcomeDescription\":\"限時歡迎禮:今日升級即送 {{credits}} 積分,24 小時內有效。\",\"freeDailyGrantWelcomeCredits1\":\"2,000\",\"freeDailyGrantWelcomeCredits3\":\"1,000\",\"limitDescriptionWithUpgradeCta\":\"{{lead}}升級以繼續創作。\"},\"pro\":{\"name\":\"Pro\",\"unit\":\"美元\",\"unitMonthly\":\"月\",\"unitYearly\":\"年\",\"description\":\"提升你的日常創造力。\",\"buttonGet\":\"立即訂閱 Pro\",\"buttonCurrent\":\"目前方案\",\"buttonRecurring\":\"立即訂閱 Pro\",\"buttonOneOff\":\"使用 Alipay 購買\",\"features\":{\"credits\":\"每月 {{credits}} 點數\",\"aiModels\":\"存取前沿模型\",\"materials\":\"個人創作 Agent\",\"fileUpload\":\"無限制檔案上傳和解析\",\"aiWriting\":\"AI 寫作、圖片、投影片、網頁、音訊和影片創作\",\"imageCreation\":\"AI 寫作、圖片、投影片、網頁、音訊和影片創作\",\"audioGeneration\":\"AI 寫作、圖片、投影片、網頁、音訊和影片創作\",\"youtubeTranscription\":\"無字幕 YouTube 影片轉錄\",\"memory\":\"擴展記憶和上下文\",\"personalCreativeAgent\":\"個人創作 Agent\",\"aiCreation\":\"AI 寫作、圖片、投影片、網頁、音訊和影片創作\",\"mcps\":\"MCPs\",\"browserUse\":\"瀏覽器使用\",\"skillsMarketplace\":\"Skills 市集\",\"topUps\":\"按需加購點數\",\"removeBadgeWatermark\":\"移除 YouMind 標章和浮水印\",\"earlyAccess\":\"新功能搶先體驗\"},\"originalPrice\":\"$${{amount}}/年\",\"save\":\"節省\",\"saveAmount\":\"$${{amount}}\",\"annually\":\"每年\",\"buttonUpcoming\":\"即將生效\",\"used80Title\":\"你已使用 80% 的月度積分\",\"used80Description\":\"你的月度積分即將用完。考慮升級方案以持續創作,不受中斷。\",\"used100Title\":\"已達積分上限\",\"used100Description\":\"你已達到積分上限。升級以繼續創作。\"},\"max\":{\"name\":\"Max\",\"unit\":\"美元\",\"unitMonthly\":\"月\",\"unitYearly\":\"年\",\"description\":\"解鎖 YouMind 的全部潛力。\",\"buttonGet\":\"立即訂閱 Max\",\"buttonCurrent\":\"目前方案\",\"buttonRecurring\":\"立即訂閱 Max\",\"buttonOneOff\":\"使用 Alipay 購買\",\"features\":{\"credits\":\"每月 {{credits}} 點數\",\"aiModels\":\"無限制存取前沿模型\",\"materials\":\"包含全部 Pro 功能\",\"fileUpload\":\"無限制存取前沿模型\",\"aiWriting\":\"更快、更高品質的生成\",\"imageCreation\":\"更快、更高品質的生成\",\"audioGeneration\":\"更快、更高品質的生成\",\"youtubeTranscription\":\"包含全部 Pro 功能\",\"memory\":\"最大記憶和上下文\",\"customization\":\"更快、更高品質的生成\",\"earlyAccess\":\"新功能研究預覽\",\"includesAllPro\":\"包含全部 Pro 功能\",\"generation\":\"更快、更高品質的生成\",\"researchPreview\":\"新功能研究預覽\"},\"originalPrice\":\"$${{amount}}/年\",\"save\":\"節省\",\"saveAmount\":\"$${{amount}}\",\"annually\":\"每年\",\"buttonUpcoming\":\"即將生效\"},\"renewChange\":{\"title\":\"計劃變更\",\"message\":\"將於 {{date}} 從 {{currentTier}} {{currentInterval}} 調整為 {{newTier}} {{newInterval}}\",\"currentPlanContinues\":\"目前方案將持續到 {{date}}\",\"newPlanStarts\":\"將於 {{date}} 開始(下一個帳單日期)\",\"tierPro\":\"Pro\",\"tierMax\":\"Max\",\"intervalMonthly\":\"連續包月\",\"intervalYearly\":\"連續包年\",\"downgradeMessage\":\"你的方案將在 {{date}} 降級為 {{tier}}({{credits}} 積分)\"},\"scheduledChange\":{\"title\":\"已排程的變更\",\"cancel\":\"取消\",\"confirmChange\":\"確認變更\",\"currentLine\":\"目前方案:{{plan}}({{price}} {{interval}} 於 {{date}})\",\"newLine\":\"新方案:{{plan}}({{price}} {{interval}} 於 {{date}})\",\"downgradeTitle\":\"確認降級到 {{tier}} ?\",\"downgradeDescription\":\"你可以繼續使用目"])</script><script>self.__next_f.push([1,"前方案的所有功能直到 {{date}}\",\"downgradeButton\":\"降級\",\"downgradeToTitle\":\"降級到 {{tier}}\",\"downgradeTo\":\"降級到\",\"credits\":\"積分\",\"currentPlanUntil\":\"目前方案(至 {{date}})\",\"newPlanFrom\":\"{{plan}}(自 {{date}} 起)\",\"noChargeToday\":\"今日無需付費\",\"downgradeDetails\":\"降級詳情\",\"detailKeepFeatures\":\"你可以繼續使用目前方案的所有功能直到 {{date}}\",\"detailPlanChange\":\"自 {{date}} 起,你的方案將變更為 {{plan}},{{price}}/月\",\"detailCancelAnytime\":\"你可以在降級生效前隨時取消\"},\"unpaid\":{\"message\":\"你有一筆未付款的訂單。如果 24 小時內未完成付款,訂單將自動取消。\",\"payNow\":\"立即付款\"},\"appleSubscription\":{\"message\":\"你在 iOS 上購買了訂閱。請使用 YouMind 應用程式\",\"upgradeLink\":\"在 Apple 中升級。\"},\"addonCredits\":{\"title\":\"附加積分歷史\",\"reason\":\"原因\",\"date\":\"日期\",\"amount\":\"金額\",\"noTransactions\":\"未找到交易記錄\"},\"previewInvoice\":{\"title\":\"確認更改\",\"subtotal\":\"小計\",\"discount\":\"折扣\",\"totalDueToday\":\"今日應付總額\",\"paymentMethod\":\"付款方式\",\"payNow\":\"立即付款\",\"addPromotionCode\":\"新增促銷代碼\",\"apply\":\"套用\",\"cancel\":\"取消\",\"upgradeTitle\":\"升級目前方案\",\"upgradeSubtitle\":\"升級後將會發生以下變化:\",\"currentPlan\":\"目前方案\",\"upgradeTo\":\"升級到\",\"credits\":\"點數\",\"upgradeDetails\":\"升級詳情\",\"detailEffectImmediate\":\"方案將立即生效,下一個帳單週期從 {{date}} 開始\",\"detailPlanUpdate\":\"你的方案將更新為 {{price}}/{{interval}},每月 {{credits}} 點數\",\"detailYearlyCredit\":\"你的年度方案剩餘價值將用於抵扣本次升級費用\",\"detailCreditsRollover\":\"本月剩餘的 {{credits}} 點數將結轉到下一個帳單週期\",\"upgrade\":\"升級\",\"creditBalanceInfo\":\"你有 {{amount}} 的抵扣餘額,將自動套用於未來的帳單週期\",\"periodMonth\":\"月\",\"periodYear\":\"年\",\"detailEffectImmediateOneOff\":\"立即生效\",\"detailPlanUpdateOneOff\":\"你的方案將更新為每月 {{credits}} credits\",\"detailOneOffUnusedCredit\":\"你目前方案的未使用價值將折抵本次升級\",\"detailCreditsRolloverOneOff\":\"你本月剩餘的 {{credits}} credits 將結轉到新方案\",\"detailValidUntilOneOff\":\"權益有效期至 {{date}}\",\"supersedeTitle\":\"調整訂閱\",\"supersedeCompensation\":\"剩餘時長補償\",\"supersedeBonusCredits\":\"附加積分\",\"supersedeNewSubscription\":\"新訂閱\",\"supersedeSteps\":\"確認後將:\\n1. 取消目前訂閱並發放積分補償\\n2. 跳轉至付款頁面完成新訂閱\",\"supersedeConfirm\":\"立刻調整\"},\"unpaidDialog\":{\"title\":\"待付款訂單\",\"message\":\"你有一筆未付款的訂單。如果 24 小時內未完成付款,訂單將自動取消。\",\"payNow\":\"立即付款\"},\"failedToUpdate\":{\"message\":\"很抱歉,我們目前無法為你升級。請聯絡我們解決。\",\"email\":\"contact@youmind.ai\"},\"save17Percent\":\"節省 17%\",\"paymentMethodSetup\":{\"title\":\"需要新增付款方式\",\"failedWithMethod\":\"使用 {{paymentMethod}} 付款失敗,請新增付款方式完成升級。\",\"failedMethodExcluded\":\"使用 {{paymentMethod}} 付款失敗,{{paymentMethod}} 無法完成此次升級,請選擇其他付款方式。\",\"alipayLimitExcluded\":\"支付寶可能存在限額限制,建議更換信用卡支付。\",\"noPaymentMethod\":\"你目前沒有綁定付款方式,請新增付款方式完成升級。\",\"redirecting\":\"跳轉中...\",\"cancel\":\"取消\",\"continue\":\"繼續\"},\"paymentMethod\":{\"currentMethod\":\"目前付款方式\",\"alipay\":\"支付寶 (Alipay)\",\"wechatPay\":\"微信支付\"},\"upgrading\":{\"title\":\"正在升級\",\"description\":\"請稍候,正在處理你的訂閱升級...\",\"successTitle\":\"升級成功\",\"successDescription\":\"你的訂閱已成功升級\"},\"upgradeYourPlanCapitalized\":\"升級你的方案\",\"chooseThePlan\":\"選擇適合你的方案,或者\",\"buyCredits\":\"購買積分\",\"buyCreditsDialog\":{\"title\":\"購買積分\",\"disclaimer\":\"這是虛擬商品,不支援退款。積分可累積使用,可重複購買。\",\"payButton\":\"支付 ${{amount}}\",\"perP"])</script><script>self.__next_f.push([1,"ack\":\"每包 {{credits}} 積分 / ${{price}}\",\"packs_one\":\"{{count}} 包\",\"packs_other\":\"{{count}} 包\",\"decrement\":\"減少數量\",\"increment\":\"增加數量\"},\"oneOffProUpgrade\":{\"description\":\"買斷一年無法自助升級,請聯絡我們幫你完成升級。\",\"placeholder\":\"請描述你的升級需求或相關問題...\"},\"featureNotAvailableForYourTier\":\"你目前的付費方案不支援此功能。如需繼續,請升級套餐\",\"upgradeToMaxTitle\":\"升級至 Max\",\"modelSelectPaidModelTitle\":\"升級以使用更多 AI 模型\",\"paidSkillUpgradeTitle\":\"解鎖升級,取得付費 Skill 使用權益\",\"paidSkillSubmitUpgradeTitle\":\"解鎖升級,取得提交付費 Skill 權益\",\"oneTimePayment\":{\"buttonLabel\":\"一次性付款\",\"dialogTitle\":\"一次性付款\",\"dialogSubtitle\":\"支付寶支付 · 無自動續費\",\"planLabel\":\"方案\",\"planProDescription\":\"提升你的日常創造力。\",\"planMaxDescription\":\"解鎖 YouMind 的全部潛力。\",\"creditsLabel\":\"點數\",\"durationLabel\":\"時長\",\"durationMonth\":\"1 個月\",\"durationYear\":\"1 年\",\"savePercentage\":\"節省 17%\",\"totalLabel\":\"總計\",\"payButton\":\"使用支付寶支付\",\"choosePlanTitle\":\"選擇你的方案\",\"billingCycleLabel\":\"計費週期\",\"payMonthly\":\"按月支付\",\"payYearly\":\"按年支付\",\"subscribeButton\":\"訂閱\",\"oneTimePaymentButton\":\"一次性付款\"},\"subscriptionExpiryNotice\":\"訂閱將於 {{date}} 到期,之後將降級為 Free\",\"resumeSubscription\":\"恢復\",\"pricing\":\"套餐價格\",\"pricingSubtitle\":\"免費開始。升級以獲得完全符合您需求的容量。\",\"creditsPerMonthFormat\":\"每月 {{credits}} 點數\",\"wantExtraCredits\":\"需要更多積分?\",\"upgradeNow\":\"立即升級\",\"creditLimitUpgrade\":{\"upgradeTo\":\"升級到\",\"twoMonthsFree\":\"免 2 個月\",\"savePercentage\":\"節省 {{percent}}%\",\"youWillUnlock\":\"升級後可解鎖:\",\"cancelAnytime\":\"可隨時降級或取消。\",\"agreeToTermsBefore\":\"升級即表示你同意我們的\",\"terms\":\"條款\",\"agreeToTermsAfter\":\"。\",\"cancel\":\"取消\",\"upgrade\":\"升級\"},\"countdownHr\":\"小時\",\"countdownMin\":\"分\",\"countdownSec\":\"秒\",\"faq\":{\"title\":\"常見問題\",\"q1\":\"什麼是 YouMind,它是如何運作的?\",\"a1\":\"YouMind 是一個讓學習與創作相遇的 AI 工作區。你可以與 AI 代理一起學習、思考與創作。一切流程彼此銜接,並隨你成長。\",\"q2\":\"點數如何計費?\",\"a2\":\"點數用於處理你的請求並產出內容。實際消耗會因工具、模型以及請求的複雜度與細節而異。一般而言,任務越複雜、設定越細緻,所需點數越多。\",\"q3\":\"我可以升級方案嗎?\",\"a3\":\"若需要更多點數,你可以升級方案以取得更高的每月額度,或購買點數加購包,在不變更目前方案的情況下取得更多點數。購買的點數會立即入帳且永不過期。\",\"q4\":\"使用費用是多少?\",\"a4\":\"免費使用者可獲得一定點數體驗。升級付費方案可解鎖更多點數與進階功能。\",\"q5\":\"如何取得發票?\",\"a5\":\"你可以在「設定 → 帳單」中檢視並下載過往所有付款的發票。\"},\"showAllFeatures\":\"展開全部功能\",\"showFewerFeatures\":\"收合功能列表\",\"oneOffNoDowngrade\":\"你目前是一次性買斷方案,僅支援升級到更高方案。\",\"paymentMethods\":{\"card\":\"支援信用卡付款\",\"pix\":\"支援 Pix 付款\",\"alipay\":\"支援支付寶付款\",\"upi\":\"支援 UPI 付款\"},\"firstPurchaseDiscount\":{\"limitedTime\":\"即將截止\",\"monthlyOffer\":\"首月 {{percent}}% 折扣\",\"yearlyOffer\":\"首年 {{percent}}% 折扣\",\"monthlyUnit\":\"首月\",\"yearlyUnit\":\"月(首年)\"},\"credits\":\"點數\",\"saveWithAnnualBilling\":\"年付可節省 \u003camount\u003e${{amount}}\u003c/amount\u003e\",\"annualSavingsBadge\":\"省 ${{amount}}\"},\"feedback\":{\"title\":\"聯絡我們\",\"description\":\"期待你的回饋。你可以向我們回報錯誤、提出問題或分享想法。\",\"placeholder\":\"發現了錯誤或有好的想法要分享……\",\"uploadHint\":\"上傳圖片或從剪貼簿貼上圖片。\",\"emailHint\":\"你也可以透過電子郵件聯絡我們:\",\"sendMessage\":\"傳送訊息\",\"sending\":\"傳送中…\""])</script><script>self.__next_f.push([1,",\"toast\":\"感謝你的回饋。\",\"maxImagesError\":\"最多只能上傳 5 張圖片。\",\"imageSizeError\":\"圖片大小不能超過 20MB\",\"emptyFeedbackError\":\"請輸入你的回饋內容。\",\"submitError\":\"傳送回饋失敗\",\"discordTooltip\":\"加入我們的社群\",\"emailTooltip\":\"透過郵件聯繫我們:contact@youmind.ai\"},\"pagination\":{\"previous\":\"上一頁\",\"next\":\"下一頁\",\"goToPreviousPage\":\"前往上一頁\",\"goToNextPage\":\"前往下一頁\",\"morePages\":\"更多頁面\"}}},\"children\":\"$L1e\"}]\n1e:[\"$\",\"$L1f\",null,{\"children\":[[\"$\",\"$L20\",\"zh-TW\",{\"locale\":\"zh-TW\"}],[\"$\",\"$L21\",null,{}],[\"$\",\"$9\",null,{\"fallback\":null,\"children\":[\"$\",\"$L22\",null,{}]}],[\"$\",\"$L23\",null,{}],[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L24\",null,{}],[\"$\",\"$L25\",null,{\"level\":\"universal\"}]]}]\nd:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, viewport-fit=cover\"}]]\n26:I[256357,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\"],\"IconMark\"]\na:null\nf:[[\"$\",\"title\",\"0\",{\"children\":\"Bio/Med深度可靠研究 - YouMind 技能\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"透過PubMed/NCBI E-utilities進行可複現文獻初篩,PMID去重,摘要分級,PMC/BioC全文複核,確保引用可點擊,提供完整文獻資訊及保守核查的IF。\"}],[\"$\",\"meta\",\"2\",{\"name\":\"application-name\",\"content\":\"YouMind\"}],[\"$\",\"meta\",\"3\",{\"name\":\"robots\",\"content\":\"index, follow\"}],[\"$\",\"link\",\"4\",{\"rel\":\"canonical\",\"href\":\"https://youmind.club/zh-TW/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"5\",{\"rel\":\"alternate\",\"hrefLang\":\"en-US\",\"href\":\"https://youmind.club/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"6\",{\"rel\":\"alternate\",\"hrefLang\":\"zh-CN\",\"href\":\"https://youmind.club/zh-CN/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"7\",{\"rel\":\"alternate\",\"hrefLang\":\"zh-TW\",\"href\":\"https://youmind.club/zh-TW/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"8\",{\"rel\":\"alternate\",\"hrefLang\":\"ja-JP\",\"href\":\"https://youmind.club/ja-JP/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"9\",{\"rel\":\"alternate\",\"hrefLang\":\"ko-KR\",\"href\":\"https://youmind.club/ko-KR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"10\",{\"rel\":\"alternate\",\"hrefLang\":\"th-TH\",\"href\":\"https://youmind.club/th-TH/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"11\",{\"rel\":\"alternate\",\"hrefLang\":\"vi-VN\",\"href\":\"https://youmind.club/vi-VN/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"12\",{\"rel\":\"alternate\",\"hrefLang\":\"hi-IN\",\"href\":\"https://youmind.club/hi-IN/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"13\",{\"rel\":\"alternate\",\"hrefLang\":\"es-ES\",\"href\":\"https://youmind.club/es-ES/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"14\",{\"rel\":\"alternate\",\"hrefLang\":\"es-419\",\"href\":\"https://youmind.club/es-419/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"15\",{\"rel\":\"alternate\",\"hrefLang\":\"de-DE\",\"href\":\"https://youmind.club/de-DE/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"16\",{\"rel\":\"alternate\",\"hrefLang\":\"fr-FR\",\"href\":\"https://youmind.club/fr-FR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"17\",{\"rel\":\"alternate\",\"hrefLang\":\"it-IT\",\"href\":\"https://youmind.club/it-IT/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"18\",{\"rel\":\"alternate\",\"hrefLang\":\"pt-BR\",\"href\":\"https://youmind.club/pt-BR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"19\",{\"rel\":\"alternate\",\"hrefLang\":\"pt-PT\",\"href\":\"https://youmind.club/pt-PT/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"20\",{\"rel\":\"alternate\",\"hrefLang\":\"tr-TR\",\"href\":\"https://youmind.club/tr-TR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\""])</script><script>self.__next_f.push([1,"$\",\"link\",\"21\",{\"rel\":\"alternate\",\"hrefLang\":\"x-default\",\"href\":\"https://youmind.club/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"meta\",\"22\",{\"property\":\"og:title\",\"content\":\"Bio/Med深度可靠研究 - YouMind 技能\"}],[\"$\",\"meta\",\"23\",{\"property\":\"og:description\",\"content\":\"透過PubMed/NCBI E-utilities進行可複現文獻初篩,PMID去重,摘要分級,PMC/BioC全文複核,確保引用可點擊,提供完整文獻資訊及保守核查的IF。\"}],[\"$\",\"meta\",\"24\",{\"property\":\"og:image\",\"content\":\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2@medium\"}],[\"$\",\"meta\",\"25\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"26\",{\"name\":\"twitter:title\",\"content\":\"Bio/Med深度可靠研究 - YouMind 技能\"}],[\"$\",\"meta\",\"27\",{\"name\":\"twitter:description\",\"content\":\"透過PubMed/NCBI E-utilities進行可複現文獻初篩,PMID去重,摘要分級,PMC/BioC全文複核,確保引用可點擊,提供完整文獻資訊及保守核查的IF。\"}],[\"$\",\"meta\",\"28\",{\"name\":\"twitter:image\",\"content\":\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2@medium\"}],[\"$\",\"link\",\"29\",{\"rel\":\"icon\",\"href\":\"/static/assets/favicon.ico\"}],[\"$\",\"$L26\",\"30\",{}]]\n27:I[931389,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\",\"/_next/static/chunks/16n2jkrhvi-pz.js\",\"/_next/static/chunks/0f4tr~5l-qwe9.js\",\"/_next/static/chunks/0bhxpnlf5ail7.js\",\"/_next/static/chunks/0w-owyy.fgb-a.js\",\"/_next/static/chunks/0rl_6jxcy8~8..js\",\"/_next/static/chunks/0q~tn_buzkkbh.js\",\"/_next/static/chunks/0ewyep~4bzfg7.js\",\"/_next/static/chunks/0d3y~wt-kf~8e.js\"],\"BackButton\"]\n28:I[414501,[\"/_next/static/chunks/0u9s6z6l-r0su.js\",\"/_next/static/chunks/16n5spzk7h5jo.js\",\"/_next/static/chunks/0yw37~l.5-rgr.js\",\"/_next/static/chunks/02bj8.g.2y357.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/0x-0~aayuagy2.js\",\"/_next/static/chunks/0k8ggz94zcdfn.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0q5s9a4l3m7mb.js\",\"/_next/static/chunks/027g.nnvn-88q.js\",\"/_next/static/chunks/03ytj6stx.azu.js\",\"/_next/static/chunks/16n2jkrhvi-pz.js\",\"/_next/static/chunks/0f4tr~5l-qwe9.js\",\"/_next/static/chunks/0bhxpnlf5ail7.js\",\"/_next/static/chunks/0w-owyy.fgb-a.js\",\"/_next/static/chunks/0rl_6jxcy8~8..js\",\"/_next/static/chunks/0q~tn_buzkkbh.js\",\"/_next/static/chunks/0ewyep~4bzfg7.js\",\"/_next/static/chunks/0d3y~wt-kf~8e.js\"],\"SkillDetailContent\"]\n29:Tfc8,这套流程的核心是:先用多 query 在 PubMed / NCBI E-utilities 做可复现初筛,再用 PMID 去重和摘要证据分级;只有少量关键文献进入 PMC / BioC 全文复核;正文引用必须可点击;文末必须列完整文献信息;IF 只能通过公开可访问来源保守核查,不能默认有 JCR 或本地数据库,不能猜,不能把低置信匹配当成确定结果。\n\n1. 用户发起检索后的预处理\n1.1 先解析用户问题\n收到用户问题后,先把自然语言问题拆成结构化要素。\n必须识别:\n• 研究对象:基因、蛋白、药物、通道、细胞类型、组织、疾病、模型。\n• 生物系统:人、小鼠、大鼠、斑马鱼、类器官、视网膜、脑区、细胞系等。\n• 关系类型:表达、调控、功能、机制、表型、死亡、生存、治疗、毒性、发育、退化等。\n• 证据需求:是否需要直接证据、机制证据、全文证据、图表、剂量参数、实验方法。\n• 时间范围:不限时间、近 5 年、近 1 年、最新进展、经典文献。\n• 输出类型:简答、代表文献、综述式总结、实验设计建议、证据表、机制图谱。\n示例"])</script><script>self.__next_f.push([1,":\n用户问题:\n“帮我找视网膜类器官死亡相关文献。”\n结构化拆解(示例):\n• 核心模型:retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid。\n• 表型:cell death, apoptosis, degeneration, survival loss, stress, necrosis。\n• 相关细胞:photoreceptor, cone, rod, retinal ganglion cell, Müller glia。\n• 潜在机制:oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis。\n• 证据目标:优先找直接在人源或动物源 retinal organoid 中观察到细胞死亡/凋亡/退化的原始研究;再找间接机制文献。\n1.2 关键词拆分原则(示例)\n不要只写一个检索式。每个概念至少准备三类词。\n第一类:精确词。\n• retinal organoid\n• retina organoid\n• human retinal organoid\n• hPSC-derived retinal organoid\n• iPSC-derived retinal organoid\n第二类:同义词和上位词。\n• optic cup organoid\n• 3D retinal culture\n• stem cell-derived retina\n• retinal differentiation\n• retinal tissue model\n第三类:机制和表型词。\n• apoptosis\n• cell death\n• degeneration\n• survival\n• stress\n• oxidative stress\n• ER stress\n• mitochondrial dysfunction\n• hypoxia\n• necroptosis\n• ferroptosis\n如果用户限定细胞类型,加入:\n• photoreceptor\n• cone\n• rod\n• retinal ganglion cell\n• Müller glia\n• bipolar cell\n• amacrine cell\n如果用户限定物种或来源,加入:\n• human\n• mouse\n• rat\n• zebrafish\n• hESC\n• iPSC\n• pluripotent stem cell\n1.3 生成分层检索式\n至少生成 3–6 组 query。每组 query 对应一个检索目的。\n第一层:直接证据检索。\n用于找目标模型 + 目标表型直接命中的文献。\n```text\n(\"retinal organoid\" OR \"retina organoid\" OR \"human retinal organoid\") AND (apoptosis OR \"cell death\" OR degeneration)\n```\n第二层:扩展模型检索。\n用于捕捉作者没有使用 retinal organoid 精确词但实际相关的文献。\n```text\n(\"optic cup organoid\" OR \"3D retinal culture\" OR \"stem cell-derived retina\") AND (survival OR apoptosis OR stress)\n```\n第三层:机制专项检索。\n用于验证具体通路或机制。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (\"oxidative stress\" OR \"ER stress\" OR hypoxia OR mitochondria)\n```\n第四层:细胞类型专项检索。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (photoreceptor OR cone OR rod OR \"retinal ganglion cell\") AND (death OR apoptosis OR degeneration)\n```\n第五层:疾病模型检索。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)\n```\n第六层:综述/背景检索。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (review OR protocol OR model)\n```2a:T12a5,\u003cp\u003e这套流程的核心是:先用多 query 在 PubMed / NCBI E-utilities 做可复现初筛,再用 PMID 去重和摘要证据分级;只有少量关键文献进入 PMC / BioC 全文复核;正文引用必须可点击;文末必须列完整文献信息;IF 只能通过公开可访问来源保守核查,不能默认有 JCR 或本地数据库,不能猜,不能把低置信匹配当成确定结果。\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e1. 用户发起检索后的预处理\u003c/p\u003e\u003cp\u003e1.1 先解析用户问题\u003c/p\u003e\u003cp\u003e收到用户问题后,先把自然语言问题拆成结构化要素。\u003c/p\u003e\u003cp\u003e必须识别:\u003c/p\u003e\u003cp\u003e• 研究对象:基因、蛋白、药物、通道、细胞类型、组织、疾病、模型。\u003c/p\u003e\u003cp\u003e• 生物系统:人、小鼠、大鼠、斑马鱼、类器官、视网膜、脑区、细胞系等。\u003c/p\u003e\u003cp\u003e• 关系类型:表达、调控、功能、机制、表型、死亡、生存、治疗、毒性、发育、退化等。\u003c/p\u003e\u003cp\u003e• 证据需求:是否需要直接证据、机制证据、全文证据、图表、剂量参数、实验方法。\u003c/p\u003e\u003cp\u003e• 时间范围:不限时间、近 5 年、近 1 年、最新进展、经典文献。\u003c/p\u003e\u003cp\u003e• 输出类型:简答、代表文献、综述式总结、实验设计建议、证据表、"])</script><script>self.__next_f.push([1,"机制图谱。\u003c/p\u003e\u003cp\u003e示例:\u003c/p\u003e\u003cp\u003e用户问题:\u003c/p\u003e\u003cp\u003e“帮我找视网膜类器官死亡相关文献。”\u003c/p\u003e\u003cp\u003e结构化拆解(示例):\u003c/p\u003e\u003cp\u003e• 核心模型:retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid。\u003c/p\u003e\u003cp\u003e• 表型:cell death, apoptosis, degeneration, survival loss, stress, necrosis。\u003c/p\u003e\u003cp\u003e• 相关细胞:photoreceptor, cone, rod, retinal ganglion cell, Müller glia。\u003c/p\u003e\u003cp\u003e• 潜在机制:oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis。\u003c/p\u003e\u003cp\u003e• 证据目标:优先找直接在人源或动物源 retinal organoid 中观察到细胞死亡/凋亡/退化的原始研究;再找间接机制文献。\u003c/p\u003e\u003cp\u003e1.2 关键词拆分原则(示例)\u003c/p\u003e\u003cp\u003e不要只写一个检索式。每个概念至少准备三类词。\u003c/p\u003e\u003cp\u003e第一类:精确词。\u003c/p\u003e\u003cp\u003e• retinal organoid\u003c/p\u003e\u003cp\u003e• retina organoid\u003c/p\u003e\u003cp\u003e• human retinal organoid\u003c/p\u003e\u003cp\u003e• hPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e• iPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e第二类:同义词和上位词。\u003c/p\u003e\u003cp\u003e• optic cup organoid\u003c/p\u003e\u003cp\u003e• 3D retinal culture\u003c/p\u003e\u003cp\u003e• stem cell-derived retina\u003c/p\u003e\u003cp\u003e• retinal differentiation\u003c/p\u003e\u003cp\u003e• retinal tissue model\u003c/p\u003e\u003cp\u003e第三类:机制和表型词。\u003c/p\u003e\u003cp\u003e• apoptosis\u003c/p\u003e\u003cp\u003e• cell death\u003c/p\u003e\u003cp\u003e• degeneration\u003c/p\u003e\u003cp\u003e• survival\u003c/p\u003e\u003cp\u003e• stress\u003c/p\u003e\u003cp\u003e• oxidative stress\u003c/p\u003e\u003cp\u003e• ER stress\u003c/p\u003e\u003cp\u003e• mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e• hypoxia\u003c/p\u003e\u003cp\u003e• necroptosis\u003c/p\u003e\u003cp\u003e• ferroptosis\u003c/p\u003e\u003cp\u003e如果用户限定细胞类型,加入:\u003c/p\u003e\u003cp\u003e• photoreceptor\u003c/p\u003e\u003cp\u003e• cone\u003c/p\u003e\u003cp\u003e• rod\u003c/p\u003e\u003cp\u003e• retinal ganglion cell\u003c/p\u003e\u003cp\u003e• Müller glia\u003c/p\u003e\u003cp\u003e• bipolar cell\u003c/p\u003e\u003cp\u003e• amacrine cell\u003c/p\u003e\u003cp\u003e如果用户限定物种或来源,加入:\u003c/p\u003e\u003cp\u003e• human\u003c/p\u003e\u003cp\u003e• mouse\u003c/p\u003e\u003cp\u003e• rat\u003c/p\u003e\u003cp\u003e• zebrafish\u003c/p\u003e\u003cp\u003e• hESC\u003c/p\u003e\u003cp\u003e• iPSC\u003c/p\u003e\u003cp\u003e• pluripotent stem cell\u003c/p\u003e\u003cp\u003e1.3 生成分层检索式\u003c/p\u003e\u003cp\u003e至少生成 3–6 组 query。每组 query 对应一个检索目的。\u003c/p\u003e\u003cp\u003e第一层:直接证据检索。\u003c/p\u003e\u003cp\u003e用于找目标模型 + 目标表型直接命中的文献。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot; OR \u0026quot;human retinal organoid\u0026quot;) AND (apoptosis OR \u0026quot;cell death\u0026quot; OR degeneration)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第二层:扩展模型检索。\u003c/p\u003e\u003cp\u003e用于捕捉作者没有使用 retinal organoid 精确词但实际相关的文献。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;optic cup organoid\u0026quot; OR \u0026quot;3D retinal culture\u0026quot; OR \u0026quot;stem cell-derived retina\u0026quot;) AND (survival OR apoptosis OR stress)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第三层:机制专项检索。\u003c/p\u003e\u003cp\u003e用于验证具体通路或机制。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (\u0026quot;oxidative stress\u0026quot; OR \u0026quot;ER stress\u0026quot; OR hypoxia OR mitochondria)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第四层:细胞类型专项检索。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (photoreceptor OR cone OR rod OR \u0026quot;retinal ganglion cell\u0026quot;) AND (death OR apoptosis OR degeneration)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第五层:疾病模型检索。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第六层:综述/背景检索。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (review OR protocol OR model)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e2b:T11e7,\u003cp\u003e這套流程的核心是:先用多query 在PubMed / NCBI E-utilities 做可複現初篩,再用PMID 去重和摘要證據分級;只有少量關鍵文獻進入PMC / BioC 全文複現;正文引用必須可點擊;文末必須列完整文獻資訊;IF 只能透過取信可存取權,不能將其保留使用保守結果\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e1. 使用者發起檢索後的預處理\u003c/p\u003e\u003cp\u003e1.1 先解析使用者問題\u003c/p\u003e\u003cp\u003e收到用戶問題後,先把自然語言問題拆成結構化要素。\u003c/p\u003e\u003cp\u003e必須識別:\u003c/p\u003e\u003cp\u003e • 研究對象:基因、蛋白、藥"])</script><script>self.__next_f.push([1,"物、通道、細胞類型、組織、疾病、模型。\u003c/p\u003e\u003cp\u003e • 生物系統:人、小鼠、大鼠、斑馬魚、類器官、視網膜、腦區、細胞係等。\u003c/p\u003e\u003cp\u003e • 關係類型:表現、調控、功能、機制、表型、死亡、存活、治療、毒性、發育、退化等。\u003c/p\u003e\u003cp\u003e • 證據需求:是否需要直接證據、機制證據、全文證據、圖表、劑量參數、實驗方法。\u003c/p\u003e\u003cp\u003e • 時間範圍:不限時間、近5 年、近1 年、最新進展、經典文獻。\u003c/p\u003e\u003cp\u003e • 產出類型:簡答、代表文獻、綜述式總結、實驗設計建議、證據表、機製圖譜。\u003c/p\u003e\u003cp\u003e範例:\u003c/p\u003e\u003cp\u003e用戶問題:\u003c/p\u003e\u003cp\u003e “幫我找視網膜類器官死亡相關文獻。”\u003c/p\u003e\u003cp\u003e結構化拆解(例):\u003c/p\u003e\u003cp\u003e • 核心模式:retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid。\u003c/p\u003e\u003cp\u003e • 表型:cell death, apoptosis, degeneration, survival loss, stress, necrosis。\u003c/p\u003e\u003cp\u003e • 相關細胞:photoreceptor, cone, rod, retinal ganglion cell, Müller glia。\u003c/p\u003e\u003cp\u003e • 潛在機制:oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis。\u003c/p\u003e\u003cp\u003e • 證據目標:優先找直接在人源或動物源retinal organoid 中觀察到細胞死亡/凋亡/退化的原始研究;再找間接機製文獻。\u003c/p\u003e\u003cp\u003e 1.2 關鍵字拆分原則(範例)\u003c/p\u003e\u003cp\u003e不要只寫一個檢索式。每個概念至少準備三類詞。\u003c/p\u003e\u003cp\u003e第一類:精確詞。\u003c/p\u003e\u003cp\u003e • retinal organoid\u003c/p\u003e\u003cp\u003e • retina organoid\u003c/p\u003e\u003cp\u003e • human retinal organoid\u003c/p\u003e\u003cp\u003e • hPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e • iPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e第二類:同義詞和上位詞。\u003c/p\u003e\u003cp\u003e • optic cup organoid\u003c/p\u003e\u003cp\u003e • 3D retinal culture\u003c/p\u003e\u003cp\u003e • stem cell-derived retina\u003c/p\u003e\u003cp\u003e • retinal differentiation\u003c/p\u003e\u003cp\u003e • retinal tissue model\u003c/p\u003e\u003cp\u003e第三類:機制和表型詞。\u003c/p\u003e\u003cp\u003e • apoptosis\u003c/p\u003e\u003cp\u003e • cell death\u003c/p\u003e\u003cp\u003e • degeneration\u003c/p\u003e\u003cp\u003e • survival\u003c/p\u003e\u003cp\u003e • stress\u003c/p\u003e\u003cp\u003e • oxidative stress\u003c/p\u003e\u003cp\u003e • ER stress\u003c/p\u003e\u003cp\u003e • mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e • hypoxia\u003c/p\u003e\u003cp\u003e • necroptosis\u003c/p\u003e\u003cp\u003e • ferroptosis\u003c/p\u003e\u003cp\u003e如果使用者限定細胞類型,加入:\u003c/p\u003e\u003cp\u003e • photoreceptor\u003c/p\u003e\u003cp\u003e • cone\u003c/p\u003e\u003cp\u003e • rod\u003c/p\u003e\u003cp\u003e • retinal ganglion cell\u003c/p\u003e\u003cp\u003e • Müller glia\u003c/p\u003e\u003cp\u003e • bipolar cell\u003c/p\u003e\u003cp\u003e • amacrine cell\u003c/p\u003e\u003cp\u003e如果使用者限定物種或來源,加入:\u003c/p\u003e\u003cp\u003e • human\u003c/p\u003e\u003cp\u003e • mouse\u003c/p\u003e\u003cp\u003e • rat\u003c/p\u003e\u003cp\u003e • zebrafish\u003c/p\u003e\u003cp\u003e • hESC\u003c/p\u003e\u003cp\u003e • iPSC\u003c/p\u003e\u003cp\u003e • pluripotent stem cell\u003c/p\u003e\u003cp\u003e 1.3 產生分層檢索式\u003c/p\u003e\u003cp\u003e至少生成3–6 組query。每組query 對應一個檢索目的。\u003c/p\u003e\u003cp\u003e第一層:直接證據檢索。\u003c/p\u003e\u003cp\u003e用於找出目標模型+ 目標表型直接命中的文獻。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\" OR \"human retinal organoid\") AND (apoptosis OR \"cell death\" OR degeneration)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第二層:擴充模型檢索。\u003c/p\u003e\u003cp\u003e用於捕捉作者沒有使用retinal organoid 精確詞但實際相關的文獻。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"optic cup organoid\" OR \"3D retinal culture\" OR \"stem cell-derived retina\") AND (survival OR apoptosis OR stress)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第三層:機制專項檢索。\u003c/p\u003e\u003cp\u003e用於驗證具體通路或機制。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\") AND (\"oxidative stress\" OR \"ER stress\" OR hypoxia OR mitochondria)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第四層:細胞類型專項檢索。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\") AND (photoreceptor OR cone OR rod OR \"retinal ganglion cell\") AND (death OR apoptosis OR degeneration)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第五層:疾病模型檢索。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\") AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第六層:綜述/背景檢索。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\") AND (review OR protocol OR model)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e2c:T10ea,2. 使用什么方法、在什么网站检索\n2.1 首选:PubMed / NCBI "])</script><script>self.__next_f.push([1,"E-utilities\nPubMed 是生物医学文献检索首选。不要默认抓 PubMed 网页。应使用 NCBI E-utilities API。\n2.1.1 ESearch:用 query 获取 PMID\n接口:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi\n```\n参数:\n```text\ndb=pubmed\nterm=\u003c检索式\u003e\nretmode=json\nretmax=20\nsort=relevance\n```\n也可按时间排序:\n```text\nsort=pub+date\n```\n示例:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed\u0026term=(%22retinal%20organoid%22%20OR%20%22retina%20organoid%22)%20AND%20(apoptosis%20OR%20%22cell%20death%22)\u0026retmode=json\u0026retmax=20\u0026sort=relevance\n```\n返回中读取:\n```text\nesearchresult.idlist\n```\n这就是 PMID 列表。\n2.1.2 ESummary:获取文献 metadata\n接口:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi\n```\n参数:\n```text\ndb=pubmed\nid=PMID1,PMID2,PMID3\nretmode=json\n```\n提取字段:\n• PMID\n• title\n• fulljournalname\n• source / journal abbreviation\n• pubdate\n• authors\n• articleids 中的 DOI、PMCID\n• volume、issue、pages\n2.1.3 EFetch:获取摘要和 XML 细节\n接口:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi\n```\n参数:\n```text\ndb=pubmed\nid=PMID1,PMID2\nretmode=xml\nrettype=abstract\n```\n提取字段:\n• ArticleTitle\n• AbstractText\n• Journal Title\n• ISOAbbreviation\n• ISSN / eISSN\n• PubDate\n• DOI\n• PMCID\n• MeSH terms\n2.1.4 批量检索策略\n推荐流程:\n1. 对每个 query 调用 ESearch。\n2. 每个 query 取前 5–20 篇。\n3. 合并所有 PMID。\n4. 按 PMID 去重。\n5. 用 ESummary / EFetch 批量获取 metadata 和 abstract。\n6. 初筛阶段只读 metadata + abstract,不要一开始抓全文。\n────────────────\n2.2 第二阶段:PMC / BioC 全文复核\n只有以下情况才进入全文:\n• 用户要求精读全文。\n• 摘要不足以判断机制。\n• 需要图表、实验方法、浓度、剂量、IC50、EC50、Kd、Ki。\n• 已筛出少量关键 PMID,需要逐篇机制复核。\n2.2.1 PMID 转 PMCID\n接口:\n```text\nhttps://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=\u003cPMID\u003e\u0026format=json\n```\n如果返回 PMCID,说明可能有 PMC 开放全文。\n2.2.2 优先 BioC JSON\n接口:\n```text\nhttps://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json/\u003cPMCID\u003e/unicode\n```\n优点:结构化程度高,适合抽取正文段落。\n2.2.3 BioC 不可用时尝试 PMC XML\n接口:\n```text\nhttps://www.ncbi.nlm.nih.gov/pmc/articles/\u003cPMCID\u003e/?report=xml\n```\n抽取正文时跳过:\n• references\n• bibliography\n• acknowledgements\n• author contributions\n• competing interests\n全文复核必须设置停止判据:\n• 每篇文献只扫描一次。\n• 默认只抽取与问题相关的段落。\n• 如果未命中目标字段,标注“未见直接证据”。\n• 不要无限换关键词重复抓取。\n────────────────\n2.3 bioRxiv / medRxiv\n用于补充最新预印本。\n可以使用官方 API:\n```text\nhttps://api.biorxiv.org/details/biorxiv/YYYY-MM-DD/YYYY-MM-DD\nhttps://api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD\n```\n也可用普通搜索作为补充:\n```text\nsite:biorxiv.org retinal organoid apoptosis\nsite:medrxiv.org retina organoid degeneration\n```\n预印本必须标注:\n```text\n预印本,未经同行评议。\n```\n────────────────\n2.4 Crossref / OpenAlex / Unpaywall\n用于补全 DOI、开放全文地址、出版信息。\nCrossref:\n```text\nhttps://api.crossref.org/works?query.title=\u003ctitle\u003e\n```\nOpenAlex:\n```text\nhttps://api.openalex.org/works?search=\u003ctitle or topic\u003e\n```\nUnpaywall:\n```text\nhttps://api.unpaywall.org/v2/\u003cDOI\u003e?email=\u003cyour_email\u003e\n```\n用途:\n• DOI 补全。\n• OA PDF 链接查找。\n• 期刊名核验。\n• 出版年份核验。\n────────────────\n2.5 出版商页面\n只有在 API 信息不足时才访问出版商页面。\n访问规则:\n• 每个出版商 URL 只尝试一次。\n• 遇到验证码、登录墙、Cloudflare、Access Denied、机构权限"])</script><script>self.__next_f.push([1,"墙,立即停止。\n• 不要反复刷新、换同站路径、循环等待。\n• 改用 PubMed、PMC、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。2d:T14e9,\u003cp\u003e2. 使用什么方法、在什么网站检索\u003c/p\u003e\u003cp\u003e2.1 首选:PubMed / NCBI E-utilities\u003c/p\u003e\u003cp\u003ePubMed 是生物医学文献检索首选。不要默认抓 PubMed 网页。应使用 NCBI E-utilities API。\u003c/p\u003e\u003cp\u003e2.1.1 ESearch:用 query 获取 PMID\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e参数:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003edb=pubmed\u003c/p\u003e\u003cp\u003eterm=\u0026lt;检索式\u0026gt;\u003c/p\u003e\u003cp\u003eretmode=json\u003c/p\u003e\u003cp\u003eretmax=20\u003c/p\u003e\u003cp\u003esort=relevance\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e也可按时间排序:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003esort=pub+date\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e示例:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed\u0026amp;term=(%22retinal%20organoid%22%20OR%20%22retina%20organoid%22)%20AND%20(apoptosis%20OR%20%22cell%20death%22)\u0026amp;retmode=json\u0026amp;retmax=20\u0026amp;sort=relevance\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e返回中读取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eesearchresult.idlist\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e这就是 PMID 列表。\u003c/p\u003e\u003cp\u003e2.1.2 ESummary:获取文献 metadata\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e参数:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003edb=pubmed\u003c/p\u003e\u003cp\u003eid=PMID1,PMID2,PMID3\u003c/p\u003e\u003cp\u003eretmode=json\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e提取字段:\u003c/p\u003e\u003cp\u003e• PMID\u003c/p\u003e\u003cp\u003e• title\u003c/p\u003e\u003cp\u003e• fulljournalname\u003c/p\u003e\u003cp\u003e• source / journal abbreviation\u003c/p\u003e\u003cp\u003e• pubdate\u003c/p\u003e\u003cp\u003e• authors\u003c/p\u003e\u003cp\u003e• articleids 中的 DOI、PMCID\u003c/p\u003e\u003cp\u003e• volume、issue、pages\u003c/p\u003e\u003cp\u003e2.1.3 EFetch:获取摘要和 XML 细节\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e参数:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003edb=pubmed\u003c/p\u003e\u003cp\u003eid=PMID1,PMID2\u003c/p\u003e\u003cp\u003eretmode=xml\u003c/p\u003e\u003cp\u003erettype=abstract\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e提取字段:\u003c/p\u003e\u003cp\u003e• ArticleTitle\u003c/p\u003e\u003cp\u003e• AbstractText\u003c/p\u003e\u003cp\u003e• Journal Title\u003c/p\u003e\u003cp\u003e• ISOAbbreviation\u003c/p\u003e\u003cp\u003e• ISSN / eISSN\u003c/p\u003e\u003cp\u003e• PubDate\u003c/p\u003e\u003cp\u003e• DOI\u003c/p\u003e\u003cp\u003e• PMCID\u003c/p\u003e\u003cp\u003e• MeSH terms\u003c/p\u003e\u003cp\u003e2.1.4 批量检索策略\u003c/p\u003e\u003cp\u003e推荐流程:\u003c/p\u003e\u003cp\u003e1. 对每个 query 调用 ESearch。\u003c/p\u003e\u003cp\u003e2. 每个 query 取前 5–20 篇。\u003c/p\u003e\u003cp\u003e3. 合并所有 PMID。\u003c/p\u003e\u003cp\u003e4. 按 PMID 去重。\u003c/p\u003e\u003cp\u003e5. 用 ESummary / EFetch 批量获取 metadata 和 abstract。\u003c/p\u003e\u003cp\u003e6. 初筛阶段只读 metadata + abstract,不要一开始抓全文。\u003c/p\u003e\u003cp\u003e────────────────\u003c/p\u003e\u003cp\u003e2.2 第二阶段:PMC / BioC 全文复核\u003c/p\u003e\u003cp\u003e只有以下情况才进入全文:\u003c/p\u003e\u003cp\u003e• 用户要求精读全文。\u003c/p\u003e\u003cp\u003e• 摘要不足以判断机制。\u003c/p\u003e\u003cp\u003e• 需要图表、实验方法、浓度、剂量、IC50、EC50、Kd、Ki。\u003c/p\u003e\u003cp\u003e• 已筛出少量关键 PMID,需要逐篇机制复核。\u003c/p\u003e\u003cp\u003e2.2.1 PMID 转 PMCID\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=\u0026lt;PMID\u0026gt;\u0026amp;format=json\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果返回 PMCID,说明可能有 PMC 开放全文。\u003c/p\u003e\u003cp\u003e2.2.2 优先 BioC JSON\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json/\u0026lt;PMCID\u0026gt;/unicode\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e优点:结构化程度高,适合抽取正文段落。\u003c/p\u003e\u003cp\u003e2.2.3 BioC 不可用时尝试 PMC XML\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://www.ncbi.nlm.nih.gov/pmc/articles/\u0026lt;PMCID\u0026gt;/?report=xml\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e抽取正文时跳过:\u003c/p\u003e\u003cp\u003e• references\u003c/p\u003e\u003cp\u003e• bibliography\u003c/p\u003e\u003cp\u003e• acknowledgements\u003c/p\u003e\u003cp\u003e• author contributions\u003c/p\u003e\u003cp\u003e• competing interests\u003c/p\u003e\u003cp\u003e全文复核必须设置停止判据:\u003c/p\u003e\u003cp\u003e• 每篇文献只扫描一次。\u003c/p\u003e\u003cp\u003e• 默认只抽取与问题相关的段落。\u003c/p\u003e\u003cp\u003e• 如果未命中目标字段,标注“未见直接证据”。\u003c/p\u003e\u003cp\u003e• 不要无限换关键词重复抓取。\u003c/p\u003e\u003cp\u003e────────────────\u003c/p\u003e\u003cp\u003e2.3 bioRxiv / medRxiv\u003c/p\u003e\u003cp\u003e用于补充最新预印本。\u003c/p\u003e\u003cp\u003e可以使用官方 API:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.biorxiv.org/details/biorxiv/YYYY-MM-DD/YYYY-MM-DD\u003c/p\u003e\u003cp\u003ehttps:"])</script><script>self.__next_f.push([1,"//api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e也可用普通搜索作为补充:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003esite:biorxiv.org retinal organoid apoptosis\u003c/p\u003e\u003cp\u003esite:medrxiv.org retina organoid degeneration\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e预印本必须标注:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e预印本,未经同行评议。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e────────────────\u003c/p\u003e\u003cp\u003e2.4 Crossref / OpenAlex / Unpaywall\u003c/p\u003e\u003cp\u003e用于补全 DOI、开放全文地址、出版信息。\u003c/p\u003e\u003cp\u003eCrossref:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.crossref.org/works?query.title=\u0026lt;title\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003eOpenAlex:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.openalex.org/works?search=\u0026lt;title or topic\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003eUnpaywall:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.unpaywall.org/v2/\u0026lt;DOI\u0026gt;?email=\u0026lt;your_email\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e用途:\u003c/p\u003e\u003cp\u003e• DOI 补全。\u003c/p\u003e\u003cp\u003e• OA PDF 链接查找。\u003c/p\u003e\u003cp\u003e• 期刊名核验。\u003c/p\u003e\u003cp\u003e• 出版年份核验。\u003c/p\u003e\u003cp\u003e────────────────\u003c/p\u003e\u003cp\u003e2.5 出版商页面\u003c/p\u003e\u003cp\u003e只有在 API 信息不足时才访问出版商页面。\u003c/p\u003e\u003cp\u003e访问规则:\u003c/p\u003e\u003cp\u003e• 每个出版商 URL 只尝试一次。\u003c/p\u003e\u003cp\u003e• 遇到验证码、登录墙、Cloudflare、Access Denied、机构权限墙,立即停止。\u003c/p\u003e\u003cp\u003e• 不要反复刷新、换同站路径、循环等待。\u003c/p\u003e\u003cp\u003e• 改用 PubMed、PMC、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。\u003c/p\u003e2e:T150e,\u003cp\u003e2. 使用什麼方法、在什麼網站檢索\u003c/p\u003e\u003cp\u003e2.1 首選:PubMed / NCBI E-utilities\u003c/p\u003e\u003cp\u003e PubMed 是生物醫學文獻檢索首選。不要預設抓PubMed 網頁。應使用NCBI E-utilities API。\u003c/p\u003e\u003cp\u003e 2.1.1 ESearch:用query 取得PMID\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e參數:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e db=pubmed\u003c/p\u003e\u003cp\u003e term=\u003c檢索式\u003e\u003c/p\u003e\u003cp\u003e retmode=json\u003c/p\u003e\u003cp\u003e retmax=20\u003c/p\u003e\u003cp\u003e sort=relevance\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e也可依時間排序:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e sort=pub+date\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e範例:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed\u0026term=(%22retinal%20organoid%22%20OR%20 %22retina%20organoid%22)%20AND%20(apoptosis%20OR%20%22cell%20death%22)\u0026retmode=json\u0026retmax=20\u0026sort=relevance\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e返回中讀取:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e esearchresult.idlist\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e這就是PMID 清單。\u003c/p\u003e\u003cp\u003e 2.1.2 ESummary:取得文獻metadata\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e參數:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e db=pubmed\u003c/p\u003e\u003cp\u003e id=PMID1,PMID2,PMID3\u003c/p\u003e\u003cp\u003e retmode=json\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e提取字段:\u003c/p\u003e\u003cp\u003e • PMID\u003c/p\u003e\u003cp\u003e • title\u003c/p\u003e\u003cp\u003e • fulljournalname\u003c/p\u003e\u003cp\u003e • source / journal abbreviation\u003c/p\u003e\u003cp\u003e • pubdate\u003c/p\u003e\u003cp\u003e • authors\u003c/p\u003e\u003cp\u003e • articleids 中的DOI、PMCID\u003c/p\u003e\u003cp\u003e • volume、issue、pages\u003c/p\u003e\u003cp\u003e 2.1.3 EFetch:取得摘要和XML 細節\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e參數:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e db=pubmed\u003c/p\u003e\u003cp\u003e id=PMID1,PMID2\u003c/p\u003e\u003cp\u003e retmode=xml\u003c/p\u003e\u003cp\u003e rettype=abstract\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e提取字段:\u003c/p\u003e\u003cp\u003e • ArticleTitle\u003c/p\u003e\u003cp\u003e • AbstractText\u003c/p\u003e\u003cp\u003e • Journal Title\u003c/p\u003e\u003cp\u003e • ISOAbbreviation\u003c/p\u003e\u003cp\u003e • ISSN / eISSN\u003c/p\u003e\u003cp\u003e • PubDate\u003c/p\u003e\u003cp\u003e • DOI\u003c/p\u003e\u003cp\u003e • PMCID\u003c/p\u003e\u003cp\u003e • MeSH terms\u003c/p\u003e\u003cp\u003e 2.1.4 批次檢索策略\u003c/p\u003e\u003cp\u003e推薦流程:\u003c/p\u003e\u003cp\u003e 1. 對每個query 呼叫ESearch。\u003c/p\u003e\u003cp\u003e 2. 每個query 取前5–20 篇。\u003c/p\u003e\u003cp\u003e 3. 合併所有PMID。\u003c/p\u003e\u003cp\u003e 4. 按PMID 去重。\u003c/p\u003e\u003cp\u003e 5. 用ESummary / EFetch 批次取得metadata 和abstract。\u003c/p\u003e\u003cp\u003e 6. 初篩階段只讀metadata + abstract,不要一開始抓全文。\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.2 第二階段:PMC / BioC 全文複核\u003c/p\u003e\u003cp\u003e只有以下情況才會進入全文:\u003c/p\u003e\u003cp\u003e • 使用者要求精讀全文。\u003c/p\u003e\u003cp\u003e • 摘要不足以判斷機制。\u003c/p\u003e\u003cp\u003e • 需要圖表、實驗方法、濃度、劑量、IC50、EC50、Kd、Ki。\u003c/p\u003e\u003cp\u003e • 已篩選出少量關鍵PMID,需要逐"])</script><script>self.__next_f.push([1,"篇機制複核。\u003c/p\u003e\u003cp\u003e 2.2.1 PMID 轉PMCID\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=\u003cPMID\u003e\u0026format=json\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e如果傳回PMCID,說明可能有PMC 開放全文。\u003c/p\u003e\u003cp\u003e 2.2.2 優先BioC JSON\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json/\u003cPMCID\u003e/unicode\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e優點:結構化程度高,適合抽取正文段落。\u003c/p\u003e\u003cp\u003e 2.2.3 BioC 不可用時嘗試PMC XML\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://www.ncbi.nlm.nih.gov/pmc/articles/\u003cPMCID\u003e/?report=xml\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e抽取正文時跳過:\u003c/p\u003e\u003cp\u003e • references\u003c/p\u003e\u003cp\u003e • bibliography\u003c/p\u003e\u003cp\u003e • acknowledgements\u003c/p\u003e\u003cp\u003e • author contributions\u003c/p\u003e\u003cp\u003e • competing interests\u003c/p\u003e\u003cp\u003e全文複審必須設定停止判據:\u003c/p\u003e\u003cp\u003e • 每篇文獻只掃描一次。\u003c/p\u003e\u003cp\u003e • 預設只抽取與問題相關的段落。\u003c/p\u003e\u003cp\u003e • 若未命中目標字段,標註「未見直接證據」。\u003c/p\u003e\u003cp\u003e • 不要無限換關鍵字重複抓取。\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.3 bioRxiv / medRxiv\u003c/p\u003e\u003cp\u003e用於補充最新預印本。\u003c/p\u003e\u003cp\u003e可以使用官方API:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.biorxiv.org/details/biorxiv/YYYY-MM-DD/YYYY-MM-DD\u003c/p\u003e\u003cp\u003e https://api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e也可用普通搜尋作為補充:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e site:biorxiv.org retinal organoid apoptosis\u003c/p\u003e\u003cp\u003e site:medrxiv.org retina organoid degeneration\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e預印本必須標註:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e預印本,未經同儕評審。\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.4 Crossref / OpenAlex / Unpaywall\u003c/p\u003e\u003cp\u003e用於補全DOI、開放全文地址、出版資訊。\u003c/p\u003e\u003cp\u003e Crossref:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.crossref.org/works?query.title=\u003ctitle\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e OpenAlex:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.openalex.org/works?search=\u003ctitle or topic\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Unpaywall:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.unpaywall.org/v2/\u003cDOI\u003e?email=\u003cyour_email\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e用途:\u003c/p\u003e\u003cp\u003e • DOI 補全。\u003c/p\u003e\u003cp\u003e • OA PDF 連結查找。\u003c/p\u003e\u003cp\u003e • 期刊名核驗。\u003c/p\u003e\u003cp\u003e • 出版年份核驗。\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.5 出版商頁面\u003c/p\u003e\u003cp\u003e只有在API 資訊不足時才造訪出版商頁面。\u003c/p\u003e\u003cp\u003e訪問規則:\u003c/p\u003e\u003cp\u003e • 每個出版商URL 只嘗試一次。\u003c/p\u003e\u003cp\u003e • 遇到驗證碼、登入牆、Cloudflare、Access Denied、機構權限牆,立即停止。\u003c/p\u003e\u003cp\u003e • 不要重複刷新、換同站路徑、循環等待。\u003c/p\u003e\u003cp\u003e • 改用PubMed、PMC、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。\u003c/p\u003e2f:T639,\u003cp\u003e3. 檢索後如何整理訊息\u003c/p\u003e\u003cp\u003e3.1 建立統一記錄結構\u003c/p\u003e\u003cp\u003e每篇文獻整理成統一record。\u003c/p\u003e\u003cp\u003e字段:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e pmid\u003c/p\u003e\u003cp\u003e doi\u003c/p\u003e\u003cp\u003e pmcid\u003c/p\u003e\u003cp\u003e title\u003c/p\u003e\u003cp\u003e authors\u003c/p\u003e\u003cp\u003e journal\u003c/p\u003e\u003cp\u003e journal_abbrev\u003c/p\u003e\u003cp\u003e issn\u003c/p\u003e\u003cp\u003e eissn\u003c/p\u003e\u003cp\u003e year\u003c/p\u003e\u003cp\u003e abstract\u003c/p\u003e\u003cp\u003e query_source\u003c/p\u003e\u003cp\u003e evidence_level\u003c/p\u003e\u003cp\u003e evidence_tags\u003c/p\u003e\u003cp\u003e paper_type\u003c/p\u003e\u003cp\u003e url\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 3.2 去重\u003c/p\u003e\u003cp\u003e優先:\u003c/p\u003e\u003cp\u003e 1. PMID 去重。\u003c/p\u003e\u003cp\u003e 2. 沒有PMID 時用DOI 去重。\u003c/p\u003e\u003cp\u003e 3. 沒有DOI 時用lower(title) + year + first_author 去重。\u003c/p\u003e\u003cp\u003e保留第一次命中的query_source,同時記錄該文獻被哪些query 命中。\u003c/p\u003e\u003cp\u003e 3.3 證據分級\u003c/p\u003e\u003cp\u003e必須區分:\u003c/p\u003e\u003cp\u003e直接證據:\u003c/p\u003e\u003cp\u003e目標物種、組織、細胞類型、模型、處理條件直接命中。\u003c/p\u003e\u003cp\u003e間接證據:\u003c/p\u003e\u003cp\u003e相鄰系統、相似模型、相近機制支持,但不是使用者問題的直接系統。\u003c/p\u003e\u003cp\u003e未見直接證據:\u003c/p\u003e\u003cp\u003e只能找到背景、推測、綜述或相鄰模型,沒有直接實驗結果。\u003c/p\u003e\u003cp\u003e 3.4 文獻類型標註\u003c/p\u003e\u003cp\u003e至少標註:\u003c/p\u003e\u003cp\u003e • original research\u003c/p\u003e\u003cp\u003e • review\u003c/p\u003e\u003cp\u003e • protocol\u003c/p\u003e\u003cp\u003e • preprint\u003c/p\u003e\u003cp\u003e • dataset/resource\u003c/p\u003e\u003cp\u003e • clinical study\u003c/p\u003e\u003cp\u003e •method paper\u003c/p\u003e\u003cp\u003e 3.5 排序規則\u003c/p\u003e\u003cp\u003e推薦排序:\u003c/p\u003e\u003cp\u003e 1. 直接證據原始研究。\u003c/p\u003e\u003cp\u003e 2"])</script><script>self.__next_f.push([1,". 關鍵機制研究。\u003c/p\u003e\u003cp\u003e 3. 最新重要研究。\u003c/p\u003e\u003cp\u003e 4. 經典奠基研究。\u003c/p\u003e\u003cp\u003e 5. 高品質綜述。\u003c/p\u003e\u003cp\u003e 6. 間接證據。\u003c/p\u003e\u003cp\u003e不要只按IF 排序。 IF 是期刊層面指標,不等於單一文獻品質。\u003c/p\u003e30:T1831,6. IF 核查与标注\n6.1 先说明 IF 核查的现实限制\n正常情况下,官方 Journal Impact Factor 来自 Clarivate Journal Citation Reports(JCR)。但任意外部 Agent 通常没有 Clarivate/JCR 账号,也没有本地 JCR 表,所以不要通过这个路径核查。\n```\n6.2 IF skill 的实际方法\n主要路线:\n1. 如果输入是 PMID,先用 NCBI E-utilities 获取 PubMed metadata。\n- 获取 FullJournalName。 - 获取 Source / ISO abbreviation。 - 获取 ISSN / eISSN。 - 获取标题、年份、DOI 等辅助字段。\n2. 用公开的 iikx / 爱科学移动端 JSON 接口查询期刊。\n搜索接口:\n```text\nhttps://m.iikx.com/api/restfull/?m=sci\u0026c=index\u0026a=info\u0026keyword=\u003cjournal_query\u003e\n```\n详情接口:\n```text\nhttps://m.iikx.com/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\n```\n3. 对搜索结果做保守匹配。\n- 优先 exact normalized journal title match。 - 其次 exact abbreviation match。 - 对短词和宽泛词非常谨慎。 - 不接受明显 substring 误配,例如 Nature 被误配成 Nature Reviews 系列。 - 如果匹配不稳,返回 ambiguous / not_found,而不是猜。\n4. 如果 PubMed 给的是缩写,尝试用 NLM Catalog 扩展为全称或 alternate title。\nNLM Catalog 搜索接口仍然是 NCBI E-utilities:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=\u003cabbr\u003e[Title Abbreviation]\u0026retmode=xml\u0026retmax=1\n```\n然后用 ESummary 取 Title / TitleAlternate。\n5. 从 iikx detail 结果中读取:\n- impact factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分区,如果有。 - source URL。 - match confidence。\n6. 标注时不把 IF 年份写进正文紧凑标注。\n最终标注只写:\n```text\n*{IF=X,Qn}*\n```\n如果失败:\n```text\n*{IF=待核验}*\n```\n或:\n```text\n*{IF=未检出}*\n```\n6.3 具体步骤\n对每篇文献执行以下流程。\n第一步:准备期刊查询名。\n优先从 PubMed metadata 取:\n```text\nFullJournalName\nISOAbbreviation / Source\nISSN\neISSN\n```\n如果只有 DOI,则先用 Crossref 或 OpenAlex 取期刊名。\nCrossref:\n```text\nhttps://api.crossref.org/works/\u003cDOI\u003e\n```\nOpenAlex:\n```text\nhttps://api.openalex.org/works/https://doi.org/\u003cDOI\u003e\n```\n第二步:规范化期刊名。\n规范化规则:\n• 全部小写。\n• HTML unescape。\n• 将 \u0026 替换为 and。\n• 去除标点。\n• 多个空格合并。\n• 比较时可同时使用 compact 形式,即去除所有空格。\n示例伪代码:\n```python\nimport re, html\n \ndef norm(s):\n s = html.unescape(s or '').lower()\n s = re.sub(r'\u0026', ' and ', s)\n s = re.sub(r'[^a-z0-9]+', ' ', s)\n return re.sub(r'\\s+', ' ', s).strip()\n \ndef compact(s):\n return norm(s).replace(' ', '')\n```\n第三步:查询 iikx 搜索接口。\n```text\nhttps://m.iikx.com/api/restfull/?m=sci\u0026c=index\u0026a=info\u0026keyword=\u003cjournal_query\u003e\n```\n建议设置 User-Agent,例如:\n```text\nMozilla/5.0\n```\n如果第一页没找到 exact match,可以有限翻页,例如最多 8 页。\n翻页参数通常为:\n```text\npage=2\npage=3\n```\n第四步:从搜索结果中选候选。\n候选字段通常包括:\n```text\nid\nclassid\ntitle\nsmalltitle\nIF 或 IF2024\nzky2020\nurl\n```\n匹配规则:\n• 如果 compact(query) == compact(candidate.title),接受。\n• 如果 norm(query) == norm(candidate.title),接受。\n• 如果 compact(query) == compact(candidate.smalltitle),接受。\n• 如果 norm(query) == norm(candidate.smalltitle),接受。\n• 如果只是 substring,不要直接接受,除非 query 足够长且无歧义。\n• 对 Nature、Science、Cell、Brain、Vision、Retina 等短词尤其谨慎。\n第五步:如果没有匹配,用 NLM Catalog 扩展缩写。\n例如 PubMed 里 Source 是:\n```text\nFree Radic Biol Med\n```\n可以查:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/en"])</script><script>self.__next_f.push([1,"trez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=Free%20Radic%20Biol%20Med%5BTitle%20Abbreviation%5D\u0026retmode=xml\u0026retmax=1\n```\n拿到 NLM Catalog ID 后,再用:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=nlmcatalog\u0026id=\u003cid\u003e\u0026retmode=xml\n```\n读取:\n```text\nTitle\nTitleAlternate\n```\n然后用这些全称再查 iikx。\n第六步:查 iikx 详情接口。\n如果搜索结果里有:\n```text\nid=\u003cid\u003e\nclassid=\u003cclassid\u003e\n```\n调用:\n```text\nhttps://m.iikx.com/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\n```\n从 detail 中读取:\n```text\nIF2024, IF2023, IF2022 ...\nIF\nzky2020 或其他 JCR quartile 字段\njcr22 / jcr12 或分区字段\nissn\neissn\ntitle\nsmalltitle\ncategory\n```\n第七步:选择最新 IF。\n在返回字段中查找所有形如:\n```text\nIF20xx\n```\n例如:\n```text\nIF2024\nIF2023\nIF2022\n```\n选年份最大的有效数字。\n如果没有 IF20xx,则尝试读取:\n```text\nIF\nif_value\n```\n如果没有有效值,则标为未检出。\n第八步:输出置信度和标注。\n如果 exact title / abbreviation 命中,并且 detail 返回有效 IF:\n```text\n*{IF=X,Qn}*\n```\n如果匹配不确定:\n```text\n*{IF=待核验}*\n```\n如果公开接口没有结果:\n```text\n*{IF=未检出}*\n```\n6.4 IF 标注格式\n固定格式:\n```text\n*{IF=X,Qn}*\n```\n示例:\n```markdown\nSmith J et al., **Neuron** (2020), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=15.0,Q1}*\n```\n注意:\n• IF 标注内部不写 JCR 年份。\n• 不写“2024 JCR IF”。\n• 不写“JCR 2024”。\n• 年份只保留在文献发表年份处。\n• 如果 IF 为 0.0、空值、来源不稳、匹配不稳,不展示数字。\n6.5 IF 核查失败时的标准处理\n不要猜。\n不要用期刊名印象补数字。\n不要用大模型记忆补 IF。\n失败时只允许三种状态:\n```text\n*{IF=待核验}*\n```\n用于:\n• 搜索结果模糊。\n• 有多个相似期刊。\n• 只找到缩写但无法确认全称。\n• 公开来源返回的 IF 可疑。\n```text\n*{IF=未检出}*\n```\n用于:\n• 公开接口没有结果。\n• 期刊不在 SCI / JCR 覆盖范围。\n• 新刊暂无 IF。\n```text\n*{IF=不可公开核验}*\n```\n用于:\n• 用户要求必须官方 JCR,但当前 Agent 没有 Clarivate/JCR 权限。31:T1e64,\u003cp\u003e6. IF 核查与标注\u003c/p\u003e\u003cp\u003e6.1 先说明 IF 核查的现实限制\u003c/p\u003e\u003cp\u003e正常情况下,官方 Journal Impact Factor 来自 Clarivate Journal Citation Reports(JCR)。但任意外部 Agent 通常没有 Clarivate/JCR 账号,也没有本地 JCR 表,所以不要通过这个路径核查。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e6.2 IF skill 的实际方法\u003c/p\u003e\u003cp\u003e主要路线:\u003c/p\u003e\u003cp\u003e1. 如果输入是 PMID,先用 NCBI E-utilities 获取 PubMed metadata。\u003c/p\u003e\u003cp\u003e- 获取 FullJournalName。 - 获取 Source / ISO abbreviation。 - 获取 ISSN / eISSN。 - 获取标题、年份、DOI 等辅助字段。\u003c/p\u003e\u003cp\u003e2. 用公开的 iikx / 爱科学移动端 JSON 接口查询期刊。\u003c/p\u003e\u003cp\u003e搜索接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci\u0026amp;c=index\u0026amp;a=info\u0026amp;keyword=\u0026lt;journal_query\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e详情接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci/index/detail\u0026amp;id=\u0026lt;id\u0026gt;\u0026amp;classid=\u0026lt;classid\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e3. 对搜索结果做保守匹配。\u003c/p\u003e\u003cp\u003e- 优先 exact normalized journal title match。 - 其次 exact abbreviation match。 - 对短词和宽泛词非常谨慎。 - 不接受明显 substring 误配,例如 Nature 被误配成 Nature Reviews 系列。 - 如果匹配不稳,返回 ambiguous / not_found,而不是猜。\u003c/p\u003e\u003cp\u003e4. 如果 PubMed 给的是缩写,尝试用 NLM Catalog 扩展为全称或 alternate title。\u003c/p\u003e\u003cp\u003eNLM Catalog 搜索接口仍然是 NCBI E-utilities:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026amp;term=\u0026lt;abbr\u0026gt;[Title Abbreviation]\u0026amp;retmode=xml\u0026amp;retmax=1\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e然后用 ESummary 取 Title / TitleAlternate。\u003c/p\u003e\u003cp\u003e5. 从 iikx detail 结果中读取:\u003c/p\u003e\u003cp\u003e- imp"])</script><script>self.__next_f.push([1,"act factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分区,如果有。 - source URL。 - match confidence。\u003c/p\u003e\u003cp\u003e6. 标注时不把 IF 年份写进正文紧凑标注。\u003c/p\u003e\u003cp\u003e最终标注只写:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果失败:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e或:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=未检出}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e6.3 具体步骤\u003c/p\u003e\u003cp\u003e对每篇文献执行以下流程。\u003c/p\u003e\u003cp\u003e第一步:准备期刊查询名。\u003c/p\u003e\u003cp\u003e优先从 PubMed metadata 取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eFullJournalName\u003c/p\u003e\u003cp\u003eISOAbbreviation / Source\u003c/p\u003e\u003cp\u003eISSN\u003c/p\u003e\u003cp\u003eeISSN\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果只有 DOI,则先用 Crossref 或 OpenAlex 取期刊名。\u003c/p\u003e\u003cp\u003eCrossref:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.crossref.org/works/\u0026lt;DOI\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003eOpenAlex:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.openalex.org/works/https://doi.org/\u0026lt;DOI\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第二步:规范化期刊名。\u003c/p\u003e\u003cp\u003e规范化规则:\u003c/p\u003e\u003cp\u003e• 全部小写。\u003c/p\u003e\u003cp\u003e• HTML unescape。\u003c/p\u003e\u003cp\u003e• 将 \u0026amp; 替换为 and。\u003c/p\u003e\u003cp\u003e• 去除标点。\u003c/p\u003e\u003cp\u003e• 多个空格合并。\u003c/p\u003e\u003cp\u003e• 比较时可同时使用 compact 形式,即去除所有空格。\u003c/p\u003e\u003cp\u003e示例伪代码:\u003c/p\u003e\u003cp\u003e```python\u003c/p\u003e\u003cp\u003eimport re, html\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003edef norm(s):\u003c/p\u003e\u003cp\u003e s = html.unescape(s or \u0026apos;\u0026apos;).lower()\u003c/p\u003e\u003cp\u003e s = re.sub(r\u0026apos;\u0026amp;\u0026apos;, \u0026apos; and \u0026apos;, s)\u003c/p\u003e\u003cp\u003e s = re.sub(r\u0026apos;[^a-z0-9]+\u0026apos;, \u0026apos; \u0026apos;, s)\u003c/p\u003e\u003cp\u003e return re.sub(r\u0026apos;\\s+\u0026apos;, \u0026apos; \u0026apos;, s).strip()\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003edef compact(s):\u003c/p\u003e\u003cp\u003e return norm(s).replace(\u0026apos; \u0026apos;, \u0026apos;\u0026apos;)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第三步:查询 iikx 搜索接口。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci\u0026amp;c=index\u0026amp;a=info\u0026amp;keyword=\u0026lt;journal_query\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e建议设置 User-Agent,例如:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eMozilla/5.0\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果第一页没找到 exact match,可以有限翻页,例如最多 8 页。\u003c/p\u003e\u003cp\u003e翻页参数通常为:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003epage=2\u003c/p\u003e\u003cp\u003epage=3\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第四步:从搜索结果中选候选。\u003c/p\u003e\u003cp\u003e候选字段通常包括:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eid\u003c/p\u003e\u003cp\u003eclassid\u003c/p\u003e\u003cp\u003etitle\u003c/p\u003e\u003cp\u003esmalltitle\u003c/p\u003e\u003cp\u003eIF 或 IF2024\u003c/p\u003e\u003cp\u003ezky2020\u003c/p\u003e\u003cp\u003eurl\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e匹配规则:\u003c/p\u003e\u003cp\u003e• 如果 compact(query) == compact(candidate.title),接受。\u003c/p\u003e\u003cp\u003e• 如果 norm(query) == norm(candidate.title),接受。\u003c/p\u003e\u003cp\u003e• 如果 compact(query) == compact(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e• 如果 norm(query) == norm(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e• 如果只是 substring,不要直接接受,除非 query 足够长且无歧义。\u003c/p\u003e\u003cp\u003e• 对 Nature、Science、Cell、Brain、Vision、Retina 等短词尤其谨慎。\u003c/p\u003e\u003cp\u003e第五步:如果没有匹配,用 NLM Catalog 扩展缩写。\u003c/p\u003e\u003cp\u003e例如 PubMed 里 Source 是:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eFree Radic Biol Med\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e可以查:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026amp;term=Free%20Radic%20Biol%20Med%5BTitle%20Abbreviation%5D\u0026amp;retmode=xml\u0026amp;retmax=1\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e拿到 NLM Catalog ID 后,再用:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=nlmcatalog\u0026amp;id=\u0026lt;id\u0026gt;\u0026amp;retmode=xml\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e读取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eTitle\u003c/p\u003e\u003cp\u003eTitleAlternate\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e然后用这些全称再查 iikx。\u003c/p\u003e\u003cp\u003e第六步:查 iikx 详情接口。\u003c/p\u003e\u003cp\u003e如果搜索结果里有:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eid=\u0026lt;id\u0026gt;\u003c/p\u003e\u003cp\u003eclassid=\u0026lt;classid\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e调用:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci/index/detail\u0026amp;id=\u0026lt;id\u0026gt;\u0026amp;classid=\u0026lt;classid\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e从 detail 中读取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eIF2024, IF2023, IF2022 ...\u003c/p\u003e\u003cp\u003eIF\u003c/p\u003e\u003cp\u003ezky2020 或其他 JCR quartile 字段\u003c/p\u003e\u003cp\u003ejcr22 / jcr12 或分区字段\u003c/p\u003e\u003cp\u003eissn\u003c/p\u003e\u003cp\u003eeissn\u003c/p\u003e\u003cp\u003etitle\u003c/p\u003e\u003cp\u003esmalltitle\u003c/p\u003e\u003cp\u003ecategory\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第七步:选择最新 IF。\u003c/p\u003e\u003cp\u003e在返回字段中查找所有形如:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eIF20xx\u003c/p\u003e\u003cp"])</script><script>self.__next_f.push([1,"\u003e```\u003c/p\u003e\u003cp\u003e例如:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eIF2024\u003c/p\u003e\u003cp\u003eIF2023\u003c/p\u003e\u003cp\u003eIF2022\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e选年份最大的有效数字。\u003c/p\u003e\u003cp\u003e如果没有 IF20xx,则尝试读取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eIF\u003c/p\u003e\u003cp\u003eif_value\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果没有有效值,则标为未检出。\u003c/p\u003e\u003cp\u003e第八步:输出置信度和标注。\u003c/p\u003e\u003cp\u003e如果 exact title / abbreviation 命中,并且 detail 返回有效 IF:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果匹配不确定:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果公开接口没有结果:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=未检出}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e6.4 IF 标注格式\u003c/p\u003e\u003cp\u003e固定格式:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e示例:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003eSmith J et al., **Neuron** (2020), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=15.0,Q1}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e注意:\u003c/p\u003e\u003cp\u003e• IF 标注内部不写 JCR 年份。\u003c/p\u003e\u003cp\u003e• 不写“2024 JCR IF”。\u003c/p\u003e\u003cp\u003e• 不写“JCR 2024”。\u003c/p\u003e\u003cp\u003e• 年份只保留在文献发表年份处。\u003c/p\u003e\u003cp\u003e• 如果 IF 为 0.0、空值、来源不稳、匹配不稳,不展示数字。\u003c/p\u003e\u003cp\u003e6.5 IF 核查失败时的标准处理\u003c/p\u003e\u003cp\u003e不要猜。\u003c/p\u003e\u003cp\u003e不要用期刊名印象补数字。\u003c/p\u003e\u003cp\u003e不要用大模型记忆补 IF。\u003c/p\u003e\u003cp\u003e失败时只允许三种状态:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e用于:\u003c/p\u003e\u003cp\u003e• 搜索结果模糊。\u003c/p\u003e\u003cp\u003e• 有多个相似期刊。\u003c/p\u003e\u003cp\u003e• 只找到缩写但无法确认全称。\u003c/p\u003e\u003cp\u003e• 公开来源返回的 IF 可疑。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=未检出}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e用于:\u003c/p\u003e\u003cp\u003e• 公开接口没有结果。\u003c/p\u003e\u003cp\u003e• 期刊不在 SCI / JCR 覆盖范围。\u003c/p\u003e\u003cp\u003e• 新刊暂无 IF。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=不可公开核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e用于:\u003c/p\u003e\u003cp\u003e• 用户要求必须官方 JCR,但当前 Agent 没有 Clarivate/JCR 权限。\u003c/p\u003e32:T1de9,\u003cp\u003e6. IF 核查與標註\u003c/p\u003e\u003cp\u003e6.1 先說明IF 核查的現實限制\u003c/p\u003e\u003cp\u003e正常情況下,官方Journal Impact Factor 來自Clarivate Journal Citation Reports(JCR)。但任意外部Agent 通常沒有Clarivate/JCR 帳號,也沒有本地JCR 表,所以不要經過這個路徑核查。\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.2 IF skill 的實際方法\u003c/p\u003e\u003cp\u003e主要路線:\u003c/p\u003e\u003cp\u003e 1. 如果輸入是PMID,先用NCBI E-utilities 取得PubMed metadata。\u003c/p\u003e\u003cp\u003e - 取得FullJournalName。 - 取得Source / ISO abbreviation。 - 取得ISSN / eISSN。 - 取得標題、年份、DOI 等輔助欄位。\u003c/p\u003e\u003cp\u003e 2. 用公開的iikx / 愛科學行動端JSON 介面查詢期刊。\u003c/p\u003e\u003cp\u003e搜尋介面:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://m.iikx.com/api/restfull/?m=sci\u0026c=index\u0026a=info\u0026keyword=\u003cjournal_query\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e詳情接口:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://m.iikx.com/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 3. 對搜尋結果做保守配對。\u003c/p\u003e\u003cp\u003e - 優先exact normalized journal title match。 - 其次exact abbreviation match。 - 對短詞和寬泛詞非常謹慎。 - 不接受明顯substring 誤配,例如Nature 被誤配成Nature Reviews 系列。 - 如果匹配不穩,返回ambiguous / 不_found,而不是猜。\u003c/p\u003e\u003cp\u003e 4. 如果PubMed 給的是縮寫,嘗試用NLM Catalog 擴展為全名或alternate title。\u003c/p\u003e\u003cp\u003e NLM Catalog 搜尋介面仍然是NCBI E-utilities:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=\u003cabbr\u003e[Title Abbreviation]\u0026retmode=xml\u0026retmax=1\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e然後用ESummary 取Title / TitleAlternate。\u003c/p\u003e\u003cp\u003e 5. 從iikx detail 結果中讀取:\u003c/p\u003e\u003cp\u003e - impact factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分區,如果有。 - source URL。 - match confidence。\u003c/p\u003e\u003cp\u003e 6. 標註時不把IF 年份寫進正文緊湊標註。\u003c/p\u003e\u003cp\u003e最終標註只寫:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e如果失敗:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=待核驗}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e或:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=未檢出}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.3 具體步驟\u003c/p\u003e\u003cp\u003e對每篇文獻執行"])</script><script>self.__next_f.push([1,"以下流程。\u003c/p\u003e\u003cp\u003e第一步:準備期刊查詢名稱。\u003c/p\u003e\u003cp\u003e優先從PubMed metadata 取:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e FullJournalName\u003c/p\u003e\u003cp\u003e ISOAbbreviation / Source\u003c/p\u003e\u003cp\u003e ISSN\u003c/p\u003e\u003cp\u003e eISSN\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e如果只有DOI,則先用Crossref 或OpenAlex 取期刊名。\u003c/p\u003e\u003cp\u003e Crossref:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.crossref.org/works/\u003cDOI\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e OpenAlex:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.openalex.org/works/https://doi.org/\u003cDOI\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第二步:規範化期刊名。\u003c/p\u003e\u003cp\u003e規範化規則:\u003c/p\u003e\u003cp\u003e • 全部小寫。\u003c/p\u003e\u003cp\u003e • HTML unescape。\u003c/p\u003e\u003cp\u003e • 將\u0026 替換為and。\u003c/p\u003e\u003cp\u003e • 去除標點。\u003c/p\u003e\u003cp\u003e • 多個空格合併。\u003c/p\u003e\u003cp\u003e • 比較時可同時使用compact 形式,即去除所有空格。\u003c/p\u003e\u003cp\u003e範例偽代碼:\u003c/p\u003e\u003cp\u003e 『`python\u003c/p\u003e\u003cp\u003e import re, html\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e def norm(s):\u003c/p\u003e\u003cp\u003e s = html.unescape(s or '').lower()\u003c/p\u003e\u003cp\u003e s = re.sub(r'\u0026', ' 和 ', s)\u003c/p\u003e\u003cp\u003e s = re.sub(r'[^a-z0-9]+', ' ', s)\u003c/p\u003e\u003cp\u003e return re.sub(r'\\s+', ' ', s).strip()\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e def compact(s):\u003c/p\u003e\u003cp\u003e return norm(s).replace(' ', '')\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第三步:查詢iikx 搜尋介面。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://m.iikx.com/api/restfull/?m=sci\u0026c=index\u0026a=info\u0026keyword=\u003cjournal_query\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e建議設定User-Agent,例如:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Mozilla/5.0\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e如果第一頁沒找到exact match,可以有限翻頁,例如最多8 頁。\u003c/p\u003e\u003cp\u003e翻頁參數通常為:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e page=2\u003c/p\u003e\u003cp\u003e page=3\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第四步:從搜尋結果中選候選。\u003c/p\u003e\u003cp\u003e候選欄位通常包括:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e id\u003c/p\u003e\u003cp\u003e classid\u003c/p\u003e\u003cp\u003e title\u003c/p\u003e\u003cp\u003e smalltitle\u003c/p\u003e\u003cp\u003e IF 或IF2024\u003c/p\u003e\u003cp\u003e zky2020\u003c/p\u003e\u003cp\u003e url\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e匹配規則:\u003c/p\u003e\u003cp\u003e • 如果compact(query) == compact(candidate.title),接受。\u003c/p\u003e\u003cp\u003e • 如果norm(query) == norm(candidate.title),接受。\u003c/p\u003e\u003cp\u003e • 如果compact(query) == compact(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e • 如果norm(query) == norm(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e • 如果只是substring,不要直接接受,除非query 夠長且無歧義。\u003c/p\u003e\u003cp\u003e • 對Nature、Science、Cell、Brain、Vision、Retina 等短字尤其謹慎。\u003c/p\u003e\u003cp\u003e第五步:如果沒有匹配,用NLM Catalog 擴充縮寫。\u003c/p\u003e\u003cp\u003e例如PubMed 裡Source 是:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Free Radic Biol Med\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e可以查:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=Free%20Radic%20Biol%20Med%5BTitle%20Abbreviation%5D\u0026retmode=xml\u0026retmax=1%5BTitle%20Abbreviation%5D\u0026retmode=xml\u0026retmax=1\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e拿到NLM Catalog ID 後,再用:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=nlmcatalog\u0026id=\u003cid\u003e\u0026retmode=xml\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e讀取:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Title\u003c/p\u003e\u003cp\u003e TitleAlternate\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e然後用這些全名再查iikx。\u003c/p\u003e\u003cp\u003e第六步:查iikx 詳情介面。\u003c/p\u003e\u003cp\u003e如果搜尋結果裡有:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e id=\u003cid\u003e\u003c/p\u003e\u003cp\u003e classid=\u003cclassid\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e調用:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://m.iikx.com/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e從detail 讀取:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF2024, IF2023, IF2022 ...\u003c/p\u003e\u003cp\u003e IF\u003c/p\u003e\u003cp\u003e zky2020 或其他JCR quartile 字段\u003c/p\u003e\u003cp\u003ejcr22 / jcr12 或分區字段\u003c/p\u003e\u003cp\u003eissn\u003c/p\u003e\u003cp\u003e eissn\u003c/p\u003e\u003cp\u003e title\u003c/p\u003e\u003cp\u003e smalltitle\u003c/p\u003e\u003cp\u003e category\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第七步:選擇最新IF。\u003c/p\u003e\u003cp\u003e在返回欄位中尋找所有形如:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF20xx\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e例如:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF2024\u003c/p\u003e\u003cp\u003e IF2023\u003c/p\u003e\u003cp\u003e IF2022\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e選年份最大的有效數字。\u003c/p\u003e\u003cp\u003e如果沒有IF20xx,則嘗試讀取:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF\u003c/p\u003e\u003cp\u003e if_value\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e如果沒有有效值,則標為未檢出。\u003c/p\u003e\u003cp\u003e第八步:輸出置信度和標註。\u003c/p\u003e\u003cp\u003e如果exact title / abbreviation 命中,且detail 回傳有效IF:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e如果匹配不確定:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=待核驗}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e如果公開"])</script><script>self.__next_f.push([1,"接口沒有結果:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=未檢出}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.4 IF 標註格式\u003c/p\u003e\u003cp\u003e固定格式:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e範例:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e Smith J et al., **Neuron** (2020), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=15.0,Q1}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e注意:\u003c/p\u003e\u003cp\u003e • IF 標註內部不寫JCR 年份。\u003c/p\u003e\u003cp\u003e • 不寫「2024 JCR IF」。\u003c/p\u003e\u003cp\u003e • 不寫「JCR 2024」。\u003c/p\u003e\u003cp\u003e • 年份只保留在文獻發表年份處。\u003c/p\u003e\u003cp\u003e • 若IF 為0.0、空值、來源不穩、符合不穩,則不顯示數字。\u003c/p\u003e\u003cp\u003e 6.5 IF 核查失敗時的標準處理\u003c/p\u003e\u003cp\u003e不要猜。\u003c/p\u003e\u003cp\u003e不要用期刊名印象補數字。\u003c/p\u003e\u003cp\u003e不要用大模型記憶補IF。\u003c/p\u003e\u003cp\u003e失敗時只允許三種狀態:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=待核驗}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e用於:\u003c/p\u003e\u003cp\u003e • 搜尋結果模糊。\u003c/p\u003e\u003cp\u003e • 有多個相似期刊。\u003c/p\u003e\u003cp\u003e • 只找到縮寫但無法確認全名。\u003c/p\u003e\u003cp\u003e • 公開來源傳回的IF 可疑。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=未檢出}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e用於:\u003c/p\u003e\u003cp\u003e • 公開介面沒有結果。\u003c/p\u003e\u003cp\u003e • 期刊不在SCI / JCR 覆蓋範圍。\u003c/p\u003e\u003cp\u003e • 新刊暫無IF。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=不可公開核驗}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e用於:\u003c/p\u003e\u003cp\u003e • 使用者要求必須官方JCR,但目前Agent 沒有Clarivate/JCR 權限。\u003c/p\u003e33:T4d3,8. 可复现伪代码\n```python\nqueries = build_queries(user_question)\n \nall_pmids = []\nfor query in queries:\n pmids = ncbi_esearch(query, retmax=20, sort='relevance')\n all_pmids.extend(pmids)\n \npmids = deduplicate_keep_order(all_pmids)\n \nmetadata = ncbi_esummary(pmids)\nabstracts = ncbi_efetch_abstract(pmids)\n \nrecords = merge_metadata_and_abstracts(metadata, abstracts)\nrecords = tag_evidence(records, user_question)\nrecords = rank_records(records)\nselected = select_top_records(records)\n \nif need_fulltext:\n for record in selected_key_records:\n pmcid = idconv_pmid_to_pmcid(record.pmid)\n if pmcid:\n record.fulltext = fetch_bioc_or_pmc_xml(pmcid)\n \nfor record in selected:\n journal_query = record.full_journal_name or record.journal_abbrev\n if_result = lookup_if_public_iikx(journal_query)\n if if_result.confident:\n record.if_annotation = f'*{IF={if_result.if_value},{if_result.quartile}}*'\n elif if_result.ambiguous:\n record.if_annotation = '*{IF=待核验}*'\n else:\n record.if_annotation = '*{IF=未检出}*'\n \nanswer = compose_answer(\n conclusion,\n evidence_groups,\n clickable_body_citations,\n full_reference_list_with_if\n)\n```34:T5f8,\u003cp\u003e8. 可复现伪代码\u003c/p\u003e\u003cp\u003e```python\u003c/p\u003e\u003cp\u003equeries = build_queries(user_question)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003eall_pmids = []\u003c/p\u003e\u003cp\u003efor query in queries:\u003c/p\u003e\u003cp\u003e pmids = ncbi_esearch(query, retmax=20, sort=\u0026apos;relevance\u0026apos;)\u003c/p\u003e\u003cp\u003e all_pmids.extend(pmids)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003epmids = deduplicate_keep_order(all_pmids)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003emetadata = ncbi_esummary(pmids)\u003c/p\u003e\u003cp\u003eabstracts = ncbi_efetch_abstract(pmids)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003erecords = merge_metadata_and_abstracts(metadata, abstracts)\u003c/p\u003e\u003cp\u003erecords = tag_evidence(records, user_question)\u003c/p\u003e\u003cp\u003erecords = rank_records(records)\u003c/p\u003e\u003cp\u003eselected = select_top_records(records)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003eif need_fulltext:\u003c/p\u003e\u003cp\u003e for record in selected_key_records:\u003c/p\u003e\u003cp\u003e pmcid = idconv_pmid_to_pmcid(record.pmid)\u003c/p\u003e\u003cp\u003e if pmcid:\u003c/p\u003e\u003cp\u003e record.fulltext = fetch_bioc_or_pmc_xml(pmcid)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003efor record in selected:\u003c/p\u003e\u003cp\u003e journal_query = record.full_journal_name or record.journal_abbrev\u003c/p\u003e\u003cp\u003e if_result = lookup_if_public_iikx(journal_query)\u003c/p\u003e\u003cp\u003e if if_result.confident:\u003c/p\u003e\u003cp\u003e record.if_annotation = f\u0026apos;*{IF={if_result.if_value},{if_result.quartile}}*\u0026apos;\u003c/p\u003e\u003cp\u003e elif if_result.ambiguous:\u003c/p\u003e\u003cp\u003e record.if_annotation = \u0026apos;*{IF=待核验}*\u0026apos;\u003c/p\u003e\u003cp\u003e else:\u003c/p\u003e\u003cp\u003e record.if_annotation = \u0026apos;*{IF=未检出}*\u0026apos;\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003eanswer = compose_answer(\u003c/p\u003e\u003cp\u003e conclusion,\u003c/p\u003e\u003cp\u003e evidence_groups,\u003c"])</script><script>self.__next_f.push([1,"/p\u003e\u003cp\u003e clickable_body_citations,\u003c/p\u003e\u003cp\u003e full_reference_list_with_if\u003c/p\u003e\u003cp\u003e)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e35:T588,\u003cp\u003e8. 可復現偽代碼\u003c/p\u003e\u003cp\u003e『`python\u003c/p\u003e\u003cp\u003e queries = build_queries(user_question)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e all_pmids = []\u003c/p\u003e\u003cp\u003e for query in queries:\u003c/p\u003e\u003cp\u003e pmids = ncbi_esearch(query, retmax=20, sort='relevance')\u003c/p\u003e\u003cp\u003e all_pmids.extend(pmids)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e pmids = deduplicate_keep_order(all_pmids)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e metadata = ncbi_esummary(pmids)\u003c/p\u003e\u003cp\u003e abstracts = ncbi_efetch_abstract(pmids)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e records = merge_metadata_and_abstracts(metadata, abstracts)\u003c/p\u003e\u003cp\u003e records = tag_evidence(records, user_question)\u003c/p\u003e\u003cp\u003e records = rank_records(records)\u003c/p\u003e\u003cp\u003e selected = select_top_records(records)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e if need_fulltext:\u003c/p\u003e\u003cp\u003e for record in selected_key_records:\u003c/p\u003e\u003cp\u003e pmcid = idconv_pmid_to_pmcid(record.pmid)\u003c/p\u003e\u003cp\u003e if pmcid:\u003c/p\u003e\u003cp\u003e record.fulltext = fetch_bioc_or_pmc_xml(pmcid)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e for record in selected:\u003c/p\u003e\u003cp\u003e journal_query = record.full_journal_name 或 record.journal_abbrev\u003c/p\u003e\u003cp\u003e if_result = lookup_if_public_iikx(journal_query)\u003c/p\u003e\u003cp\u003e if if_result.confident:\u003c/p\u003e\u003cp\u003e record.if_annotation = f'*{IF={if_result.if_value},{if_result.quartile}}*'\u003c/p\u003e\u003cp\u003e elif if_result.ambiguous:\u003c/p\u003e\u003cp\u003e record.if_annotation = '*{IF=待核驗}*'\u003c/p\u003e\u003cp\u003e else:\u003c/p\u003e\u003cp\u003e record.if_annotation = '*{IF=未檢出}*'\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e answer = compose_answer(\u003c/p\u003e\u003cp\u003e conclusion,\u003c/p\u003e\u003cp\u003e evidence_groups,\u003c/p\u003e\u003cp\u003e clickable_body_citations,\u003c/p\u003e\u003cp\u003e full_reference_list_with_if\u003c/p\u003e\u003cp\u003e )\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e36:Tb52,📋 使用指南這個Skill 是一套基於麥肯錫方法論驅動的行業研究引擎,基於肖璟《如何快速了解一個行業》中的八維框架。你告訴它一個產業名,它幫你產出一份有系統的研究報告。 —————————————————————————————— 🚀 基礎用法直接告訴我你想研究什麼行業即可,越具體越好: a. \"幫我分析一下固態電池行業\" b. \"看看人形機器人產業鏈,創業視角\" c. \"光伏行業現在還能投嗎?\" 你可以附帶信息(不強制處理,缺了 1.產業名稱:越具體越好,例如「鈣鈦礦光伏」而非「新能源」,此項「必填」; 2. 目標:投資/ 擇業/ 創業/ 競品分析/ 科普,預設:投資;3. 地區:中國市場/ 全球/ 美國/東南亞...,預設:中國市場 —————————————————— 整個流程分為4 個階段: 1. 多輪聯網搜尋搜市場規模/增速/滲透率、產業鏈、競爭格局、護城河證據、政策、估值-每一個結論都有來源和時點,絕不編造; 2. 生命週期定位用滲透率判斷產業處於導入期/成長期/成熟期/重點結構期,不同階段研究維度完全不同;競爭格局(強制逐條五力評分)→ 估價→ PEST → 景氣度; 4. 反共識檢定區分市場已price-in 的明牌vs 被忽略的真問題,給出決策建議; —————————————————————————————— 📊 產出什麼? 一份Markdown格式的專業行研報告,架構如下: 1. ⚡ 30 秒速判— 階段/ 核心賺錢邏輯/ 最大機會/ 最大風險/ 一句話結論; 2. 研究對象,邊界界定; 3. 生命週期定位(含滲透率資料);結論與決策建議; 7. 關鍵風險清單; 8. 資料來源與時間說明; —————————————————————————————— 🔑 兩個核心亮點1. 護城河強制深挖:不只講壁壘類型,必須回答「過去2-3 年是變寬還是變窄」,用份額/毛利率/2.波特五力逐條評分:五條全打,不給偷懶空間,判斷當前誰議價權最強、格局對頭部是友好還是惡化; —————————————————————————————— ⏱️ 耗時大約2-4分鐘,因為需要多輪搜索+ 逐維度分析+ 撰寫報告—————————————— ————————後續可擴展報告產出後,可以繼續接兩個專案分析(需"])</script><script>self.__next_f.push([1,"要你手動確認,不會自動跑): 1.「拆鏈找卡點」:從產業鏈中定位趨勢放量時繞不過去的實體卡點,鎖定真受益標的;2.「DCF 估值」:對產業內 直接告訴我一個行業名就行,例如「幫我看看AI Agent 產業,創業視角」或「氫能產業鏈現在什麼情況?」7:[\"$\",\"div\",null,{\"className\":\"container pt-[42px] md:pt-[100px]\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col gap-5 md:gap-[60px]\",\"children\":[[\"$\",\"$L27\",null,{\"label\":\"技能\",\"fallbackHref\":\"/skills\"}],[\"$\",\"$L28\",null,{\"locale\":\"zh-TW\",\"skill\":{\"id\":\"019e00d2-78ba-73bc-93d4-eae7d91298a9\",\"created_at\":\"2026-05-07T05:04:14.010Z\",\"updated_at\":\"2026-07-02T02:01:28.022Z\",\"creator_id\":\"7d8d4986-6f56-4da7-8fb5-e8e0355a3ae3\",\"name\":\"Bio/Med深度可靠研究\",\"description\":\"適用情境:完成一輪生物/生物醫學類科研文獻檢索並給使用者提供詳實可靠的輸出1. 使用者發起檢索後系統拆解問題和關鍵字2. 使用公開、可複現的資料來源檢索文獻3. 對檢索結果進行去重、分層、證據分級和排序4. 回應中使用可點擊正文回復5.文末逐條列出完整文獻訊息,並以公開可查路線標註IF;若無法高置信核驗,必須標示為「待核驗」或「未檢出」。\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Hedgehug\",\"icon_bg_color\":\"skill-bg13\",\"showcase\":[{\"url\":\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2\",\"type\":\"image\"},{\"url\":\"https://cdn.gooo.ai/web-images/f697d3abe7d40284b9afc64c0ec008739ef2f24e668d3e36d7f7890b70206ad7\",\"type\":\"image\"}],\"fork_count\":9,\"earned_credits\":1800,\"price\":200,\"content\":{\"steps\":[{\"instructions\":\"$29\",\"instructions_raw\":\"$2a\",\"localized_instructions_raw\":\"$2b\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"$2c\",\"instructions_raw\":\"$2d\",\"localized_instructions_raw\":\"$2e\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"3. 检索后如何整理信息\\n3.1 建立统一记录结构\\n每篇文献整理成统一 record。\\n字段:\\n```text\\npmid\\ndoi\\npmcid\\ntitle\\nauthors\\njournal\\njournal_abbrev\\nissn\\neissn\\nyear\\nabstract\\nquery_source\\nevidence_level\\nevidence_tags\\npaper_type\\nurl\\n```\\n3.2 去重\\n优先级:\\n1. PMID 去重。\\n2. 没有 PMID 时用 DOI 去重。\\n3. 没有 DOI 时用 lower(title) + year + first_author 去重。\\n保留第一次命中的 query_source,同时记录该文献被哪些 query 命中。\\n3.3 证据分级\\n必须区分:\\n直接证据:\\n目标物种、组织、细胞类型、模型、处理条件直接命中。\\n间接证据:\\n相邻系统、相似模型、相近机制支持,但不是用户问题的直接系统。\\n未见直接证据:\\n只能找到背景、推测、综述或相邻模型,没有直接实验结果。\\n3.4 文献类型标注\\n至少标注:\\n• original research\\n• review\\n• protocol\\n• preprint\\n• dataset/resource\\n• clinical study\\n• method paper\\n3.5 排序规则\\n推荐排序:\\n1. 直接证据原始研究。\\n2. 关键机制研究。\\n3. 最新重要研究。\\n4. 经典奠基研究。\\n5. 高质量综述。\\n6. 间接证据。\\n不要只按 IF 排序。IF 是期刊层面指标,不等于单篇文献质量。\",\"instructions_raw\":\"\u003cp\u003e3. 检索后如何整理信息\u003c/p\u003e\u003cp\u003e3.1 建立统一记录结构\u003c/p\u003e\u003cp\u003e每篇文献整理成统一 record。\u003c/p\u003e\u003cp\u003e字段:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003epmid\u003c/p\u003e\u003cp\u003edoi\u003c/p\u003e\u003cp\u003epmcid\u003c/p\u003e\u003cp\u003etitle\u003c/p\u003e\u003cp\u003eauthors\u003c/p\u003e\u003cp\u003ejournal\u003c/p\u003e\u003cp\u003ejournal_abbrev\u003c/p\u003e\u003cp\u003eissn\u003c/p\u003e\u003cp\u003eeissn\u003c/p\u003e\u003cp\u003eyear\u003c/p\u003e\u003cp\u003eabstract\u003c/p\u003e\u003cp\u003equery_source\u003c/p\u003e\u003cp\u003eevidence_level\u003c/p\u003e\u003cp\u003eevidence_tags\u003c/p\u003e\u003cp\u003epaper_type\u003c/p\u003e\u003cp\u003eurl\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e3.2 去重\u003c/p\u003e\u003cp\u003e优先级:\u003c/p\u003e\u003cp\u003e1. PMID 去重。\u003c/p\u003e\u003cp\u003e2. 没有 PMID 时用 DOI 去重。\u003c/p\u003e\u003cp\u003e3. 没有 DOI 时用 lower(title) + year + first_author 去重。\u003c/p\u003e\u003cp\u003e保留"])</script><script>self.__next_f.push([1,"第一次命中的 query_source,同时记录该文献被哪些 query 命中。\u003c/p\u003e\u003cp\u003e3.3 证据分级\u003c/p\u003e\u003cp\u003e必须区分:\u003c/p\u003e\u003cp\u003e直接证据:\u003c/p\u003e\u003cp\u003e目标物种、组织、细胞类型、模型、处理条件直接命中。\u003c/p\u003e\u003cp\u003e间接证据:\u003c/p\u003e\u003cp\u003e相邻系统、相似模型、相近机制支持,但不是用户问题的直接系统。\u003c/p\u003e\u003cp\u003e未见直接证据:\u003c/p\u003e\u003cp\u003e只能找到背景、推测、综述或相邻模型,没有直接实验结果。\u003c/p\u003e\u003cp\u003e3.4 文献类型标注\u003c/p\u003e\u003cp\u003e至少标注:\u003c/p\u003e\u003cp\u003e• original research\u003c/p\u003e\u003cp\u003e• review\u003c/p\u003e\u003cp\u003e• protocol\u003c/p\u003e\u003cp\u003e• preprint\u003c/p\u003e\u003cp\u003e• dataset/resource\u003c/p\u003e\u003cp\u003e• clinical study\u003c/p\u003e\u003cp\u003e• method paper\u003c/p\u003e\u003cp\u003e3.5 排序规则\u003c/p\u003e\u003cp\u003e推荐排序:\u003c/p\u003e\u003cp\u003e1. 直接证据原始研究。\u003c/p\u003e\u003cp\u003e2. 关键机制研究。\u003c/p\u003e\u003cp\u003e3. 最新重要研究。\u003c/p\u003e\u003cp\u003e4. 经典奠基研究。\u003c/p\u003e\u003cp\u003e5. 高质量综述。\u003c/p\u003e\u003cp\u003e6. 间接证据。\u003c/p\u003e\u003cp\u003e不要只按 IF 排序。IF 是期刊层面指标,不等于单篇文献质量。\u003c/p\u003e\",\"localized_instructions_raw\":\"$2f\",\"tools\":{\"write\":{\"use_tool\":\"required\",\"model\":\"claude-4-5-sonnet\"}},\"tool_as_skill\":{\"id\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\",\"name\":\"写作\",\"config\":{\"model\":\"claude-4-5-sonnet\"}},\"at_references\":[]},{\"instructions\":\"4. 回复中如何组织引用\\n4.1 正文引用格式\\n正文引用必须可点击。\\n格式:\\n```markdown\\n[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\\n```\\n示例:\\n```markdown\\n已有研究在人源 retinal organoids 中观察到发育阶段相关的光感受器应激和退化现象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。\\n```\\n不要写成:\\n```text\\n[1]\\n(PMID: xxxxx)\\n见文献1\\n```\\n4.2 推荐回答结构\\n第一段:直接结论。\\n```text\\n结论:已有相关报道,但直接证据主要集中在……;关于……仍缺少直接证据。\\n```\\n第二段:证据分级。\\n```text\\n直接证据:\\n- 文献 A:……\\n \\n间接证据:\\n- 文献 B:……\\n \\n未见直接证据:\\n- 本轮未找到……\\n```\\n第三段:机制归纳。\\n按主题分组,例如:\\n• apoptosis / caspase pathway\\n• oxidative stress\\n• mitochondrial dysfunction\\n• ER stress\\n• hypoxia / metabolic stress\\n• inflammation\\n• developmental mismatch\\n第四段:研究空白。\\n明确说明哪些问题没有直接证据。\\n第五段:实验启发。\\n如果用户需要实验设计,给出 marker、assay、time point、control。\",\"instructions_raw\":\"\u003cp\u003e4. 回复中如何组织引用\u003c/p\u003e\u003cp\u003e4.1 正文引用格式\u003c/p\u003e\u003cp\u003e正文引用必须可点击。\u003c/p\u003e\u003cp\u003e格式:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e示例:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e已有研究在人源 retinal organoids 中观察到发育阶段相关的光感受器应激和退化现象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e不要写成:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e[1]\u003c/p\u003e\u003cp\u003e(PMID: xxxxx)\u003c/p\u003e\u003cp\u003e见文献1\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e4.2 推荐回答结构\u003c/p\u003e\u003cp\u003e第一段:直接结论。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e结论:已有相关报道,但直接证据主要集中在……;关于……仍缺少直接证据。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第二段:证据分级。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e直接证据:\u003c/p\u003e\u003cp\u003e- 文献 A:……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e间接证据:\u003c/p\u003e\u003cp\u003e- 文献 B:……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e未见直接证据:\u003c/p\u003e\u003cp\u003e- 本轮未找到……\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第三段:机制归纳。\u003c/p\u003e\u003cp\u003e按主题分组,例如:\u003c/p\u003e\u003cp\u003e• apoptosis / caspase pathway\u003c/p\u003e\u003cp\u003e• oxidative stress\u003c/p\u003e\u003cp\u003e• mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e• ER stress\u003c/p\u003e\u003cp\u003e• hypoxia / metabolic stress\u003c/p\u003e\u003cp\u003e• inflammation\u003c/p\u003e\u003cp\u003e• developmental mismatch\u003c/p\u003e\u003cp\u003e第四段:研究空白。\u003c/p\u003e\u003cp\u003e明确说明哪些问题没有直接证据。\u003c/p\u003e\u003cp\u003e第五段:实验启发。\u003c/p\u003e\u003cp\u003e如果用户需要实验设计,给出 marker、assay、time point、control。\u003c/p\u003e\",\"localized_instructions_raw\":\"\u003cp\u003e4. 回覆中如何組織引用\u003c/p\u003e\u003cp\u003e4.1 正文引用格式\u003c/p\u003e\u003cp\u003e正文引用必須可點選。\u003c/p\u003e"])</script><script>self.__next_f.push([1,"\u003cp\u003e格式:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e [[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e範例:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e已有研究在人源retinal organoids 中觀察到發育階段相關的光感受器壓力和退化現象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e不要寫成:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e [1]\u003c/p\u003e\u003cp\u003e (PMID: xxxxx)\u003c/p\u003e\u003cp\u003e見文獻1\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 4.2 推薦回答結構\u003c/p\u003e\u003cp\u003e第一段:直接結論。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e結論:已有相關報導,但直接證據主要集中在……;關於……仍缺乏直接證據。\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第二段:證據分級。\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e直接證據:\u003c/p\u003e\u003cp\u003e - 文獻A:…\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e間接證據:\u003c/p\u003e\u003cp\u003e - 文獻B:…\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e未見直接證據:\u003c/p\u003e\u003cp\u003e - 本輪找不到…\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e第三段:機制歸納。\u003c/p\u003e\u003cp\u003e按主題分組,例如:\u003c/p\u003e\u003cp\u003e • apoptosis / caspase pathway\u003c/p\u003e\u003cp\u003e • oxidative stress\u003c/p\u003e\u003cp\u003e • mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e • ER stress\u003c/p\u003e\u003cp\u003e • hypoxia / metabolic stress\u003c/p\u003e\u003cp\u003e • inflammation\u003c/p\u003e\u003cp\u003e • developmental mismatch\u003c/p\u003e\u003cp\u003e第四段:研究空白。\u003c/p\u003e\u003cp\u003e明確說明哪些問題沒有直接證據。\u003c/p\u003e\u003cp\u003e第五段:實驗啟發。\u003c/p\u003e\u003cp\u003e如果使用者需要實驗設計,給予marker、assay、time point、control。\u003c/p\u003e\",\"tools\":{\"write\":{\"use_tool\":\"required\",\"model\":\"claude-4-5-sonnet\"}},\"tool_as_skill\":{\"id\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\",\"name\":\"写作\",\"config\":{\"model\":\"claude-4-5-sonnet\"}},\"at_references\":[]},{\"instructions\":\"5. 文末完整文献信息列表\\n只要正文引用具体文献,文末必须附完整列表。\\n格式:\\n```markdown\\n## 完整文献信息列表\\n \\n1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*\\n2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\\n```\\n作者格式:\\n• 1–3 位作者:列出全部。\\n• 超过 3 位:第一作者 et al.\\nPMID / DOI / URL 必须可点击。\",\"instructions_raw\":\"\u003cp\u003e5. 文末完整文献信息列表\u003c/p\u003e\u003cp\u003e只要正文引用具体文献,文末必须附完整列表。\u003c/p\u003e\u003cp\u003e格式:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e## 完整文献信息列表\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e作者格式:\u003c/p\u003e\u003cp\u003e• 1–3 位作者:列出全部。\u003c/p\u003e\u003cp\u003e• 超过 3 位:第一作者 et al.\u003c/p\u003e\u003cp\u003ePMID / DOI / URL 必须可点击。\u003c/p\u003e\",\"localized_instructions_raw\":\"\u003cp\u003e5. 文末完整文獻資訊列表\u003c/p\u003e\u003cp\u003e只要正文引用具體文獻,文末必須附上完整列表。\u003c/p\u003e\u003cp\u003e格式:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e ## 完整文獻資訊列表\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e 2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核驗}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e作者格式:\u003c/p\u003e\u003cp\u003e • 1–3 位作者:列出全部。\u003c/p\u003e\u003cp\u003e • 超過3 位:第一作者et al.\u003c/p\u003e\u003cp\u003e PMID / DOI / URL 必須可點選。\u003c/p\u003e\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"$30\",\"instructions_raw\":\"$31\",\"localized_instructions_raw\":\"$32\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"7. 最终回复自检清单\\n发出前必须检查:\\n• 是否先回答用户核心问题。\\n• 是否区分直接证据、间接证据、未见直接证据。\\n• 是否所有正文引用都可点击。\\n• 是否文末有完整文献信息列表。\\n• 是否每篇文献都带 IF 标注或待核"])</script><script>self.__next_f.push([1,"验/未检出标注。\\n• PMID/DOI/URL 是否可点击。\\n• 是否避免把整体组织结果偷换成特定细胞类型结论。\\n• 是否避免把活化/磷酸化偷换成总表达量升高。\\n• 是否标注预印本。\\n• 是否说明检索边界。\\n• IF 是否没有凭记忆猜测。\",\"instructions_raw\":\"\u003cp\u003e7. 最终回复自检清单\u003c/p\u003e\u003cp\u003e发出前必须检查:\u003c/p\u003e\u003cp\u003e• 是否先回答用户核心问题。\u003c/p\u003e\u003cp\u003e• 是否区分直接证据、间接证据、未见直接证据。\u003c/p\u003e\u003cp\u003e• 是否所有正文引用都可点击。\u003c/p\u003e\u003cp\u003e• 是否文末有完整文献信息列表。\u003c/p\u003e\u003cp\u003e• 是否每篇文献都带 IF 标注或待核验/未检出标注。\u003c/p\u003e\u003cp\u003e• PMID/DOI/URL 是否可点击。\u003c/p\u003e\u003cp\u003e• 是否避免把整体组织结果偷换成特定细胞类型结论。\u003c/p\u003e\u003cp\u003e• 是否避免把活化/磷酸化偷换成总表达量升高。\u003c/p\u003e\u003cp\u003e• 是否标注预印本。\u003c/p\u003e\u003cp\u003e• 是否说明检索边界。\u003c/p\u003e\u003cp\u003e• IF 是否没有凭记忆猜测。\u003c/p\u003e\",\"localized_instructions_raw\":\"\u003cp\u003e7. 最終回覆自檢清單\u003c/p\u003e\u003cp\u003e發出前必須檢查:\u003c/p\u003e\u003cp\u003e • 是否先回答使用者核心問題。\u003c/p\u003e\u003cp\u003e • 是否區分直接證據、間接證據、未見直接證據。\u003c/p\u003e\u003cp\u003e • 是否所有正文引用都可點選。\u003c/p\u003e\u003cp\u003e • 是否文末有完整文獻資訊列表。\u003c/p\u003e\u003cp\u003e • 是否每篇文獻都帶IF 標註或待核驗/未檢出標註。\u003c/p\u003e\u003cp\u003e • PMID/DOI/URL 是否可點選。\u003c/p\u003e\u003cp\u003e • 是否避免將整體組織結果偷換成特定細胞類型結論。\u003c/p\u003e\u003cp\u003e • 是否避免將活化/磷酸化偷換成總表現量升高。\u003c/p\u003e\u003cp\u003e • 是否標註預印本。\u003c/p\u003e\u003cp\u003e • 是否說明檢索邊界。\u003c/p\u003e\u003cp\u003e • IF 沒有憑記憶猜測。\u003c/p\u003e\",\"tools\":{},\"at_references\":[]},{\"instructions\":\"$33\",\"instructions_raw\":\"$34\",\"localized_instructions_raw\":\"$35\",\"tools\":{},\"at_references\":[]},{\"instructions\":\"9. 推荐最终交付模板\\n```markdown\\n结论:\\n……\\n \\n证据等级:\\n \\n直接证据:\\n- ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\\n \\n间接证据:\\n- ……[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\\n \\n未见直接证据:\\n- ……\\n \\n机制归纳:\\n1. ……\\n2. ……\\n \\n检索边界:\\n本轮主要检索 PubMed / PMC / BioC / bioRxiv;初筛基于 metadata + abstract,仅对关键文献进入全文复核。IF 标注基于公开可访问来源核查;无法高置信匹配时标为待核验或未检出。\\n \\n完整文献信息列表:\\n1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*\\n2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\\n```\",\"instructions_raw\":\"\u003cp\u003e9. 推荐最终交付模板\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e结论:\u003c/p\u003e\u003cp\u003e……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e证据等级:\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e直接证据:\u003c/p\u003e\u003cp\u003e- ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e间接证据:\u003c/p\u003e\u003cp\u003e- ……[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e未见直接证据:\u003c/p\u003e\u003cp\u003e- ……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e机制归纳:\u003c/p\u003e\u003cp\u003e1. ……\u003c/p\u003e\u003cp\u003e2. ……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e检索边界:\u003c/p\u003e\u003cp\u003e本轮主要检索 PubMed / PMC / BioC / bioRxiv;初筛基于 metadata + abstract,仅对关键文献进入全文复核。IF 标注基于公开可访问来源核查;无法高置信匹配时标为待核验或未检出。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e完整文献信息列表:\u003c/p\u003e\u003cp\u003e1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*\u003c/p\u003e\u003cp\u003e2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\",\"localized_instructions_raw\":\"\u003cp\u003e9. 推薦最終交付模板\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e結論:\u003c/p\u003e\u003cp\u003e ……\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e證據等級:\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e直接證據:\u003c/p\u003e\u003cp\u003e - ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e間接證據:\u003c/p\u003e\u003cp\u003e - ……[[2. **Journal**, Year"])</script><script>self.__next_f.push([1,"]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e未見直接證據:\u003c/p\u003e\u003cp\u003e - ……\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e機制歸納:\u003c/p\u003e\u003cp\u003e 1. ……\u003c/p\u003e\u003cp\u003e 2. ……\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e檢索邊界:\u003c/p\u003e\u003cp\u003e本輪主要檢索PubMed / PMC / BioC / bioRxiv;初篩基於metadata + abstract,僅對關鍵文獻進入全文複核。 IF 標註是基於公開可存取來源核查;無法高置信度符合時標為待核驗或未檢出。\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e完整文獻資訊列表:\u003c/p\u003e\u003cp\u003e 1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*\u003c/p\u003e\u003cp\u003e 2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核驗}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\",\"tools\":{\"write\":{\"use_tool\":\"required\",\"model\":\"claude-4-5-sonnet\"}},\"tool_as_skill\":{\"id\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\",\"name\":\"写作\",\"config\":{\"model\":\"claude-4-5-sonnet\"}},\"at_references\":[]}]},\"content_visibility\":\"public\",\"origin\":\"custom\",\"suggested_categories\":[\"research\"],\"featured_reason\":\"這項技能是生物醫學研究的可靠指南,透過結構化查詢、多階段文獻篩選和嚴謹的IF核查,確保提供高度準確且可驗證的科研資訊。\",\"seo_description\":\"透過PubMed/NCBI E-utilities進行可複現文獻初篩,PMID去重,摘要分級,PMC/BioC全文複核,確保引用可點擊,提供完整文獻資訊及保守核查的IF。\",\"input_hint\":\"想了解哪些生物/醫學問題?請描述您的研究對象、機製或需求。\",\"slug\":\"biomed-research-assistant\",\"featured\":false,\"approved_at\":\"2026-05-07T09:01:47.838Z\",\"featured_by\":{\"id\":\"63edaf7c-2fec-49bd-9f2e-02f772e4a1d9\",\"name\":\"Nico@YouMind\",\"picture\":\"https://cdn.gooo.ai/web-images/48ac6e1efc9e34330a4fec4dbf7790fe70bbd9c4e9b0a1c6dc441a3d57f803f7\"},\"categories\":[\"learn\"],\"creator\":{\"id\":\"7d8d4986-6f56-4da7-8fb5-e8e0355a3ae3\",\"name\":\"李振龙\",\"picture\":\"https://lh3.googleusercontent.com/a/ACg8ocK-FkWqN1wm1I4I4msHCyKpwJo43ob4uRzte3qtOO6ZmJtncA=s96-c\"},\"latest_version_id\":\"019e0a68-5ccc-7c0a-abab-32896eee7b94\",\"share_url\":\"https://youmind.club/skills/biomed-research-assistant-zXJCpN71mICVZ2\"},\"relatedSkills\":[{\"id\":\"019f01c5-3018-7f71-bc06-8e7bcb90b181\",\"created_at\":\"2026-06-26T02:32:07.960Z\",\"updated_at\":\"2026-07-16T04:12:19.310Z\",\"creator_id\":\"ac9a3f42-846f-46ac-bebf-8418372746e1\",\"name\":\"如何快速了解一個產業\",\"subtitle\":\"從生命週期、可行性、規模性、防守性、獲利性、估值、外部因素、景氣度八維度系統拆解一個產業,並給予完整產業研究報告\",\"description\":\"$36\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"avatar\":\"https://cdn.gooo.ai/web-images/44415746a49c10419e244c21301b8eb4417b526798c57d283d093b5d6df8050f\",\"icon_value\":\"Horse\",\"icon_bg_color\":\"skill-bg06\",\"showcase\":[{\"url\":\"https://cdn.gooo.ai/web-images/bce9fba54e70e96cd0be3836fa088a36a6e8e473d3032ba958bc16bd49a47c8e\",\"type\":\"image\"},{\"type\":\"task\",\"task_id\":\"fvdyqIoqxViskL\"},{\"type\":\"task\",\"task_id\":\"9QqLQxdBXGi0rF\"},{\"type\":\"task\",\"task_id\":\"LZ5C6qPVKYyo6q\"}],\"fork_count\":19,\"earned_credits\":189981,\"price\":9999,\"content_visibility\":\"private\",\"origin\":\"custom\",\"suggested_categories\":[\"learn\"],\"featured_reason\":\"本技能是麦肯锡式行业研究的精髓,通过“先搜后判”和八维分析框架,确保每份报告都基于最新数据,提供深度洞察和决策建议,而非泛泛而谈。\",\"seo_description\":\"获取麦肯锡式行业研究报告,基于实时数据,深入分析市场规模、竞争格局与护城河,助您投资、择业、创业决策。\",\"input_hint\":\"想分析哪個產業?例如“AI晶片”或“餐飲連鎖”,可附帶“投資”或“擇業”視角。\",\"slug\":\"industry-analysis-report\",\"featured\":false,\"approved_at\":\"2026-06-26T09:24:42.614Z\",\"categories\":[\"learn\"],\"creator\":{\"id\":\"ac9a3f42-846f-46ac-bebf-8418372746e1\",\"name\":\"积木的唠叨\",\"picture\":\"https://cdn.gooo.ai/web-images/1bac8ae6bbdb6e4ea06957618bae05511157be5596e9a57953e2da9faa3617dc\"},\"latest_version_id\":\"019f411c-1d8a-7cbc-85b6-d71c3"])</script><script>self.__next_f.push([1,"cd5746a\"},{\"id\":\"019efcc8-6f7a-77e4-90bd-95c001f999c6\",\"created_at\":\"2026-06-25T03:17:34.714Z\",\"updated_at\":\"2026-07-15T09:20:31.816Z\",\"creator_id\":\"ac9a3f42-846f-46ac-bebf-8418372746e1\",\"name\":\"如何快速了解一家企業\",\"subtitle\":\"基於查理.芒格的多元思維模型,以價值投資的觀點對企業進行深度投研分析\",\"description\":\"輸入公司名或股票,用查理.芒格的多元思維模型,以價值投資的視角對股票進行深度投研分析,SKILL自動聯網挖掘深度信息,強制先搜後判、雙源交叉、標註口徑與來源,按價值投資七維框架做深度分析,給出三情景估值與2×2質量/價格決策,產出一份可執行的價值投資報告。\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"avatar\":\"https://cdn.gooo.ai/web-images/71a57010aa5c8e612309314639c9fe37c6a8d07febe2473cff8223c36095c9c4\",\"icon_value\":\"ChristmasPenguin\",\"icon_bg_color\":\"skill-bg01\",\"showcase\":[{\"url\":\"https://cdn.gooo.ai/gen-images/712825e307749c8665300778e1a2e52b4e4b70a14061313b56c789d178ea2db1.png\",\"type\":\"image\"},{\"type\":\"task\",\"task_id\":\"GRwqdvGzomW2Mk\"}],\"fork_count\":5,\"earned_credits\":15498,\"price\":6999,\"content_visibility\":\"private\",\"origin\":\"custom\",\"suggested_categories\":[\"learn\"],\"featured_reason\":\"本技能以查理·芒格多元思维模型为框架,深度解析企业价值,其严谨的事实核查和多维度分析,是投资者做出明智决策的得力助手。\",\"seo_description\":\"获取深度价值投资报告,涵盖商业模式、财务分析、估值与风险,助您做出明智投资决策。\",\"input_hint\":\"想深度分析哪家公司或股票?\",\"slug\":\"value-investing-deep-analysis\",\"featured\":false,\"approved_at\":\"2026-06-25T09:51:29.091Z\",\"categories\":[\"learn\"],\"creator\":{\"id\":\"ac9a3f42-846f-46ac-bebf-8418372746e1\",\"name\":\"积木的唠叨\",\"picture\":\"https://cdn.gooo.ai/web-images/1bac8ae6bbdb6e4ea06957618bae05511157be5596e9a57953e2da9faa3617dc\"},\"latest_version_id\":\"019f4115-1dfb-7a73-9093-28674acb67fb\"},{\"id\":\"019ef897-d537-75a4-b6ed-27ea58357a80\",\"created_at\":\"2026-06-24T07:46:00.631Z\",\"updated_at\":\"2026-07-14T00:21:04.133Z\",\"creator_id\":\"2e82f8a6-8f3d-405b-a701-3382199c02ae\",\"name\":\"三元拆解:讀懂論文\",\"subtitle\":\"識要素· 通小循環· 掌大循環\",\"description\":\"用識要素-通小循環-掌大循環三元拆解法,自動或互動式拆解任意論文的論證骨架,內建14個AI Prompt模板,適合所有學術讀者\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"avatar\":\"https://cdn.gooo.ai/web-images/1c599e4ae9e505d5ef0587144f0c6cc076dcf9010a2c46506be9135717f2bb87\",\"icon_value\":\"LightBulb\",\"icon_bg_color\":\"skill-bg13\",\"showcase\":[{\"url\":\"https://cdn.gooo.ai/gen-images/a793134794b59fec8ffdae783bb14f597b6c15693b5767e9dc75ff96d33129ff.png\",\"type\":\"image\"}],\"fork_count\":7,\"earned_credits\":2793,\"price\":399,\"content_visibility\":\"private\",\"origin\":\"custom\",\"suggested_categories\":[],\"featured_reason\":\"此技能以独创的“三元拆解法”深度剖析学术论文,从要素识别到大小循环层层递进,更有互动教学模式,助你真正读懂论文,提升批判性思维。\",\"seo_description\":\"上传论文,AI助你用“三元拆解法”深度解读学术论文。提供自动报告或互动教学,助你掌握质性与定量研究的精髓,提升批判性分析能力。\",\"input_hint\":\"貼上論文或上傳文件,我們開始用三元法拆解它吧\",\"slug\":\"paper-breakdown-ai\",\"featured\":false,\"approved_at\":\"2026-06-24T09:04:39.262Z\",\"categories\":[\"learn\"],\"creator\":{\"id\":\"2e82f8a6-8f3d-405b-a701-3382199c02ae\",\"name\":\"珮\"},\"latest_version_id\":\"019ef8db-4478-735f-9d1e-fcbc80daa5fc\"}],\"publicConfig\":{\"PUBLIC_AGENT_MODEL_MAP\":{\"lite\":\"deepseek-v4-pro\",\"pro\":\"glm-5.2\",\"max\":\"glm-5.2\"},\"PUBLIC_AGENT_MODEL_TIER_OPTIONS\":{\"lite\":[\"glm-5.2\",\"deepseek-v4-pro\",\"doubao-seed-2-1-pro-preview\",\"kimi-k2.6\"],\"pro\":[\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"claude-sonnet-5\",\"gpt-5-6-terra\",\"gpt-5-6-luna\",\"gpt-5-4\",\"glm-5.2\",\"deepseek-v4-pro\",\"doubao-seed-evolving\"]"])</script><script>self.__next_f.push([1,",\"max\":[\"claude-fable-5\",\"claude-4-8-opus\",\"claude-4-7-opus\",\"claude-4-6-opus\",\"claude-sonnet-5\",\"gpt-5-6-sol\",\"gpt-5-5\",\"glm-5.2\",\"deepseek-v4-pro\",\"doubao-seed-evolving\"]},\"PUBLIC_AGENT_MODELS\":[\"claude-fable-5\",\"claude-4-6-opus\",\"claude-sonnet-5\",\"gpt-5-6-sol\",\"gpt-5-6-terra\",\"gpt-5-6-luna\",\"glm-5.2\",\"deepseek-v4-pro\",\"claude-4-8-opus\",\"claude-4-7-opus\",\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"gpt-5-5\",\"doubao-seed-evolving\",\"doubao-seed-2-1-pro-preview\",\"kimi-k2.6\"],\"PUBLIC_ANNUAL_REPORT_OPEN\":false,\"PUBLIC_APPLE_ON_DEVICE_MODELS\":[{\"name\":\"base\",\"category\":\"Whisper\",\"url\":\"https://cdn.gooo.ai/assets/on-device-models/apple/ggml-base.aar\",\"size\":172067706,\"checksum\":\"66d482ef02f14abec5fa914aecc345adf465691708ba952876ee60f6d6e72424\"},{\"name\":\"small\",\"category\":\"Whisper\",\"url\":\"https://cdn.gooo.ai/assets/on-device-models/apple/ggml-small.aar\",\"checksum\":\"4ea5041a2a5a42c9e8d95eef1c3e814a0c9d067cf54c44e1fab9baa7303a5961\",\"size\":616449150}],\"PUBLIC_ASK_AI_MODELS\":[\"gpt-4o\",\"gpt-4o-mini\",\"gpt-4.1\",\"gpt-5\",\"gpt-5-mini\",\"claude-4-sonnet\",\"claude-4-5-sonnet\",\"gemini-2.5-flash\",\"deepseek/deepseek-r1\",\"o4-mini\",\"gemini-2.5-pro\"],\"PUBLIC_ASK_AI_MODELS_V2\":[\"claude-fable-5\",\"claude-4-6-opus\",\"claude-sonnet-5\",\"gpt-5-6-sol\",\"gpt-5-6-terra\",\"gpt-5-6-luna\",\"gpt-5-5\",\"gemini-3.1-pro-preview\",\"gemini-3.5-flash\",\"doubao-seed-2-1-pro-preview\",\"deepseek-v4-pro\",\"kimi-k2.6\",\"glm-5.2\",\"minimax-m2-5\",\"claude-4-8-opus\",\"claude-4-7-opus\",\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"gemini-3-flash-preview\",\"deepseek-v4-flash\",\"doubao-seed-evolving\"],\"PUBLIC_CHAT_ABORT_SWITCH\":true,\"PUBLIC_CRAFT_AI_MODELS\":{\"page\":[\"claude-4-6-sonnet\",\"claude-4-6-opus\",\"claude-4-7-opus\",\"claude-sonnet-5\",\"gpt-5-5\",\"gemini-3.1-pro-preview\",\"deepseek-v4-pro\"],\"webpage\":[\"claude-4-7-opus\",\"claude-sonnet-5\",\"claude-4-6-sonnet\",\"gemini-3.1-pro-preview\",\"deepseek-v4-pro\",\"glm-4.7\",\"glm-5.2\",\"doubao-seed-evolving\"]},\"PUBLIC_DEFAULT_AI_AGENT_MODEL\":\"kimi-k2.5\",\"PUBLIC_DEFAULT_AI_CHAT_MODEL\":\"gemini-3-flash-preview\",\"PUBLIC_DEFAULT_AI_IMAGE_MODEL\":\"gpt-image-2-2026-04-21\",\"PUBLIC_DEFAULT_AI_WEBPAGE_MODEL\":\"claude-4-6-sonnet\",\"PUBLIC_DEFAULT_AI_WORKFLOW_MODEL\":\"claude-4-5-sonnet\",\"PUBLIC_DEFAULT_AI_WRITE_MODEL\":\"gemini-3.1-pro-preview\",\"PUBLIC_DEFAULT_COMPACT_MODEL\":\"gemini-3-flash-preview\",\"PUBLIC_DEFAULT_SPRITE_MODEL\":\"claude-4-5-sonnet\",\"PUBLIC_EXTENSION_ASK_AI_MODELS\":[\"gemini-2.5-flash\"],\"PUBLIC_FF_NEW_BOARD_V2\":true,\"PUBLIC_FF_TURNSTILE_SIGN_IN_ENABLED\":true,\"PUBLIC_FILE_TYPE_RECOMMENDED_SKILLS\":{\"slides\":[\"019eaa47-da8e-7c03-b6fb-156df0e43851\",\"019eaa54-0f54-7656-8c51-eb8788946452\"],\"document\":[\"019e96b4-e644-7bb9-849b-19f8025aa609\",\"019e96b4-7288-7cb0-a900-4577fdffe305\",\"5a79e907-3f9e-4612-9e0c-0c2ad19d0e33\"],\"image\":[\"019e9681-3722-7b4f-9828-5bb96941dcdc\",\"019e96a1-d3ef-7ae2-93ec-653e80cb0828\"],\"webpage\":[\"019e866b-7cbe-7b48-864a-ef93a392818e\",\"019e871f-f142-7f0b-b348-ec96108f22b7\"],\"youtube\":[\"0198a3c2-fdbc-7a0f-89f6-67231ab7c2f5\"],\"podcast\":[\"0197ce65-860c-7863-992d-149388594940\"],\"local-voice\":[\"019e96be-0a88-772b-9c4a-1c5c715229f8\",\"019e96a8-3a7f-71d8-b091-33454eef2a0a\"],\"article\":[\"019e6dde-2c93-7922-869e-2b9ff95eba7d\",\"019e832c-e21e-7b18-8322-d757ea0642a3\"]},\"PUBLIC_ICONFONT_JS_URL\":\"https://cdn.gooo.ai/assets/iconfont_icons.js\",\"PUBLIC_IMAGE_MODELS\":[\"dola-seedream-5-0-pro-260628\",\"gpt-image-2-2026-04-21\",\"gemini-3-pro-image-preview\",\"gemini-3.1-flash-image-preview\",\"gemini-3.1-flash-lite-image\",\"seedream-5-0-lite-260128\",\"qwen-image-2.0-pro\",\"qwen-image-2.0\"],\"PUBLIC_LAST_YOUWEB_RELEASE_TIME\":\"2026-07-16T15:20:55Z\",\"PUBLIC_MOBILE_OFFLINE_PACKAGE_ENABLED\":false,\"PUBLIC_MODEL_DEFINITION\":{\"gpt-4o\":{\"title\":\"GPT-4o\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-4o\",\"providers\":[\"openai\",\"azure\",\"aihubmix\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"prediction\":true}},\"gpt-4o-mini\":{\"title\":\"GPT-4o mini\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-4o-mini\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/s"])</script><script>self.__next_f.push([1,"elect_model_chatgpt.png\",\"extra\":{\"prediction\":true}},\"o4-mini\":{\"title\":\"o4-mini\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"o4-mini\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":100000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"fake_reasoning\":true}},\"gpt-4.1\":{\"title\":\"GPT-4.1\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-4.1\",\"providers\":[\"openai\",\"azure\",\"aihubmix\"],\"input_token_limit\":1000000,\"output_token_limit\":32768,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"prediction\":true}},\"gpt-5\":{\"title\":\"GPT-5\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"gpt-5-reasoning\":{\"title\":\"GPT-5\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-reasoning\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"display_thinking_tag\":true,\"paid_user_only\":false}},\"gpt-5-1\":{\"title\":\"GPT-5.1\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-5-1\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"gpt-5-mini\":{\"title\":\"GPT-5 mini\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-mini\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"gpt-5-nano\":{\"title\":\"GPT-5 nano\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-nano\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"text-embedding-3-large\":{\"title\":\"embedding\",\"type\":\"embedding\",\"from\":\"openai\",\"value\":\"text-embedding-3-large\",\"providers\":[\"openai\",\"azure\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"speech-2.6-hd\":{\"title\":\"MiniMax Speech 2.6 TTS\",\"type\":\"tts\",\"from\":\"minimax\",\"value\":\"speech-2.6-hd\",\"providers\":[\"minimax\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_minimax.png\",\"extra\":{}},\"speech-2.8-hd\":{\"title\":\"MiniMax Speech 2.8 TTS\",\"type\":\"tts\",\"from\":\"minimax\",\"value\":\"speech-2.8-hd\",\"providers\":[\"minimax\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_minimax.png\"},\"gpt-image-1\":{\"title\":\"GPT Image 1\",\"type\":\"image\",\"from\":\"openai\",\"value\":\"gpt-image-1\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"claude-3-5-haiku\":{\"title\":\"Claude 3.5 Haiku\",\"type\":\"chat\",\"from\":\"anthropic\",\"value\":\"claude-3-5-haiku\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":8192,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\"},\"claude-3-7-sonnet\":{\"title\":\"Claude 3.7 Sonnet\",\"type\":\"chat\",\"from\":\"anthropic\",\"value\":\"claude-3-7-sonnet\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\"},\"claude-4-sonnet\":{\"title\":\"Claude Sonnet 4\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-sonnet\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":1000000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\"},\"claude-4-sonnet-reasoning\":{\"title\":\"Claude Sonnet 4\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-sonnet-reasoning\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\"},\"claude-4-5-haiku\":{\"title\":\"Claude Haiku 4.5\",\"type\":\"chat\",\"f"])</script><script>self.__next_f.push([1,"rom\":\"anthropic\",\"value\":\"claude-4-5-haiku\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\"},\"claude-4-5-sonnet\":{\"title\":\"Claude Sonnet 4.5\",\"type\":\"chat\",\"from\":\"anthropic\",\"value\":\"claude-4-5-sonnet\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true}},\"claude-4-5-sonnet-reasoning\":{\"title\":\"Claude Sonnet 4.5\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-5-sonnet-reasoning\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"display_thinking_tag\":true}},\"deepseek/deepseek-r1\":{\"title\":\"DeepSeek V3.2\",\"type\":\"reasoning\",\"from\":\"deepseek\",\"value\":\"deepseek/deepseek-r1\",\"providers\":[\"deepseek\",\"openrouter\",\"aihubmix\"],\"input_token_limit\":128000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_deepseek.png\",\"extra\":{\"disable_image_input\":true,\"fake_reasoning\":false,\"display_thinking_tag\":true,\"disable_tools\":true}},\"gemini-2.5-pro\":{\"title\":\"Gemini 2.5 Pro\",\"type\":\"reasoning\",\"from\":\"google\",\"value\":\"gemini-2.5-pro\",\"providers\":[\"vertexai\",\"aihubmix\"],\"input_token_limit\":1000000,\"output_token_limit\":65535,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"extra\":{\"fake_reasoning\":true}},\"gemini-2.5-flash\":{\"title\":\"Gemini 2.5 Flash\",\"type\":\"chat\",\"from\":\"google\",\"value\":\"gemini-2.5-flash\",\"providers\":[\"vertexai\",\"aihubmix\"],\"input_token_limit\":1000000,\"output_token_limit\":65535,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"extra\":{\"display_free\":true,\"display_new\":true}},\"qwen-turbo\":{\"title\":\"Qwen Turbo\",\"type\":\"chat\",\"from\":\"qwen\",\"value\":\"qwen-turbo\",\"providers\":[\"aliyun\",\"aihubmix\"],\"input_token_limit\":1000000,\"output_token_limit\":8192,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\"},\"qwen3-tts-flash\":{\"title\":\"Qwen3 TTS Flash\",\"type\":\"tts\",\"from\":\"aliyun\",\"value\":\"qwen3-tts-flash\",\"providers\":[\"aliyun\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\"},\"cosyvoice-v3-flash\":{\"title\":\"CosyVoice v3 Flash\",\"type\":\"tts\",\"from\":\"aliyun\",\"value\":\"cosyvoice-v3-flash\",\"providers\":[\"aliyun\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\"},\"eleven_v3\":{\"title\":\"Eleven Labs V3\",\"type\":\"tts\",\"from\":\"elevenlabs\",\"value\":\"eleven_v3\",\"providers\":[\"elevenlabs\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"eleven_music_v1\":{\"title\":\"Eleven Labs Music V1\",\"type\":\"tts\",\"from\":\"elevenlabs\",\"value\":\"eleven_music_v1\",\"providers\":[\"elevenlabs\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"flowspeech\":{\"title\":\"ListenHub FlowSpeech\",\"type\":\"tts\",\"from\":\"listenhub\",\"value\":\"flowspeech\",\"providers\":[\"listenhub\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"gemini-2.5-flash-tts\":{\"title\":\"Gemini 2.5 Flash TTS\",\"type\":\"tts\",\"from\":\"google\",\"value\":\"gemini-2.5-flash-tts\",\"providers\":[\"google\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\"},\"gemini-2.5-pro-tts\":{\"title\":\"Gemini 2.5 Pro TTS\",\"type\":\"tts\",\"from\":\"google\",\"value\":\"gemini-2.5-pro-tts\",\"providers\":[\"google\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\"},\"gemini-2.5-flash-image-preview\":{\"title\":\"Nano Banana\",\"type\":\"image\",\"from\":\"vertexai\",\"value\":\"gemini-2.5-flash-image-preview\",\"providers\":[\"vertexai\"],\"input_token_limit\":32000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_nano_banana.png\"},\"jimeng-t2i-v4.0\":{\"title\":\""])</script><script>self.__next_f.push([1,"JiMeng 4.0\",\"type\":\"image\",\"from\":\"volcengine\",\"value\":\"jimeng-t2i-v4.0\",\"providers\":[\"volcengine\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_jimeng.png\",\"extra\":{\"display_free\":false}},\"grok-4\":{\"title\":\"Grok 4\",\"type\":\"chat\",\"from\":\"xai\",\"value\":\"grok-4\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"extra\":{\"paid_user_only\":false}},\"grok-4-fast\":{\"title\":\"Grok 4 Fast\",\"type\":\"chat\",\"from\":\"xai\",\"value\":\"grok-4-fast\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"extra\":{\"paid_user_only\":false}},\"grok-4-fast-reasoning\":{\"title\":\"Grok 4 Fast\",\"type\":\"reasoning\",\"from\":\"xai\",\"value\":\"grok-4-fast-reasoning\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"extra\":{\"fake_reasoning\":true,\"paid_user_only\":false}},\"kimi-k2\":{\"title\":\"Kimi K2\",\"type\":\"chat\",\"from\":\"moonshot\",\"value\":\"kimi-k2\",\"providers\":[\"moonshot\"],\"input_token_limit\":262144,\"output_token_limit\":30000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_kimi.png\",\"extra\":{\"disable_image_input\":true}},\"kimi-k2-thinking\":{\"title\":\"Kimi K2 Thinking\",\"type\":\"reasoning\",\"from\":\"moonshot\",\"value\":\"kimi-k2-thinking\",\"providers\":[\"moonshot\"],\"input_token_limit\":262144,\"output_token_limit\":30000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_kimi.png\",\"extra\":{\"disable_image_input\":true}},\"minimax-m2\":{\"title\":\"MiniMax M2\",\"type\":\"chat\",\"from\":\"minimax\",\"value\":\"minimax-m2\",\"providers\":[\"minimax\"],\"input_token_limit\":160000,\"output_token_limit\":8190,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_minimax.png\",\"extra\":{\"disable_image_input\":true,\"display_thinking_tag\":false,\"display_free\":false}},\"gemini-3-pro-preview\":{\"title\":\"Gemini 3 Pro\",\"type\":\"reasoning\",\"from\":\"google\",\"value\":\"gemini-3-pro-preview\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"providers\":[\"vertexai\"],\"input_token_limit\":1000000,\"output_token_limit\":64000,\"extra\":{\"fake_reasoning\":true,\"display_thinking_tag\":false,\"paid_user_only\":true}},\"grok-4-1-fast-reasoning\":{\"title\":\"Grok 4.1 Fast\",\"type\":\"reasoning\",\"from\":\"xai\",\"value\":\"grok-4-1-fast-reasoning\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"extra\":{\"fake_reasoning\":true,\"display_thinking_tag\":true,\"paid_user_only\":false}},\"gemini-3-pro-image-preview\":{\"title\":\"Nano Banana Pro\",\"type\":\"image\",\"from\":\"vertexai\",\"value\":\"gemini-3-pro-image-preview\",\"providers\":[\"vertexai\"],\"input_token_limit\":64000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_nano_banana.png\",\"extra\":{\"display_free\":false}},\"claude-4-5-opus\":{\"title\":\"Claude Opus 4.5\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-5-opus\",\"providers\":[\"anthropic\",\"bedrock\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true}},\"deepseek-chat\":{\"title\":\"DeepSeek V3.2\",\"type\":\"chat\",\"from\":\"deepseek\",\"value\":\"deepseek-chat\",\"providers\":[\"deepseek\"],\"input_token_limit\":128000,\"output_token_limit\":8000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_deepseek.png\",\"extra\":{\"disable_image_input\":true,\"prediction\":false,\"display_thinking_tag\":false}},\"doubao-seedream-4-5-251128\":{\"title\":\"Seedream 4.5\",\"type\":\"image\",\"from\":\"volcengine-fangzhou\",\"value\":\"doubao-seedream-4-5-251128\",\"providers\":[\"byteplus\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/seedream.avif\",\"extra\":{\"display_free\":false}},\"gpt-5-2\":{\"title\":\"GPT-5.2\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-2\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":128000,\"extra\":{\"disable_image_input\":false,\"display_thinking_tag\":tr"])</script><script>self.__next_f.push([1,"ue,\"paid_user_only\":false}},\"gemini-3-flash-preview\":{\"title\":\"Gemini 3 Flash\",\"type\":\"chat\",\"from\":\"google\",\"value\":\"gemini-3-flash-preview\",\"providers\":[\"vertexai\"],\"input_token_limit\":1048576,\"output_token_limit\":65535,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"extra\":{\"display_free\":true,\"display_new\":false}},\"gpt-image-1.5\":{\"title\":\"GPT Image 1.5\",\"type\":\"image\",\"from\":\"openai\",\"value\":\"gpt-image-1.5\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"kling-v2-5-turbo\":{\"title\":\"Kling video 2.5 turbo\",\"type\":\"video\",\"from\":\"kling\",\"value\":\"kling-v2-5-turbo\",\"icon_url\":\"https://cdn.gooo.ai/assets/keling.png\",\"providers\":[\"kling\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"kling-v1-6\":{\"title\":\"Kling video 1.6\",\"type\":\"video\",\"from\":\"kling\",\"value\":\"kling-v1-6\",\"icon_url\":\"https://cdn.gooo.ai/assets/keling.png\",\"providers\":[\"kling\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"seedance-1-5-pro-251215\":{\"title\":\"Seedance 1.5 Pro\",\"type\":\"video\",\"from\":\"byteplus\",\"value\":\"seedance-1-5-pro-251215\",\"icon_url\":\"https://cdn.gooo.ai/assets/seedance.png\",\"providers\":[\"byteplus\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"seedance-1-0-pro-250528\":{\"title\":\"Seedance 1.0 Pro\",\"type\":\"video\",\"from\":\"byteplus\",\"value\":\"seedance-1-0-pro-250528\",\"icon_url\":\"https://cdn.gooo.ai/assets/seedance.png\",\"providers\":[\"byteplus\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"minimax-m2-1\":{\"title\":\"MiniMax M2.1\",\"type\":\"reasoning\",\"from\":\"minimax\",\"value\":\"minimax-m2-1\",\"providers\":[\"minimax\"],\"input_token_limit\":204800,\"output_token_limit\":8190,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_minimax.png\",\"extra\":{\"disable_image_input\":true,\"display_thinking_tag\":false,\"display_free\":false}},\"glm-4.7\":{\"title\":\"GLM 4.7\",\"type\":\"reasoning\",\"from\":\"openrouter\",\"value\":\"glm-4.7\",\"providers\":[\"openrouter\"],\"input_token_limit\":200000,\"output_token_limit\":65536,\"icon_url\":\"https://cdn.gooo.ai/assets/zhipuai.png\",\"extra\":{\"display_free\":false,\"disable_image_input\":true,\"pinned_in_ask_model_list\":true}},\"claude-4-6-opus\":{\"title\":\"Claude Opus 4.6\",\"type\":\"chat\",\"from\":\"anthropic\",\"value\":\"claude-4-6-opus\",\"providers\":[\"anthropic\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true}},\"gemini-2.5-flash-image\":{\"title\":\"Nano Banana\",\"type\":\"image\",\"from\":\"vertexai\",\"value\":\"gemini-2.5-flash-image\",\"providers\":[\"vertexai\"],\"input_token_limit\":32000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_nano_banana.png\",\"extra\":{}},\"kimi-k2.5\":{\"title\":\"Kimi K2.5\",\"type\":\"reasoning\",\"from\":\"moonshot\",\"value\":\"kimi-k2.5\",\"providers\":[\"moonshot\"],\"input_token_limit\":262144,\"output_token_limit\":30000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_kimi.png\",\"extra\":{\"disable_image_input\":false}},\"claude-4-6-sonnet\":{\"title\":\"Claude Sonnet 4.6\",\"type\":\"chat\",\"from\":\"anthropic\",\"value\":\"claude-4-6-sonnet\",\"providers\":[\"anthropic\",\"bedrock\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true}},\"minimax-m2-5\":{\"title\":\"MiniMax M2.5\",\"type\":\"reasoning\",\"from\":\"minimax\",\"value\":\"minimax-m2-5\",\"providers\":[\"minimax\"],\"input_token_limit\":200000,\"output_token_limit\":8190,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_minimax.png\",\"extra\":{\"disable_image_input\":true,\"display_thinking_tag\":false,\"display_free\":false,\"fake_reasoning\":false,\"pinned_in_ask_model_list\":true}},\"gemini-3.1-pro-preview\":{\"title\":\"Gemini 3.1 Pro\",\"type\":\"reasoning\",\"from\":\"google\",\"value\":\"gemini-3.1-pro-preview\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"providers\":[\"vertexai\"],\"input_token_limit\":1048576,\"output_token_limit\":65536,\"extra\":{\"fake_reason"])</script><script>self.__next_f.push([1,"ing\":true,\"display_thinking_tag\":false,\"paid_user_only\":false,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true}},\"gemini-3.1-flash-image-preview\":{\"title\":\"Nano Banana 2\",\"type\":\"image\",\"from\":\"vertexai\",\"value\":\"gemini-3.1-flash-image-preview\",\"providers\":[\"vertexai\"],\"input_token_limit\":64000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_nano_banana.png\",\"extra\":{\"display_free\":false}},\"qwen-image-2.0\":{\"title\":\"Qwen Image 2.0\",\"type\":\"image\",\"from\":\"qwen\",\"value\":\"qwen-image-2.0\",\"providers\":[\"aliyun\"],\"input_token_limit\":1000000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\",\"extra\":{}},\"qwen-image-2.0-pro\":{\"title\":\"Qwen Image 2.0 Pro\",\"type\":\"image\",\"from\":\"qwen\",\"value\":\"qwen-image-2.0-pro\",\"providers\":[\"aliyun\"],\"input_token_limit\":1000000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\",\"extra\":{}},\"gpt-5.3-chat-latest\":{\"title\":\"GPT-5.3\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-5.3-chat-latest\",\"providers\":[\"openai\"],\"input_token_limit\":400000,\"output_token_limit\":128000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"gemini-3.1-flash-lite-preview\":{\"title\":\"Gemini 3 Flash Lite\",\"type\":\"reasoning\",\"from\":\"google\",\"value\":\"gemini-3.1-flash-lite-preview\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"providers\":[\"vertexai\"],\"input_token_limit\":1000000,\"output_token_limit\":64000,\"extra\":{\"fake_reasoning\":true,\"display_thinking_tag\":false,\"paid_user_only\":false}},\"gpt-5-4\":{\"title\":\"GPT-5.4\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-4\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":272000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":true,\"display_thinking_tag\":false}},\"grok-imagine-video\":{\"title\":\"Grok Imagine Video\",\"type\":\"video\",\"from\":\"xai\",\"value\":\"grok-imagine-video\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"extra\":{\"paid_user_only\":true}},\"seedream-5-0-lite-260128\":{\"title\":\"Seedream 5.0 Lite\",\"type\":\"image\",\"from\":\"volcengine-fangzhou\",\"value\":\"seedream-5-0-lite-260128\",\"providers\":[\"byteplus\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/seedream.avif\",\"extra\":{\"display_free\":false}},\"doubao-seedance-2-0-260128\":{\"title\":\"Seedance 2.0\",\"type\":\"video\",\"from\":\"byteplus\",\"value\":\"doubao-seedance-2-0-260128\",\"icon_url\":\"https://cdn.gooo.ai/assets/seedance.png\",\"providers\":[\"byteplus\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"doubao-seedance-2-0-fast-260128\":{\"title\":\"Seedance 2.0 Fast\",\"type\":\"video\",\"from\":\"byteplus\",\"value\":\"doubao-seedance-2-0-fast-260128\",\"icon_url\":\"https://cdn.gooo.ai/assets/seedance.png\",\"providers\":[\"byteplus\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"claude-4-7-opus\":{\"title\":\"Claude Opus 4.7\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-7-opus\",\"providers\":[\"anthropic\",\"bedrock\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true,\"display_thinking_tag\":false}},\"kimi-k2.6\":{\"title\":\"Kimi K2.6\",\"type\":\"reasoning\",\"from\":\"moonshot\",\"value\":\"kimi-k2.6\",\"providers\":[\"moonshot\"],\"input_token_limit\":262144,\"output_token_limit\":30000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_kimi.png\",\"extra\":{\"disable_image_input\":false,\"paid_user_only\":false,\"pinned_in_ask_model_list\":true}},\"gpt-image-2-2026-04-21\":{\"title\":\"GPT Image 2\",\"type\":\"image\",\"from\":\"openai\",\"value\":\"gpt-image-2-2026-04-21\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{}},\"gpt-5-5\":{\"title\":\"GPT-5.5\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-5\",\"providers\":[\"openai\",\"aihubmix\",\"azure\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url"])</script><script>self.__next_f.push([1,"\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":true,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":false}},\"deepseek-v4-pro\":{\"title\":\"DeepSeek V4 Pro\",\"type\":\"reasoning\",\"from\":\"deepseek\",\"value\":\"deepseek-v4-pro\",\"providers\":[\"deepseek\"],\"input_token_limit\":200000,\"output_token_limit\":32000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_deepseek.png\",\"extra\":{\"disable_image_input\":true,\"prediction\":false,\"display_thinking_tag\":false,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true}},\"deepseek-v4-flash\":{\"title\":\"DeepSeek V4 Flash\",\"type\":\"reasoning\",\"from\":\"deepseek\",\"value\":\"deepseek-v4-flash\",\"providers\":[\"deepseek\"],\"input_token_limit\":200000,\"output_token_limit\":32000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_deepseek.png\",\"extra\":{\"disable_image_input\":true,\"prediction\":false,\"display_thinking_tag\":false}},\"gemini-3.1-flash-tts\":{\"title\":\"Gemini 3.1 Flash TTS\",\"type\":\"tts\",\"from\":\"google\",\"value\":\"gemini-3.1-flash-tts\",\"providers\":[\"google\",\"vertexai\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"extra\":{}},\"veo-3.1-generate-001\":{\"title\":\"Veo 3.1\",\"type\":\"video\",\"from\":\"google\",\"value\":\"veo-3.1-generate-001\",\"icon_url\":\"https://cdn.gooo.ai/assets/gemini-detail-icon.png\",\"input_token_limit\":128000,\"output_token_limit\":8192,\"providers\":[\"vertexai\"],\"extra\":{}},\"veo-3.1-fast-generate-001\":{\"title\":\"Veo 3.1 Fast\",\"type\":\"video\",\"from\":\"google\",\"value\":\"veo-3.1-fast-generate-001\",\"icon_url\":\"https://cdn.gooo.ai/assets/gemini-detail-icon.png\",\"input_token_limit\":128000,\"output_token_limit\":8192,\"providers\":[\"vertexai\"],\"extra\":{}},\"happyhorse-1.0\":{\"title\":\"HappyHorse 1.0\",\"type\":\"video\",\"from\":\"qwen\",\"value\":\"happyhorse-1.0\",\"providers\":[\"aliyun\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/model-icons/happyhorse-1.0.png\",\"extra\":{}},\"gemini-3.5-flash\":{\"title\":\"Gemini 3.5 Flash\",\"type\":\"reasoning\",\"from\":\"google\",\"value\":\"gemini-3.5-flash\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"providers\":[\"vertexai\"],\"input_token_limit\":1048576,\"output_token_limit\":65536,\"extra\":{\"fake_reasoning\":false,\"display_thinking_tag\":false,\"paid_user_only\":true,\"display_free\":false,\"pinned_in_ask_model_list\":true}},\"claude-4-8-opus\":{\"title\":\"Claude Opus 4.8\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-8-opus\",\"providers\":[\"anthropic\",\"bedrock\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true,\"display_thinking_tag\":false,\"pinned_in_ask_model_list\":false,\"pinned_in_agent_model_list\":false}},\"claude-fable-5\":{\"title\":\"Claude Fable 5\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-fable-5\",\"providers\":[\"anthropic\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true,\"display_thinking_tag\":false,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true}},\"sensenova-u1-fast\":{\"title\":\"SenseNova U1 Fast\",\"type\":\"image\",\"from\":\"sensenova\",\"value\":\"sensenova-u1-fast\",\"icon_url\":\"https://cdn.gooo.ai/user-files/6ef99d77cb2a12a53e414af39ff7cc536d3bbdfa256fa6323362e3e3edadd36a\",\"providers\":[\"sensenova\"],\"input_token_limit\":0,\"output_token_limit\":0,\"extra\":{\"disable_image_input\":true,\"display_free\":true}},\"gpt-5-4-mini\":{\"title\":\"GPT-5.4 Mini\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-4-mini\",\"providers\":[\"openai\",\"aihubmix\",\"azure\"],\"input_token_limit\":400000,\"output_token_limit\":128000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":true}},\"recraftv4_1\":{\"title\":\"Recraft 4.1\",\"type\":\"image\",\"from\":\"recraft\",\"value\":\"recraftv4_1\",\"icon_url\":\"https://cdn.gooo.ai/assets/recraft-icon.png\",\"providers\":[\"recraft\"],\"input_token_limit\":0,\"output_token_limit\":0,\"extra\":{}},\"doubao-seed-2-1-pro-preview\":{\"title\":\"Doubao Seed 2.1 Pro\",\"type\":\"chat\",\"from\":\"doubao\",\"value\":\"doubao"])</script><script>self.__next_f.push([1,"-seed-2-1-pro-preview\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_doubao.png\",\"providers\":[\"volcengine-fangzhou\"],\"input_token_limit\":262144,\"output_token_limit\":32768,\"extra\":{\"display_free\":false,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":false}},\"glm-5.2\":{\"title\":\"GLM 5.2\",\"type\":\"reasoning\",\"from\":\"openrouter\",\"value\":\"glm-5.2\",\"providers\":[\"zai\"],\"input_token_limit\":200000,\"output_token_limit\":65536,\"icon_url\":\"https://cdn.gooo.ai/assets/zhipuai.png\",\"extra\":{\"display_free\":false,\"disable_image_input\":true,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true}},\"gemini-3.1-flash-lite-image\":{\"title\":\"Nano Banana 2 Lite\",\"type\":\"image\",\"from\":\"vertexai\",\"value\":\"gemini-3.1-flash-lite-image\",\"providers\":[\"vertexai\"],\"input_token_limit\":64000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_nano_banana.png\",\"extra\":{\"display_free\":false}},\"seed-audio-1.0\":{\"title\":\"Seed Audio 1.0\",\"type\":\"tts\",\"from\":\"doubao\",\"value\":\"seed-audio-1.0\",\"providers\":[\"byteplus\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_doubao.png\",\"extra\":{}},\"claude-sonnet-5\":{\"title\":\"Claude Sonnet 5\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-sonnet-5\",\"providers\":[\"bedrock\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true,\"display_thinking_tag\":false,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true}},\"dola-seedream-5-0-pro-260628\":{\"title\":\"Seedream 5.0 Pro\",\"type\":\"image\",\"from\":\"volcengine-fangzhou\",\"value\":\"dola-seedream-5-0-pro-260628\",\"providers\":[\"byteplus\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/seedream.avif\",\"extra\":{\"display_free\":false}},\"gpt-5-6-sol\":{\"title\":\"GPT-5.6 Sol\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-6-sol\",\"providers\":[\"openai\",\"aihubmix\",\"azure\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":true,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true,\"display_new\":false}},\"gpt-5-6-luna\":{\"title\":\"GPT-5.6 Luna\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-6-luna\",\"providers\":[\"openai\",\"aihubmix\",\"azure\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":true,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true,\"display_new\":false}},\"gpt-5-6-terra\":{\"title\":\"GPT-5.6 Terra\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-6-terra\",\"providers\":[\"openai\",\"aihubmix\",\"azure\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":true,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true,\"display_free\":false,\"display_new\":false}},\"wan2.7-image-pro\":{\"title\":\"Wan 2.7 Image Pro\",\"type\":\"image\",\"from\":\"qwen\",\"value\":\"wan2.7-image-pro\",\"providers\":[\"aliyun\"],\"input_token_limit\":1000000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\",\"extra\":{}},\"doubao-seed-evolving\":{\"title\":\"Doubao Seed Evolving\",\"type\":\"chat\",\"from\":\"doubao\",\"value\":\"doubao-seed-evolving\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_doubao.png\",\"providers\":[\"volcengine-fangzhou\"],\"input_token_limit\":524288,\"output_token_limit\":65536,\"extra\":{\"display_free\":false,\"pinned_in_ask_model_list\":false,\"pinned_in_agent_model_list\":false,\"paid_user_only\":true}},\"kimi-k3\":{\"title\":\"Kimi K3\",\"type\":\"reasoning\",\"from\":\"moonshot\",\"value\":\"kimi-k3\",\"providers\":[\"moonshot\"],\"input_token_limit\":262144,\"output_token_limit\":30000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_kimi.png\",\"extra\":{\"disable_image_input\":false,\"paid_user_only\":true,\"pinned_in_ask_model_list\":true,\"pinned_in_agent_model_list\":true,\"display_new\":true}}},\"PUBLIC_NEW_TASK_PROMPT_EXAMPLES\":{\"learn\":[{\"id\":\"learnPrompts.p1\",\"name\":{\"en-US\":"])</script><script>self.__next_f.push([1,"\"Nolan's new movie shot entirely on IMAX and why?\",\"zh-CN\":\"诺兰的新电影全程用 IMAX 拍摄了吗?为什么?\",\"zh-TW\":\"諾蘭的新電影全程用 IMAX 拍攝了嗎?為什麼?\",\"ja-JP\":\"ノーランの新作映画は全編IMAXで撮影されたのか、そしてその理由は?\",\"ko-KR\":\"놀란의 새 영화는 전부 IMAX로 촬영되었고, 그 이유는 무엇인가요?\",\"fr-FR\":\"Le nouveau film de Nolan a-t-il été entièrement tourné en IMAX, et pourquoi ?\",\"de-DE\":\"Wurde Nolans neuer Film vollständig in IMAX gedreht, und warum?\",\"es-ES\":\"¿La nueva película de Nolan se rodó íntegramente en IMAX y por qué?\",\"es-419\":\"¿La nueva película de Nolan se filmó completamente en IMAX y por qué?\",\"pt-BR\":\"O novo filme de Nolan foi filmado inteiramente em IMAX e por quê?\",\"pt-PT\":\"O novo filme de Nolan foi filmado inteiramente em IMAX e porquê?\",\"it-IT\":\"Il nuovo film di Nolan è stato girato interamente in IMAX e perché?\",\"tr-TR\":\"Nolan'ın yeni filmi tamamen IMAX ile mi çekildi ve neden?\",\"vi-VN\":\"Phim mới của Nolan có được quay hoàn toàn bằng IMAX không, và vì sao?\",\"th-TH\":\"ภาพยนตร์ใหม่ของโนแลนถ่ายทำทั้งหมดด้วย IMAX หรือไม่ และเพราะอะไร?\",\"hi-IN\":\"क्या नोलन की नई फिल्म पूरी तरह IMAX पर शूट की गई है, और क्यों?\"},\"prompt\":{\"en-US\":\"Nolan's new movie shot entirely on IMAX and why?\",\"zh-CN\":\"诺兰的新电影全程用 IMAX 拍摄了吗?为什么?\",\"zh-TW\":\"諾蘭的新電影全程用 IMAX 拍攝了嗎?為什麼?\",\"ja-JP\":\"ノーランの新作映画は全編IMAXで撮影されたのか、そしてその理由は?\",\"ko-KR\":\"놀란의 새 영화는 전부 IMAX로 촬영되었고, 그 이유는 무엇인가요?\",\"fr-FR\":\"Le nouveau film de Nolan a-t-il été entièrement tourné en IMAX, et pourquoi ?\",\"de-DE\":\"Wurde Nolans neuer Film vollständig in IMAX gedreht, und warum?\",\"es-ES\":\"¿La nueva película de Nolan se rodó íntegramente en IMAX y por qué?\",\"es-419\":\"¿La nueva película de Nolan se filmó completamente en IMAX y por qué?\",\"pt-BR\":\"O novo filme de Nolan foi filmado inteiramente em IMAX e por quê?\",\"pt-PT\":\"O novo filme de Nolan foi filmado inteiramente em IMAX e porquê?\",\"it-IT\":\"Il nuovo film di Nolan è stato girato interamente in IMAX e perché?\",\"tr-TR\":\"Nolan'ın yeni filmi tamamen IMAX ile mi çekildi ve neden?\",\"vi-VN\":\"Phim mới của Nolan có được quay hoàn toàn bằng IMAX không, và vì sao?\",\"th-TH\":\"ภาพยนตร์ใหม่ของโนแลนถ่ายทำทั้งหมดด้วย IMAX หรือไม่ และเพราะอะไร?\",\"hi-IN\":\"क्या नोलन की नई फिल्म पूरी तरह IMAX पर शूट की गई है, और क्यों?\"},\"imageUrl\":\"https://cdn.gooo.ai/web-images/f62f54e8b96c245d246cbc7e49f57fa892d701c5ec3f0fd38bf0fe13c98f3686\"},{\"id\":\"learnPrompts.p2\",\"name\":{\"en-US\":\"Will UK banning the under-16 from social media work?\",\"zh-CN\":\"英国禁止 16 岁以下人群使用社交媒体会奏效吗?\",\"zh-TW\":\"英國禁止 16 歲以下族群使用社群媒體會奏效嗎?\",\"ja-JP\":\"英国が16歳未満のSNS利用を禁止したら効果はあるのか?\",\"ko-KR\":\"영국의 16세 미만 소셜 미디어 금지는 효과가 있을까요?\",\"fr-FR\":\"L’interdiction des réseaux sociaux aux moins de 16 ans au Royaume-Uni fonctionnera-t-elle ?\",\"de-DE\":\"Wird das britische Social-Media-Verbot für unter 16-Jährige funktionieren?\",\"es-ES\":\"¿Funcionará la prohibición del Reino Unido de las redes sociales para menores de 16 años?\",\"es-419\":\"¿Funcionará la prohibición del Reino Unido de las redes sociales para menores de 16 años?\",\"pt-BR\":\"A proibição do Reino Unido às redes sociais para menores de 16 anos vai funcionar?\",\"pt-PT\":\"A proibição do Reino Unido das redes sociais para menores de 16 anos vai funcionar?\",\"it-IT\":\"Il d"])</script><script>self.__next_f.push([1,"ivieto del Regno Unito sui social media per i minori di 16 anni funzionerà?\",\"tr-TR\":\"Birleşik Krallık'ın 16 yaş altına sosyal medya yasağı işe yarayacak mı?\",\"vi-VN\":\"Lệnh cấm mạng xã hội đối với người dưới 16 tuổi ở Anh có hiệu quả không?\",\"th-TH\":\"การที่สหราชอาณาจักรห้ามผู้ที่อายุต่ำกว่า 16 ปีใช้โซเชียลมีเดียจะได้ผลหรือไม่?\",\"hi-IN\":\"क्या ब्रिटेन में 16 साल से कम उम्र वालों पर सोशल मीडिया प्रतिबंध काम करेगा?\"},\"prompt\":{\"en-US\":\"Will UK banning the under-16 from social media work?\",\"zh-CN\":\"英国禁止 16 岁以下人群使用社交媒体会奏效吗?\",\"zh-TW\":\"英國禁止 16 歲以下族群使用社群媒體會奏效嗎?\",\"ja-JP\":\"英国が16歳未満のSNS利用を禁止したら効果はあるのか?\",\"ko-KR\":\"영국의 16세 미만 소셜 미디어 금지는 효과가 있을까요?\",\"fr-FR\":\"L’interdiction des réseaux sociaux aux moins de 16 ans au Royaume-Uni fonctionnera-t-elle ?\",\"de-DE\":\"Wird das britische Social-Media-Verbot für unter 16-Jährige funktionieren?\",\"es-ES\":\"¿Funcionará la prohibición del Reino Unido de las redes sociales para menores de 16 años?\",\"es-419\":\"¿Funcionará la prohibición del Reino Unido de las redes sociales para menores de 16 años?\",\"pt-BR\":\"A proibição do Reino Unido às redes sociais para menores de 16 anos vai funcionar?\",\"pt-PT\":\"A proibição do Reino Unido das redes sociais para menores de 16 anos vai funcionar?\",\"it-IT\":\"Il divieto del Regno Unito sui social media per i minori di 16 anni funzionerà?\",\"tr-TR\":\"Birleşik Krallık'ın 16 yaş altına sosyal medya yasağı işe yarayacak mı?\",\"vi-VN\":\"Lệnh cấm mạng xã hội đối với người dưới 16 tuổi ở Anh có hiệu quả không?\",\"th-TH\":\"การที่สหราชอาณาจักรห้ามผู้ที่อายุต่ำกว่า 16 ปีใช้โซเชียลมีเดียจะได้ผลหรือไม่?\",\"hi-IN\":\"क्या ब्रिटेन में 16 साल से कम उम्र वालों पर सोशल मीडिया प्रतिबंध काम करेगा?\"},\"imageUrl\":\"https://cdn.gooo.ai/web-images/6c536ea7cfbd5dc843039ec04074b945e1f0ce5ed1f95bd09b5cb0499762e022\"},{\"id\":\"learnPrompts.p3\",\"name\":{\"en-US\":\"The US won their 1st World Cup knockout game in 24 years.\",\"zh-CN\":\"美国队赢得了 24 年来首场世界杯淘汰赛。\",\"zh-TW\":\"美國隊贏得了 24 年來首場世界盃淘汰賽。\",\"ja-JP\":\"米国代表が24年ぶりにワールドカップの決勝トーナメントで勝利しました。\",\"ko-KR\":\"미국 대표팀이 24년 만에 월드컵 토너먼트 경기에서 승리했습니다.\",\"fr-FR\":\"Les États-Unis ont remporté leur premier match à élimination directe de Coupe du monde en 24 ans.\",\"de-DE\":\"Die USA haben ihr erstes K.-o.-Spiel bei einer Weltmeisterschaft seit 24 Jahren gewonnen.\",\"es-ES\":\"Estados Unidos ganó su primer partido eliminatorio de un Mundial en 24 años.\",\"es-419\":\"Estados Unidos ganó su primer partido de eliminación directa en una Copa del Mundo en 24 años.\",\"pt-BR\":\"Os EUA venceram seu primeiro jogo de mata-mata em uma Copa do Mundo em 24 anos.\",\"pt-PT\":\"Os EUA venceram o seu primeiro jogo a eliminar num Mundial em 24 anos.\",\"it-IT\":\"Gli Stati Uniti hanno vinto la loro prima partita a eliminazione diretta in un Mondiale dopo 24 anni.\",\"tr-TR\":\"ABD, 24 yıl sonra ilk Dünya Kupası eleme turu maçını kazandı.\",\"vi-VN\":\"Đội tuyển Mỹ đã thắng trận đấu loại trực tiếp World Cup đầu tiên sau 24 năm.\",\"th-TH\":\"สหรัฐฯ ชนะเกมรอบน็อกเอาต์ฟุตบอลโลกครั้งแรกในรอบ 24 ปี\",\"hi-IN\":\"अमेरिका ने 24 वर्षों म"])</script><script>self.__next_f.push([1,"ें अपना पहला विश्व कप नॉकआउट मैच जीता।\"},\"prompt\":{\"en-US\":\"The US won their 1st World Cup knockout game in 24 years.\",\"zh-CN\":\"美国队赢得了 24 年来首场世界杯淘汰赛。\",\"zh-TW\":\"美國隊贏得了 24 年來首場世界盃淘汰賽。\",\"ja-JP\":\"米国代表が24年ぶりにワールドカップの決勝トーナメントで勝利しました。\",\"ko-KR\":\"미국 대표팀이 24년 만에 월드컵 토너먼트 경기에서 승리했습니다.\",\"fr-FR\":\"Les États-Unis ont remporté leur premier match à élimination directe de Coupe du monde en 24 ans.\",\"de-DE\":\"Die USA haben ihr erstes K.-o.-Spiel bei einer Weltmeisterschaft seit 24 Jahren gewonnen.\",\"es-ES\":\"Estados Unidos ganó su primer partido eliminatorio de un Mundial en 24 años.\",\"es-419\":\"Estados Unidos ganó su primer partido de eliminación directa en una Copa del Mundo en 24 años.\",\"pt-BR\":\"Os EUA venceram seu primeiro jogo de mata-mata em uma Copa do Mundo em 24 anos.\",\"pt-PT\":\"Os EUA venceram o seu primeiro jogo a eliminar num Mundial em 24 anos.\",\"it-IT\":\"Gli Stati Uniti hanno vinto la loro prima partita a eliminazione diretta in un Mondiale dopo 24 anni.\",\"tr-TR\":\"ABD, 24 yıl sonra ilk Dünya Kupası eleme turu maçını kazandı.\",\"vi-VN\":\"Đội tuyển Mỹ đã thắng trận đấu loại trực tiếp World Cup đầu tiên sau 24 năm.\",\"th-TH\":\"สหรัฐฯ ชนะเกมรอบน็อกเอาต์ฟุตบอลโลกครั้งแรกในรอบ 24 ปี\",\"hi-IN\":\"अमेरिका ने 24 वर्षों में अपना पहला विश्व कप नॉकआउट मैच जीता।\"},\"imageUrl\":\"https://cdn.gooo.ai/web-images/e86a2035ec4e7317d1ae7077925cdc9293c6a6f9ae8114f4829c41e9ff54de88\"}],\"write\":[{\"id\":\"writePrompts.p1\",\"name\":{\"en-US\":\"Fable 5 is back, and what's next?\",\"zh-CN\":\"Fable 5 回归了,接下来会怎样?\",\"zh-TW\":\"Fable 5 回歸了,接下來會怎樣?\",\"ja-JP\":\"Fable 5 が復活、次はどうなる?\",\"ko-KR\":\"Fable 5가 돌아왔습니다. 다음은 무엇일까요?\",\"fr-FR\":\"Fable 5 est de retour, et quelle est la suite ?\",\"de-DE\":\"Fable 5 ist zurück, und was kommt als Nächstes?\",\"es-ES\":\"Fable 5 ha vuelto, ¿y ahora qué?\",\"es-419\":\"Fable 5 está de vuelta, ¿y qué sigue?\",\"pt-BR\":\"Fable 5 está de volta, e o que vem a seguir?\",\"pt-PT\":\"Fable 5 está de volta, e o que se segue?\",\"it-IT\":\"Fable 5 è tornato, e cosa succede ora?\",\"tr-TR\":\"Fable 5 geri döndü, peki sırada ne var?\",\"vi-VN\":\"Fable 5 đã trở lại, và điều gì sẽ đến tiếp theo?\",\"th-TH\":\"Fable 5 กลับมาแล้ว แล้วต่อไปจะเป็นอย่างไร?\",\"hi-IN\":\"Fable 5 वापस आ गया है, और आगे क्या होगा?\"},\"prompt\":{\"en-US\":\"Fable 5 is back, and what's next?\",\"zh-CN\":\"Fable 5 回归了,接下来会怎样?\",\"zh-TW\":\"Fable 5 回歸了,接下來會怎樣?\",\"ja-JP\":\"Fable 5 が復活、次はどうなる?\",\"ko-KR\":\"Fable 5가 돌아왔습니다. 다음은 무엇일까요?\",\"fr-FR\":\"Fable 5 est de retour, et quelle est la suite ?\",\"de-DE\":\"Fable 5 ist zurück, und was kommt als Nächstes?\",\"es-ES\":\"Fable 5 ha vuelto, ¿y ahora qué?\",\"es-419\":\"Fable 5 está de vuelta, ¿y qué sigue?\",\"pt-BR\":\"Fable 5 está de volta, e o que vem a seguir?\",\"pt-PT\":\"Fable 5 está de volta, e o que se segue?\",\"it-IT\":\"Fable 5 è tornato, e cosa succede ora?\",\"tr-TR\":\"Fable 5 geri döndü, peki sırada ne var?\",\"vi-VN\":\"Fable 5 đã trở lại, và điều gì sẽ đến tiếp theo?\",\"th-TH\":\"Fable 5 กลับมาแล้ว แล้วต่อไปจะเป็นอย่างไร?\",\"hi-IN\":\"Fable 5 वापस आ गया है, और आगे क्या होगा?\"},\"imageUrl\":\"https://cdn.gooo.ai/web-images/59cdadbc66521503fe94ba2c7fa8efa19ba87fbe4fbf51060224d9806b680a56\"},{\"id\":\"writePrompts.p2\",\"name\":{\"en-US\":\"The US turned 250, but no one cares.\",\"zh-CN\":\"美国迎来建国 250 周年"])</script><script>self.__next_f.push([1,",但似乎没人关心。\",\"zh-TW\":\"美國迎來建國 250 週年,但似乎沒人關心。\",\"ja-JP\":\"アメリカ建国250周年なのに、誰も気にしていない。\",\"ko-KR\":\"미국 건국 250주년이 되었지만 아무도 관심이 없습니다.\",\"fr-FR\":\"Les États-Unis ont eu 250 ans, mais personne ne s'en soucie.\",\"de-DE\":\"Die USA sind 250 Jahre alt geworden, aber niemanden interessiert es.\",\"es-ES\":\"Estados Unidos cumplió 250 años, pero a nadie le importa.\",\"es-419\":\"Estados Unidos cumplió 250 años, pero a nadie le importa.\",\"pt-BR\":\"Os EUA fizeram 250 anos, mas ninguém se importa.\",\"pt-PT\":\"Os EUA fizeram 250 anos, mas ninguém se importa.\",\"it-IT\":\"Gli Stati Uniti hanno compiuto 250 anni, ma a nessuno importa.\",\"tr-TR\":\"ABD 250 yaşına girdi ama kimse umursamıyor.\",\"vi-VN\":\"Nước Mỹ tròn 250 tuổi, nhưng chẳng ai quan tâm.\",\"th-TH\":\"สหรัฐฯ มีอายุครบ 250 ปีแล้ว แต่ดูเหมือนไม่มีใครสนใจ\",\"hi-IN\":\"अमेरिका 250 साल का हो गया, लेकिन किसी को परवाह नहीं है।\"},\"prompt\":{\"en-US\":\"The US turned 250, but no one cares.\",\"zh-CN\":\"美国迎来建国 250 周年,但似乎没人关心。\",\"zh-TW\":\"美國迎來建國 250 週年,但似乎沒人關心。\",\"ja-JP\":\"アメリカ建国250周年なのに、誰も気にしていない。\",\"ko-KR\":\"미국 건국 250주년이 되었지만 아무도 관심이 없습니다.\",\"fr-FR\":\"Les États-Unis ont eu 250 ans, mais personne ne s'en soucie.\",\"de-DE\":\"Die USA sind 250 Jahre alt geworden, aber niemanden interessiert es.\",\"es-ES\":\"Estados Unidos cumplió 250 años, pero a nadie le importa.\",\"es-419\":\"Estados Unidos cumplió 250 años, pero a nadie le importa.\",\"pt-BR\":\"Os EUA fizeram 250 anos, mas ninguém se importa.\",\"pt-PT\":\"Os EUA fizeram 250 anos, mas ninguém se importa.\",\"it-IT\":\"Gli Stati Uniti hanno compiuto 250 anni, ma a nessuno importa.\",\"tr-TR\":\"ABD 250 yaşına girdi ama kimse umursamıyor.\",\"vi-VN\":\"Nước Mỹ tròn 250 tuổi, nhưng chẳng ai quan tâm.\",\"th-TH\":\"สหรัฐฯ มีอายุครบ 250 ปีแล้ว แต่ดูเหมือนไม่มีใครสนใจ\",\"hi-IN\":\"अमेरिका 250 साल का हो गया, लेकिन किसी को परवाह नहीं है।\"},\"imageUrl\":\"https://cdn.gooo.ai/web-images/dac2eccd065731e2162f120121bb9dc5d862e4af69d311ffc432819ddc0cdd47\"},{\"id\":\"writePrompts.p3\",\"name\":{\"en-US\":\"Threads hit 500M and almost caught up to X, but really?\",\"zh-CN\":\"Threads 用户数达到 5 亿,几乎追上 X,但真是这样吗?\",\"zh-TW\":\"Threads 用戶數達到 5 億,幾乎追上 X,但真是這樣嗎?\",\"ja-JP\":\"Threadsは5億人に到達し、Xにほぼ追いついた。でも本当に?\",\"ko-KR\":\"Threads가 5억 명을 돌파하고 X를 거의 따라잡았다는데, 정말일까요?\",\"fr-FR\":\"Threads a atteint 500 millions d'utilisateurs et aurait presque rattrapé X, mais est-ce vraiment le cas ?\",\"de-DE\":\"Threads hat 500 Millionen Nutzer erreicht und X fast eingeholt, aber stimmt das wirklich?\",\"es-ES\":\"Threads alcanzó los 500 millones y casi alcanzó a X, ¿pero de verdad?\",\"es-419\":\"Threads llegó a 500 millones y casi alcanzó a X, ¿pero realmente?\",\"pt-BR\":\"Threads chegou a 500 milhões e quase alcançou o X, mas será mesmo?\",\"pt-PT\":\"Threads chegou aos 500 milhões e quase alcançou o X, mas será mesmo?\",\"it-IT\":\"Threads ha raggiunto i 500 milioni e ha quasi raggiunto X, ma è davvero così?\",\"tr-TR\":\"Threads 500 milyona ulaştı ve neredeyse X'i yakaladı, ama gerçekten öyle mi?\",\"vi-VN\":\"Threads đạt 500 triệu và gần như bắt kịp X, nhưng có thật vậy không?\",\"th-TH\":\"Threads มีผู้ใช้ถึง 500 ล้านและเกือบไล่ทัน X แล้ว แต่จริงหรือ?\",\"hi-IN\":\"Threads 500 मिलियन तक पहुंच गया और लगभग X की बराबरी "])</script><script>self.__next_f.push([1,"कर ली, लेकिन क्या सच में?\"},\"prompt\":{\"en-US\":\"Threads hit 500M and almost caught up to X, but really?\",\"zh-CN\":\"Threads 用户数达到 5 亿,几乎追上 X,但真是这样吗?\",\"zh-TW\":\"Threads 用戶數達到 5 億,幾乎追上 X,但真是這樣嗎?\",\"ja-JP\":\"Threadsは5億人に到達し、Xにほぼ追いついた。でも本当に?\",\"ko-KR\":\"Threads가 5억 명을 돌파하고 X를 거의 따라잡았다는데, 정말일까요?\",\"fr-FR\":\"Threads a atteint 500 millions d'utilisateurs et aurait presque rattrapé X, mais est-ce vraiment le cas ?\",\"de-DE\":\"Threads hat 500 Millionen Nutzer erreicht und X fast eingeholt, aber stimmt das wirklich?\",\"es-ES\":\"Threads alcanzó los 500 millones y casi alcanzó a X, ¿pero de verdad?\",\"es-419\":\"Threads llegó a 500 millones y casi alcanzó a X, ¿pero realmente?\",\"pt-BR\":\"Threads chegou a 500 milhões e quase alcançou o X, mas será mesmo?\",\"pt-PT\":\"Threads chegou aos 500 milhões e quase alcançou o X, mas será mesmo?\",\"it-IT\":\"Threads ha raggiunto i 500 milioni e ha quasi raggiunto X, ma è davvero così?\",\"tr-TR\":\"Threads 500 milyona ulaştı ve neredeyse X'i yakaladı, ama gerçekten öyle mi?\",\"vi-VN\":\"Threads đạt 500 triệu và gần như bắt kịp X, nhưng có thật vậy không?\",\"th-TH\":\"Threads มีผู้ใช้ถึง 500 ล้านและเกือบไล่ทัน X แล้ว แต่จริงหรือ?\",\"hi-IN\":\"Threads 500 मिलियन तक पहुंच गया और लगभग X की बराबरी कर ली, लेकिन क्या सच में?\"},\"imageUrl\":\"https://cdn.gooo.ai/web-images/418735359afbc15c837b1e7cf01e11f13a915a59739cf5bac66f707331adf888\"}]},\"PUBLIC_NEW_TASK_RECOMMENDED_SKILLS\":[\"019eba30-3dae-7fca-a753-7bf95e9d56bc\"],\"PUBLIC_OFFLINE_WEB_PACKAGES\":[{\"name\":\"youweb\",\"url\":\"https://cdn.gooo.ai/offline-packages/production/youweb/5eee8b1f2e/5eee8b1f2e.zip\",\"shasum\":\"e73e6c25bd2aff5d3043a287135088f1b1dd6b8b58b635c1271f779bb9ae7f98\"}],\"PUBLIC_PRODUCT_TIER_LIMITS\":{\"free\":{\"file_size\":10485760,\"video_file_size\":0},\"pro\":{\"file_size\":104857600,\"video_file_size\":524288000},\"max\":{\"file_size\":524288000,\"video_file_size\":1073741824}},\"PUBLIC_PRODUCT_TIER_QUOTAS\":{\"free\":{\"storage\":107374182400,\"new_snip\":100,\"nano_banana_pro\":2,\"image_generation\":2,\"ppt_generate\":1},\"pro\":{\"storage\":107374182400},\"max\":{\"storage\":107374182400}},\"PUBLIC_SPRITE_MODELS\":[\"deepseek-v4-pro\",\"claude-4-6-opus\",\"gemini-3.1-pro-preview\"],\"PUBLIC_TOOL_AS_SKILL\":{\"learn\":{\"skillId\":\"019c274d-217c-71f8-ba62-770abf25c4a6\"},\"research\":{\"skillId\":\"019c2855-1439-71b5-8699-936ec99b13c7\"},\"write\":{\"skillId\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\"},\"proxyWrite\":{\"skillId\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\"},\"generateWebpage\":{\"skillId\":\"019c3256-2b1a-70c2-befb-eb606c2cee8c\"},\"imageGenerate\":{\"skillId\":\"019c4d56-f23a-78a7-9ebb-af41b8993a0e\"},\"slidesGenerate\":{\"skillId\":\"019c4d57-c814-7c20-8ee3-94ed9d19a2c6\"},\"dispatchArticle\":{\"skillId\":\"019d966e-8bdd-7238-9047-065b3e9f7344\"},\"videoGenerate\":{\"skillId\":\"019d4d32-6768-7b4c-a44a-e44789260a9f\"}},\"PUBLIC_TURNSTILE_EMAIL_WHITELIST_DOMAINS\":[\"gmail.com\",\"googlemail.com\",\"qq.com\",\"vip.qq.com\",\"foxmail.com\",\"163.com\",\"126.com\",\"vip.163.com\",\"yeah.net\",\"139.com\",\"189.cn\",\"sina.com\",\"aliyun.com\",\"icloud.com\",\"me.com\",\"mac.com\",\"privaterelay.appleid.com\",\"yahoo.com\",\"proton.me\",\"protonmail.com\",\"pm.me\",\"edu\",\"edu.cn\",\"edu.tw\",\"edu.hk\",\"ac.cn\",\"ac.uk\",\"ac.jp\",\"ac.kr\",\"ac.id\",\"gov.cn\",\"go.id\",\"wanadoo.fr\",\"bytedance.com\",\"tencent.com\",\"youmind.ai\",\"hs.kr\",\"ufpa.br\",\"edu.do\",\"katyisd.org\",\"outsourceddoers.com\",\"vietmap.vn\",\"yahoo.com.br\",\"uol.com.br\",\"gov.br\",\"edu.br\",\"wy.us\"],\"PUBLIC_YOUTUBE_BOARD_EXAMPLE_URL\":\"https://youtu.be/n3Xv_g3g-mA\"},\"idealPath\":\"$undefined\"}]]}]}]\n"])</script></body></html>