YouMind
OverviewUse casesSkillsPromptsPricingBlogUpdates

In-depth and reliable research on Bio/Med

madeBy
李李振龙
installedBy
8
categoryLabelLearn
fromYouMind
Editor's Pick
Y

Featured by

YouMind

Why we love this skill

This skill serves as a reliable guide for biomedical research, ensuring highly accurate and verifiable research information through structured searches, multi-stage literature screening, and rigorous impact factor (IF) checks.

Instructions

The core of this process is: first, use multiple queries to perform a reproducible initial screening in PubMed/NCBI E-utilities, then use PMID for deduplication and abstract evidence grading; only a small number of key documents enter the PMC/BioC full-text review; in-text citations must be clickable; complete bibliographic information must be listed at the end of the article; IF can only be conservatively checked through publicly accessible sources, and cannot be assumed to have JCR or local databases, cannot be guessed, and low-confidence matches cannot be treated as definitive results.

1. Preprocessing after a user initiates a search

1.1 First, analyze the user's question.

After receiving a user's question, the natural language question is first broken down into structured elements.

Must be identified:

• Research subjects: genes, proteins, drugs, channels, cell types, tissues, diseases, and models.

• Biological systems: humans, mice, rats, zebrafish, organoids, retina, brain regions, cell lines, etc.

• Relationship types: expression, regulation, function, mechanism, phenotype, death, survival, treatment, toxicity, development, degeneration, etc.

• Evidence requirements: Whether direct evidence, mechanistic evidence, full-text evidence, charts, dosage parameters, and experimental methods are required.

• Time range: unlimited time, the last 5 years, the last 1 year, the latest developments, and classic literature.

• Output types: short answer, representative literature, review summary, experimental design suggestions, evidence table, mechanism diagram.

Example:

User issue:

"Please help me find literature related to retinal organoid death."

Structured decomposition (example):

• Core models: retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid.

• Phenotype: cell death, apoptosis, degeneration, survival loss, stress, necrosis.

• Related cells: photoreceptor, cone, rod, retinal ganglion cell, Müller glia.

• Potential mechanisms: oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis.

• Evidence objectives: Prioritize original studies that directly observe cell death/apoptosis/degeneration in human or animal retinal organoids; then look for literature on indirect mechanisms.

1.2 Keyword Segmentation Principles (Example)

Don't just write one search query. Prepare at least three categories of terms for each concept.

Category 1: Precise words.

• retinal organoid

• retina organoid

• human retinal organoid

• hPSC-derived retinal organoid

• iPSC-derived retinal organoid

The second category: synonyms and hypernyms.

• optic cup organoid

• 3D retinal culture

• stem cell-derived retina

• retinal differentiation

• retinal tissue model

The third category: mechanism and phenotypic terms.

• apoptosis

• cell death

• degeneration

• survival

• stress

• oxidative stress

• ER stress

• mitochondrial dysfunction

• hypoxia

• necroptosis

• ferroptosis

If the user specifies the cell type, add:

• photoreceptor

• cone

• rod

• retinal ganglion cell

• Müller glia

• bipolar cell

• amacrine cell

If the user specifies the species or origin, add:

• human

• mouse

• rat

• zebrafish

• hESC

• iPSC

• pluripotent stem cell

1.3 Generating hierarchical search queries

Generate at least 3–6 queries. Each query corresponds to a search objective.

First layer: Direct evidence retrieval.

Used to find literature that directly matches the target model and target phenotype.

```text

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

```

Second layer: Extended model retrieval.

Used to capture literature where the author did not use the precise term "retinal organoid" but it is actually relevant.

```text

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

```

Third layer: Mechanism-specific search.

Used to verify specific pathways or mechanisms.

```text

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

```

Fourth layer: Cell type specific search.

```text

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

```

Fifth layer: Disease model retrieval.

```text

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

```

Sixth layer: Review/background search.

```text

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

```

Research

2. What methods and websites were used for the search?

2.1 Preferred: PubMed / NCBI E-utilities

PubMed is the preferred tool for searching biomedical literature. Do not default to scraping PubMed pages. Use the NCBI E-utilities API instead.

2.1.1 ESearch: Retrieving PMID using a query

interface:

```text

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

```

parameter:

```text

db=pubmed

term=

retmode=json

retmax=20

sort=relevance

```

You can also sort by time:

```text

sort=pub+date

```

Example:

```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

```

Read from the return:

```text

esearchresult.idlist

```

This is the PMID list.

2.1.2 ESummary: Obtaining Literature Metadata

interface:

```text

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

```

parameter:

```text

db=pubmed

id=PMID1,PMID2,PMID3

retmode=json

```

Extracted fields:

• PMID

• title

• fulljournalname

• source/journal abbreviation

• pubdate

• authors

• DOI and PMCID in articleids

• volume, issue, pages

2.1.3 EFetch: Retrieving Summary and XML Details

interface:

```text

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

```

parameter:

```text

db=pubmed

id=PMID1,PMID2

retmode=xml

rettype=abstract

```

Extracted fields:

• ArticleTitle

• AbstractText

• Journal Title

• ISOAbbreviation

• ISSN / eISSN

• PubDate

• DOI

• PMCID

• MeSH terms

2.1.4 Batch Retrieval Strategy

Recommended process:

1. Call ESearch for each query.

2. For each query, select the first 5–20 results.

3. Merge all PMIDs.

4. Use PMID to remove duplicates.

5. Use ESummary / EFetch to retrieve metadata and abstract data in batches.

6. In the initial screening stage, only read the metadata and abstract; do not start by reading the full text.

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

2.2 Second Phase: Full Review of PMC/BioC Documents

The full text will only be included in the following cases:

• Users request to read the full text carefully.

• The abstract is insufficient to determine the mechanism.

• Requires charts, experimental methods, concentrations, dosages, IC50, EC50, Kd, ​​and Ki.

• A small number of key PMIDs have been identified and require review on a case-by-case basis.

2.2.1 PMID to PMCID

interface:

```text

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

```

If PMCID is returned, it means that PMC may have open full text.

2.2.2 Prioritize BioC JSON

interface:

```text

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

```

Advantages: Highly structured, suitable for extracting main text paragraphs.

2.2.3 Try PMC XML when BioC is unavailable

interface:

```text

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

```

Skip when extracting the main text:

• references

• bibliography

• Acknowledgments

• author contributions

• competing interests

Full text review must include a stop criterion:

• Each document is scanned only once.

• By default, only paragraphs related to the question are extracted.

• If the target field is not matched, mark it as "No direct evidence found".

• Avoid repeatedly scraping keywords.

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

2.3 bioRxiv / medRxiv

Used to supplement the latest preprints.

You can use the official 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

```

You can also use a regular search as a supplement:

```text

site:biorxiv.org retinal organoid apoptosis

site:medrxiv.org retina organoid degeneration

```

Preprints must be labeled:

```text

This is a preprint and has not been peer-reviewed.

```

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

2.4 Crossref/OpenAlex/Unpaywall

Used to complete DOI, open full-text address, and publication information.

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> use:</p><p> • DOI completion.</p><p> • OA PDF link search.</p><p> • Journal name verification.</p><p> • Publication year verification.</p><p> ────────────────</p><p> 2.5 Publisher Page</p><p> Access the publisher's page only when API information is insufficient.</p><p> Access rules:</p><p> • Each publisher URL will only be tried once.</p><p> • If you encounter CAPTCHAs, login barriers, Cloudflare, Access Denied, or institutional access barriers, stop immediately.</p><p> • Avoid repeatedly refreshing, changing the path within the same site, or waiting in a loop.</p><p> • Use PubMed, PMC, Crossref, OpenAlex, Unpaywall, and DOI metadata as fallback.</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>Research</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. How to organize information after retrieval</p><p> 3.1 Establish a unified record structure</p><p> Each document is compiled into a unified record.</p><p> Fields:</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 Deduplication</p><p> Priority:</p><p> 1. PMID deduplication.</p><p> 2. Use DOI to remove duplicates if PMID is unavailable.</p><p> 3. If there is no DOI, use lower(title) + year + first_author to remove duplicates.</p><p> Retain the query_source that was hit the first time, and record which queries hit the document.</p><p> 3.3 Evidence Classification</p><p> It is necessary to distinguish:</p><p> Direct evidence:</p><p> The target species, tissue, cell type, model, and treatment conditions are directly matched.</p><p> Indirect evidence:</p><p> Adjacent systems, similar models, and similar mechanisms are supported, but they are not direct systems for user problems.</p><p> No direct evidence found:</p><p> Only background, speculation, reviews, or adjacent models can be found; there are no direct experimental results.</p><p> 3.4 Document Type Labeling</p><p> At least the following should be noted:</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 Sorting Rules</p><p> Recommended sorting:</p><p> 1. Original research based on direct evidence.</p><p> 2. Research on key mechanisms.</p><p> 3. Latest important research.</p><p> 4. Classic foundational studies.</p><p> 5. High-quality review.</p><p> 6. Indirect evidence.</p><p> Do not sort by IF alone. IF is a journal-level indicator and does not equate to the quality of an individual article.</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>Write</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_mec9inpfivabtkqivb_" 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. How to organize quotations in a reply</p><p> 4.1 Text Citation Format</p><p> All text citations must be clickable.</p><p> Format:</p><p> ```markdown</p><p> [[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p> ```</p><p> Example:</p><p> ```markdown</p><p> Previous studies have observed developmental stage-related photoreceptor stress and degeneration in human retinal organoids [[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/).</p><p> ```</p><p> Do not write it as:</p><p> ```text</p><p> [1]</p><p> (PMID: xxxxx)</p><p> See reference 1</p><p> ```</p><p> 4.2 Recommended Answer Structure</p><p> First paragraph: Direct conclusion.</p><p> ```text</p><p> Conclusion: There have been relevant reports, but the direct evidence mainly focuses on...; direct evidence regarding... is still lacking.</p><p> ```</p><p> Second paragraph: Evidence classification.</p><p> ```text</p><p> Direct evidence:</p><p> - Reference A: ...</p><p></p><p> Indirect evidence:</p><p> - Reference B: ...</p><p></p><p> No direct evidence found:</p><p> - Not found in this round...</p><p> ```</p><p> Third paragraph: Mechanism summary.</p><p> Group by topic, for example:</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> Fourth paragraph: Research gap.</p><p> Clearly state which issues lack direct evidence.</p><p> Fifth paragraph: Inspiration from the experiment.</p><p> If the user needs experimental design, provide the marker, assay, time point, and 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>Write</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_mic9inpfivabtkqivb_" 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. Complete list of references at the end of the article</p><p> If a specific reference is cited in the text, a complete list must be attached at the end of the article.</p><p> Format:</p><p> ```markdown</p><p> ## Complete List of Reference Information</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=To be verified}*</p><p> ```</p><p> Author format:</p><p> • 1–3 authors: List all.</p><p> • More than 3 authors: First author et al.</p><p> The PMID / DOI / URL must be clickable.</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>Research</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 Verification and Labeling</p><p> 6.1 First, let's explain the practical limitations of IF checks.</p><p> Normally, the official Journal Impact Factor comes from Clarivate Journal Citation Reports (JCR). However, any external agent typically does not have a Clarivate/JCR account or a local JCR table, so do not verify it through this path.</p><p> ```</p><p> 6.2 Practical methods for using IF skill</p><p> Main route:</p><p> 1. If the input is PMID, first use NCBI E-utilities to obtain PubMed metadata.</p><p> - Retrieve FullJournalName. - Retrieve Source/ISO abbreviation. - Retrieve ISSN/eISSN. - Retrieve auxiliary fields such as title, year, and DOI.</p><p> 2. Use the publicly available iikx/iscience mobile JSON interface to query journals.</p><p> Search API:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p> Details API:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p> 3. Perform a conservative match on the search results.</p><p> - Prioritizes exact normalized journal title matches. - Second, prioritizes exact abbreviation matches. - Exercises great caution with short and broad terms. - Does not accept obvious substring mismatches, such as mismatching "Nature" as "Nature Reviews" series. - Returns ambiguous/not_found results if the match is unstable, rather than guessing.</p><p> 4. If PubMed provides an abbreviation, try expanding it to the full name or alternative title using NLM Catalog.</p><p> The NLM Catalog search interface remains 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> Then use ESummary to get the Title / TitleAlternate.</p><p> 5. Read from the iikx detail results:</p><p> - Impact factor. - IF year. - JCR quartile. - CAS/CAS quartile, if applicable. - Source URL. - Match confidence.</p><p> 6. Do not include the IF year in the main text when annotating; use compact annotations.</p><p> The final annotation should only state:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p> If it fails:</p><p> ```text</p><p> *{IF=Pending Verification}*</p><p> ```</p><p> or:</p><p> ```text</p><p> *{IF=Not detected}*</p><p> ```</p><p> 6.3 Specific Steps</p><p> Perform the following procedure for each document.</p><p> Step 1: Prepare the journal search name.</p><p> Prioritize retrieving from PubMed metadata:</p><p> ```text</p><p> FullJournalName</p><p> ISOAbbreviation / Source</p><p> ISSN</p><p> eISSN</p><p> ```</p><p> If only a DOI is available, first use Crossref or OpenAlex to obtain the journal name.</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> Step 2: Standardize journal names.</p><p> Standardization rules:</p><p> • All lowercase.</p><p> • HTML unescape.</p><p> • Replace & with and.</p><p> • Remove punctuation.</p><p> • Combine multiple spaces.</p><p> • When making comparisons, you can also use the compact form, which removes all spaces.</p><p> Example pseudocode:</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'&', ' and ', 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> Step 3: Query the iikx search interface.</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p> It is recommended to set a User-Agent, for example:</p><p> ```text</p><p> Mozilla/5.0</p><p> ```</p><p> If no exact match is found on the first page, you can flip through a limited number of pages, for example, up to 8 pages.</p><p> Page turning parameters are usually:</p><p> ```text</p><p> page=2</p><p> page=3</p><p> ```</p><p> Step 4: Select candidates from the search results.</p><p> Candidate fields typically include:</p><p> ```text</p><p> id</p><p> classid</p><p> title</p><p> smalltitle</p><p> IF or IF2024</p><p> zky2020</p><p> URL</p><p> ```</p><p> Matching rules:</p><p> • If compact(query) == compact(candidate.title), accept.</p><p> • If norm(query) == norm(candidate.title), accept.</p><p> • If compact(query) == compact(candidate.smalltitle), accept.</p><p> • If norm(query) == norm(candidate.smalltitle), accept.</p><p> • Do not accept a substring unless the query is long enough and unambiguous.</p><p> • Be especially cautious with short words such as Nature, Science, Cell, Brain, Vision, and Retina.</p><p> Step 5: If no match is found, use the NLM Catalog extended abbreviation.</p><p> For example, in PubMed, the Source is:</p><p> ```text</p><p> Free Radic Biol Med</p><p> ```</p><p> You can check:</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</p><p> ```</p><p> After obtaining the NLM Catalog ID, use it as follows:</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> Read:</p><p> ```text</p><p> Title</p><p> TitleAlternate</p><p> ```</p><p> Then use these full names to search for iikx.</p><p> Step 6: Check the iikx details interface.</p><p> If the search results contain:</p><p> ```text</p><p> id=<id></p><p> classid=<classid></p><p> ```</p><p> Call:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p> Read from detail:</p><p> ```text</p><p> IF2024, IF2023, IF2022 ...</p><p> IF</p><p> zky2020 or other JCR quartile fields</p><p> jcr22 / jcr12 or partition field</p><p> issn</p><p> eissn</p><p> title</p><p> smalltitle</p><p> category</p><p> ```</p><p> Step 7: Select the latest IF statement.</p><p> Search the returned fields for all instances of the form:</p><p> ```text</p><p> IF20xx</p><p> ```</p><p> For example:</p><p> ```text</p><p> IF2024</p><p> IF2023</p><p> IF2022</p><p> ```</p><p> Choose the year with the largest significant digit.</p><p> If IF20xx is not present, attempt to read:</p><p> ```text</p><p> IF</p><p> if_value</p><p> ```</p><p> If no valid value is found, it is marked as not detected.</p><p> Step 8: Output confidence level and label.</p><p> If exact title/abbreviation matches, and detail returns a valid IF:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p> If the match is uncertain:</p><p> ```text</p><p> *{IF=Pending Verification}*</p><p> ```</p><p> If the public API returns no results:</p><p> ```text</p><p> *{IF=Not detected}*</p><p> ```</p><p> 6.4 IF Annotation Format</p><p> Fixed format:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p> Example:</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> Notice:</p><p> • The JCR year is not written inside the IF annotation.</p><p> • Do not write "2024 JCR IF".</p><p> • Do not write "JCR 2024".</p><p> • Only the year of publication is retained.</p><p> • If the IF is 0.0, null, has an unstable source, or an unstable match, the number will not be displayed.</p><p> 6.5 Standard handling for IF check failures</p><p> Don't guess.</p><p> Do not use the journal name to fill in the numbers.</p><p> Do not use large models to memorize and fill in IF statements.</p><p> Only three states are allowed upon failure:</p><p> ```text</p><p> *{IF=Pending Verification}*</p><p> ```</p><p> Used for:</p><p> • Search results are vague.</p><p> There are several similar journals.</p><p> • Only the abbreviation was found, but the full name could not be confirmed.</p><p> • The IF returned by publicly available sources is questionable.</p><p> ```text</p><p> *{IF=Not detected}*</p><p> ```</p><p> Used for:</p><p> • The public interface returned no results.</p><p> • The journal is not covered by SCI/JCR.</p><p> • The new issue does not yet have an IF.</p><p> ```text</p><p> *{IF=Not publicly verifiable}*</p><p> ```</p><p> Used for:</p><p> • The user requires an official JCR, but the current Agent does not have Clarivate/JCR permissions.</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>Research</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. Final self-checklist</p><p> Must be checked before shipment:</p><p> • Should the user's core questions be answered first?</p><p> • Whether to distinguish between direct evidence, indirect evidence, and no direct evidence found.</p><p> • Are all text citations clickable?</p><p> • Is there a complete list of references at the end of the article?</p><p> • Does every document include an IF (Input/Output) label or a label indicating pending verification/not detected?</p><p> • Whether the PMID/DOI/URL is clickable.</p><p> • Does it avoid substituting overall tissue results for conclusions about specific cell types?</p><p> • Does it avoid substituting activation/phosphorylation for an increase in total expression?</p><p> • Whether to indicate a preprint.</p><p> • Does it specify the search boundaries?</p><p> • IF whether it was not based on memory or guesswork.</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. Reproducible pseudocode</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 or record.journal_abbrev</p><p> if_result = lookup_if_public_iikx(journal_query)</p><p> 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=Pending Verification}*'</p><p> else:</p><p> record.if_annotation = '*{IF=Not Detected}*'</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. Recommended final delivery template</p><p> ```markdown</p><p> in conclusion:</p><p> ...</p><p></p><p> Level of evidence:</p><p></p><p> Direct evidence:</p><p> - ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p> Indirect evidence:</p><p> - …[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p> No direct evidence found:</p><p> - ……</p><p></p><p> Mechanism summary:</p><p> 1. ……</p><p> 2. ……</p><p></p><p> Search boundaries:</p><p> This round of searches primarily involved PubMed, PMC, BioC, and bioRxiv; initial screening was based on metadata and abstracts, with only key documents undergoing full-text review. IF annotations were based on publicly accessible sources; documents that could not be matched with high confidence were marked as pending verification or not detected.</p><p></p><p> Complete list of literature information:</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=To be verified}*</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>Write</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_n6c9inpfivabtkqivb_" 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">description</p><p class="text-sm leading-5 text-secondary-fg whitespace-pre-wrap break-words">Applicable Scenarios: Complete a round of biological/biomedical scientific literature retrieval and provide users with detailed and reliable output. 1. After the user initiates a search, the system breaks down the question and keywords. 2. Retrieve literature using public and reproducible data sources. 3. Deduplicate, stratify, classify, and sort the search results. 4. Use clickable text citations in the response. 5. List complete literature information at the end of the document and mark the IF with publicly searchable routes; if high confidence verification is not possible, it must be marked as "to be verified" or "not detected".</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">Related Skills</h3><a class="inline-flex items-center gap-1 text-sm font-semibold text-secondary-fg transition-colors hover:text-primary" href="/skills?category=learn">View all<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 grid-cols-1 gap-5 md:grid-cols-2 xl:grid-cols-3"><div role="link" tabindex="0" class="cursor-pointer"><div class="group relative flex flex-col gap-4 p-5 rounded-3xl bg-board-card overflow-hidden transition-shadow hover:shadow-md h-[336px]"><div class="flex items-center shrink-0"><div class="relative size-8 overflow-hidden rounded-md" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg07-2.png);background-size:cover"><div class="absolute inset-0 flex items-center justify-center"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg" class="text-white" style="filter:drop-shadow(0 0 4px rgba(0, 0, 0, 0.20))"><path d="M12 2.85999C6.96271 2.85999 2.87999 6.94271 2.87999 11.98V14.7647C2.87999 15.7869 3.32535 16.7637 4.11499 17.4143C5.58711 18.6272 8.31779 20.34 12 20.34C15.6822 20.34 18.4129 18.6272 19.885 17.4143C20.6746 16.7637 21.12 15.7869 21.12 14.7647V11.98C21.12 6.94271 17.0373 2.85999 12 2.85999ZM10.48 8.93999H12H13.52C16.4316 8.93999 18.84 11.22 18.84 13.5V15.02C18.84 15.02 17.5867 11.98 15.5818 11.98C14.6409 11.98 14.28 12.4923 14.28 13.0517V13.5C15.6396 13.5 17.364 14.7125 17.5441 14.8493C18.2487 15.3843 18.2541 16.4536 17.5382 16.9734C16.3754 17.8178 14.4746 18.82 12 18.82C9.52543 18.82 7.62459 17.8178 6.46179 16.9734C5.74587 16.4536 5.75133 15.3843 6.45585 14.8493C6.63597 14.7125 8.36035 13.5 9.71999 13.5V13.0517C9.71999 12.4923 9.35908 11.98 8.4182 11.98C6.41332 11.98 5.15999 15.02 5.15999 15.02V13.5C5.15999 11.22 7.56843 8.93999 10.48 8.93999ZM11.62 12.74C10.9907 12.74 10.48 13.2507 10.48 13.88C10.48 13.88 10.5261 14.0449 10.618 14.26H10.86C11.069 14.26 11.24 14.431 11.24 14.64V15.0215C8.71644 15.2527 7.43999 16.54 7.43999 16.54C7.43999 16.54 10.48 16.5875 12 16.5875C13.52 16.5875 16.56 16.54 16.56 16.54C16.56 16.54 15.2836 15.2527 12.76 15.0215V14.64C12.76 14.431 12.931 14.26 13.14 14.26H13.3819C13.4739 14.0449 13.52 13.88 13.52 13.88C13.52 13.2507 13.0093 12.74 12.38 12.74H11.62Z" fill="currentColor"></path></svg></div></div></div><div class="flex flex-col gap-2 shrink-0"><h3 class="text-xl font-semibold leading-7 text-primary line-clamp-1">Transferable skills coach</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Parents input specific scenarios their children encounter, and the system generates a five-step coaching-style guidance plan (underlying logic → life anchors → mid-course confirmation → dialogue techniques → competency naming) to help children build self-identity regarding transferable skills. New features include de-labeling, mid-course confirmation points, and applicable scenario signals.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/gen-images/52af3761d859bac5c79df72dbf52a513f4f3ea5b1019bcd8198ad8ca069c8873.jpeg@small" alt="Transferable skills coach" class="object-cover absolute inset-0 w-full h-full"/><div class="absolute inset-0 bg-black/40 flex items-center justify-center transition-opacity duration-200 opacity-0"><button type="button" class="px-6 py-2 text-sm font-medium text-primary bg-white rounded-full hover:bg-gray-100 transition-colors">Try in YouMind</button></div></div></div></div><div role="link" tabindex="0" class="cursor-pointer"><div class="group relative flex flex-col gap-4 p-5 rounded-3xl bg-board-card overflow-hidden transition-shadow hover:shadow-md h-[336px]"><div class="flex items-center shrink-0"><div class="relative size-8 overflow-hidden rounded-md"><img src="https://cdn.gooo.ai/web-images/07340467ddb2ac22e48c1e08c9d6000da3c772336fadbb8180216e023cc268be" alt="Project Data Compilation | Better Organize" class="size-full object-cover"/></div></div><div class="flex flex-col gap-2 shrink-0"><h3 class="text-xl font-semibold leading-7 text-primary line-clamp-1">Project Data Compilation | Better Organize</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Organize scattered materials from your project collection into a structured index document, supporting incremental updates and automatically identifying document types and extracting core information. (Note: Organizing a large amount of material may require a significant number of points.)</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><div class="absolute inset-0 flex items-center justify-center"><img alt="empty" loading="lazy" width="80" height="80" decoding="async" data-nimg="1" class="object-contain opacity-60" style="color:transparent" srcSet="/cdn-cgi/image/width=96,quality=95,format=webp,metadata=none/https%3A%2F%2Fassets.youmind.com%2Fillustrations%2Fempty.png 1x, /cdn-cgi/image/width=256,quality=95,format=webp,metadata=none/https%3A%2F%2Fassets.youmind.com%2Fillustrations%2Fempty.png 2x" src="/cdn-cgi/image/width=256,quality=95,format=webp,metadata=none/https%3A%2F%2Fassets.youmind.com%2Fillustrations%2Fempty.png"/></div><div class="absolute inset-0 bg-black/40 flex items-center justify-center transition-opacity duration-200 opacity-0"><button type="button" class="px-6 py-2 text-sm font-medium text-primary bg-white rounded-full hover:bg-gray-100 transition-colors">Try in YouMind</button></div></div></div></div><div role="link" tabindex="0" class="cursor-pointer"><div class="group relative flex flex-col gap-4 p-5 rounded-3xl bg-board-card overflow-hidden transition-shadow hover:shadow-md h-[336px]"><div class="flex items-center shrink-0"><div class="relative size-8 overflow-hidden rounded-md"><img src="https://cdn.gooo.ai/assets/skill-avatar-default.png" alt="Astrological Chart Code – Your Interpersonal Relationship Evolution Tool" class="size-full object-cover"/></div></div><div class="flex flex-col gap-2 shrink-0"><h3 class="text-xl font-semibold leading-7 text-primary line-clamp-1">Astrological Chart Code – Your Interpersonal Relationship Evolution Tool</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">By deeply interpreting your unique birth chart, you can see a "factory settings map" of your universe. Based on this map, you can more clearly see the hidden aspects of yourself and others. It provides an objective mirror, helping you to "know yourself" and "understand others." It lets you know the needs and desires that others cannot express, thereby improving your relationships with children, spouses, in-laws, and colleagues. It adds more color to your life and makes it more fulfilling.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/gen-images/2ed321e8d59459442358130684d0a66b8f1d54834b25cbbec145ab36b12fe8ff.jpeg@small" alt="Astrological Chart Code – Your Interpersonal Relationship Evolution Tool" class="object-cover absolute inset-0 w-full h-full"/><div class="absolute inset-0 bg-black/40 flex items-center justify-center transition-opacity duration-200 opacity-0"><button type="button" class="px-6 py-2 text-sm font-medium text-primary bg-white rounded-full hover:bg-gray-100 transition-colors">Try in YouMind</button></div></div></div></div></div></div></div><div class="flex md:hidden flex-col gap-5 w-full"><div class="flex items-center 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 flex-1 min-w-0 flex-col gap-1 justify-center"><div class="flex items-center gap-2 min-w-0"><h2 class="min-w-0 text-2xl font-semibold leading-8 text-primary truncate">In-depth and reliable research on Bio/Med</h2></div></div><div class="flex gap-2 items-center"><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">Copy link</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">Try in YouMind</button></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">madeBy</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">installedBy</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">8</span></div></div><div class="flex items-center gap-2"><span class="text-sm leading-5 text-caption-fg whitespace-nowrap">categoryLabel</span><a class="hover:opacity-80 transition-opacity" href="/skills?category=learn"><span class="text-sm leading-5 font-medium text-foreground whitespace-nowrap">Learn</span></a></div><div class="flex items-center gap-2"><span class="text-sm leading-5 text-caption-fg whitespace-nowrap">from</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" 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" 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">Editor's Pick</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">Y</span></span><div class="min-w-0"><p class="text-[11px] font-semibold uppercase tracking-[0.08em] text-caption-fg">Featured by</p><p class="truncate text-sm font-semibold text-primary">YouMind</p></div></a></div><div class="flex flex-col gap-2"><p class="text-base font-semibold leading-6 text-primary">Why we love this skill</p><p class="text-sm italic leading-7 text-secondary-fg">This skill serves as a reliable guide for biomedical research, ensuring highly accurate and verifiable research information through structured searches, multi-stage literature screening, and rigorous impact factor (IF) checks.</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">Instructions<!-- --> </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">showOriginal</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>The core of this process is: first, use multiple queries to perform a reproducible initial screening in PubMed/NCBI E-utilities, then use PMID for deduplication and abstract evidence grading; only a small number of key documents enter the PMC/BioC full-text review; in-text citations must be clickable; complete bibliographic information must be listed at the end of the article; IF can only be conservatively checked through publicly accessible sources, and cannot be assumed to have JCR or local databases, cannot be guessed, and low-confidence matches cannot be treated as definitive results.</p><p></p><p> 1. Preprocessing after a user initiates a search</p><p> 1.1 First, analyze the user's question.</p><p> After receiving a user's question, the natural language question is first broken down into structured elements.</p><p> Must be identified:</p><p> • Research subjects: genes, proteins, drugs, channels, cell types, tissues, diseases, and models.</p><p> • Biological systems: humans, mice, rats, zebrafish, organoids, retina, brain regions, cell lines, etc.</p><p> • Relationship types: expression, regulation, function, mechanism, phenotype, death, survival, treatment, toxicity, development, degeneration, etc.</p><p> • Evidence requirements: Whether direct evidence, mechanistic evidence, full-text evidence, charts, dosage parameters, and experimental methods are required.</p><p> • Time range: unlimited time, the last 5 years, the last 1 year, the latest developments, and classic literature.</p><p> • Output types: short answer, representative literature, review summary, experimental design suggestions, evidence table, mechanism diagram.</p><p> Example:</p><p> User issue:</p><p> "Please help me find literature related to retinal organoid death."</p><p> Structured decomposition (example):</p><p> • Core models: retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid.</p><p> • Phenotype: cell death, apoptosis, degeneration, survival loss, stress, necrosis.</p><p> • Related cells: photoreceptor, cone, rod, retinal ganglion cell, Müller glia.</p><p> • Potential mechanisms: oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis.</p><p> • Evidence objectives: Prioritize original studies that directly observe cell death/apoptosis/degeneration in human or animal retinal organoids; then look for literature on indirect mechanisms.</p><p> 1.2 Keyword Segmentation Principles (Example)</p><p> Don't just write one search query. Prepare at least three categories of terms for each concept.</p><p> Category 1: Precise words.</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> The second category: synonyms and hypernyms.</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> The third category: mechanism and phenotypic terms.</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> If the user specifies the cell type, add:</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> If the user specifies the species or origin, add:</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 Generating hierarchical search queries</p><p> Generate at least 3–6 queries. Each query corresponds to a search objective.</p><p> First layer: Direct evidence retrieval.</p><p> Used to find literature that directly matches the target model and target phenotype.</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> Second layer: Extended model retrieval.</p><p> Used to capture literature where the author did not use the precise term "retinal organoid" but it is actually relevant.</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> Third layer: Mechanism-specific search.</p><p> Used to verify specific pathways or mechanisms.</p><p> ```text</p><p> ("retinal organoid" OR "retina organoid") AND ("oxidative stress" OR "ER stress" OR hypoxia OR mitochondria)</p><p> ```</p><p> Fourth layer: Cell type specific search.</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> Fifth layer: Disease model retrieval.</p><p> ```text</p><p> ("retinal organoid" OR "retina organoid") AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)</p><p> ```</p><p> Sixth layer: Review/background search.</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>Research</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. What methods and websites were used for the search?</p><p> 2.1 Preferred: PubMed / NCBI E-utilities</p><p> PubMed is the preferred tool for searching biomedical literature. Do not default to scraping PubMed pages. Use the NCBI E-utilities API instead.</p><p> 2.1.1 ESearch: Retrieving PMID using a query</p><p> interface:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi</p><p> ```</p><p> parameter:</p><p> ```text</p><p> db=pubmed</p><p> term=<search term></p><p> retmode=json</p><p> retmax=20</p><p> sort=relevance</p><p> ```</p><p> You can also sort by time:</p><p> ```text</p><p> sort=pub+date</p><p> ```</p><p> Example:</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> Read from the return:</p><p> ```text</p><p> esearchresult.idlist</p><p> ```</p><p> This is the PMID list.</p><p> 2.1.2 ESummary: Obtaining Literature Metadata</p><p> interface:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi</p><p> ```</p><p> parameter:</p><p> ```text</p><p> db=pubmed</p><p> id=PMID1,PMID2,PMID3</p><p> retmode=json</p><p> ```</p><p> Extracted fields:</p><p> • PMID</p><p> • title</p><p> • fulljournalname</p><p> • source/journal abbreviation</p><p> • pubdate</p><p> • authors</p><p> • DOI and PMCID in articleids</p><p> • volume, issue, pages</p><p> 2.1.3 EFetch: Retrieving Summary and XML Details</p><p> interface:</p><p> ```text</p><p> https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi</p><p> ```</p><p> parameter:</p><p> ```text</p><p> db=pubmed</p><p> id=PMID1,PMID2</p><p> retmode=xml</p><p> rettype=abstract</p><p> ```</p><p> Extracted fields:</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 Batch Retrieval Strategy</p><p> Recommended process:</p><p> 1. Call ESearch for each query.</p><p> 2. For each query, select the first 5–20 results.</p><p> 3. Merge all PMIDs.</p><p> 4. Use PMID to remove duplicates.</p><p> 5. Use ESummary / EFetch to retrieve metadata and abstract data in batches.</p><p> 6. In the initial screening stage, only read the metadata and abstract; do not start by reading the full text.</p><p> ────────────────</p><p> 2.2 Second Phase: Full Review of PMC/BioC Documents</p><p> The full text will only be included in the following cases:</p><p> • Users request to read the full text carefully.</p><p> • The abstract is insufficient to determine the mechanism.</p><p> • Requires charts, experimental methods, concentrations, dosages, IC50, EC50, Kd, ​​and Ki.</p><p> • A small number of key PMIDs have been identified and require review on a case-by-case basis.</p><p> 2.2.1 PMID to PMCID</p><p> interface:</p><p> ```text</p><p> https://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=<PMID>&format=json</p><p> ```</p><p> If PMCID is returned, it means that PMC may have open full text.</p><p> 2.2.2 Prioritize BioC JSON</p><p> interface:</p><p> ```text</p><p> https://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json/<PMCID>/unicode</p><p> ```</p><p> Advantages: Highly structured, suitable for extracting main text paragraphs.</p><p> 2.2.3 Try PMC XML when BioC is unavailable</p><p> interface:</p><p> ```text</p><p> https://www.ncbi.nlm.nih.gov/pmc/articles/<PMCID>/?report=xml</p><p> ```</p><p> Skip when extracting the main text:</p><p> • references</p><p> • bibliography</p><p> • Acknowledgments</p><p> • author contributions</p><p> • competing interests</p><p> Full text review must include a stop criterion:</p><p> • Each document is scanned only once.</p><p> • By default, only paragraphs related to the question are extracted.</p><p> • If the target field is not matched, mark it as "No direct evidence found".</p><p> • Avoid repeatedly scraping keywords.</p><p> ────────────────</p><p> 2.3 bioRxiv / medRxiv</p><p> Used to supplement the latest preprints.</p><p> You can use the official 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> You can also use a regular search as a supplement:</p><p> ```text</p><p> site:biorxiv.org retinal organoid apoptosis</p><p> site:medrxiv.org retina organoid degeneration</p><p> ```</p><p> Preprints must be labeled:</p><p> ```text</p><p> This is a preprint and has not been peer-reviewed.</p><p> ```</p><p> ────────────────</p><p> 2.4 Crossref/OpenAlex/Unpaywall</p><p> Used to complete DOI, open full-text address, and publication information.</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> use:</p><p> • DOI completion.</p><p> • OA PDF link search.</p><p> • Journal name verification.</p><p> • Publication year verification.</p><p> ────────────────</p><p> 2.5 Publisher Page</p><p> Access the publisher's page only when API information is insufficient.</p><p> Access rules:</p><p> • Each publisher URL will only be tried once.</p><p> • If you encounter CAPTCHAs, login barriers, Cloudflare, Access Denied, or institutional access barriers, stop immediately.</p><p> • Avoid repeatedly refreshing, changing the path within the same site, or waiting in a loop.</p><p> • Use PubMed, PMC, Crossref, OpenAlex, Unpaywall, and DOI metadata as fallback.</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>Research</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. How to organize information after retrieval</p><p> 3.1 Establish a unified record structure</p><p> Each document is compiled into a unified record.</p><p> Fields:</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 Deduplication</p><p> Priority:</p><p> 1. PMID deduplication.</p><p> 2. Use DOI to remove duplicates if PMID is unavailable.</p><p> 3. If there is no DOI, use lower(title) + year + first_author to remove duplicates.</p><p> Retain the query_source that was hit the first time, and record which queries hit the document.</p><p> 3.3 Evidence Classification</p><p> It is necessary to distinguish:</p><p> Direct evidence:</p><p> The target species, tissue, cell type, model, and treatment conditions are directly matched.</p><p> Indirect evidence:</p><p> Adjacent systems, similar models, and similar mechanisms are supported, but they are not direct systems for user problems.</p><p> No direct evidence found:</p><p> Only background, speculation, reviews, or adjacent models can be found; there are no direct experimental results.</p><p> 3.4 Document Type Labeling</p><p> At least the following should be noted:</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 Sorting Rules</p><p> Recommended sorting:</p><p> 1. Original research based on direct evidence.</p><p> 2. Research on key mechanisms.</p><p> 3. Latest important research.</p><p> 4. Classic foundational studies.</p><p> 5. High-quality review.</p><p> 6. Indirect evidence.</p><p> Do not sort by IF alone. IF is a journal-level indicator and does not equate to the quality of an individual article.</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>Write</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_medhinpfivabtkqivb_" 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. How to organize quotations in a reply</p><p> 4.1 Text Citation Format</p><p> All text citations must be clickable.</p><p> Format:</p><p> ```markdown</p><p> [[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p> ```</p><p> Example:</p><p> ```markdown</p><p> Previous studies have observed developmental stage-related photoreceptor stress and degeneration in human retinal organoids [[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/).</p><p> ```</p><p> Do not write it as:</p><p> ```text</p><p> [1]</p><p> (PMID: xxxxx)</p><p> See reference 1</p><p> ```</p><p> 4.2 Recommended Answer Structure</p><p> First paragraph: Direct conclusion.</p><p> ```text</p><p> Conclusion: There have been relevant reports, but the direct evidence mainly focuses on...; direct evidence regarding... is still lacking.</p><p> ```</p><p> Second paragraph: Evidence classification.</p><p> ```text</p><p> Direct evidence:</p><p> - Reference A: ...</p><p></p><p> Indirect evidence:</p><p> - Reference B: ...</p><p></p><p> No direct evidence found:</p><p> - Not found in this round...</p><p> ```</p><p> Third paragraph: Mechanism summary.</p><p> Group by topic, for example:</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> Fourth paragraph: Research gap.</p><p> Clearly state which issues lack direct evidence.</p><p> Fifth paragraph: Inspiration from the experiment.</p><p> If the user needs experimental design, provide the marker, assay, time point, and 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>Write</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_midhinpfivabtkqivb_" 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. Complete list of references at the end of the article</p><p> If a specific reference is cited in the text, a complete list must be attached at the end of the article.</p><p> Format:</p><p> ```markdown</p><p> ## Complete List of Reference Information</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=To be verified}*</p><p> ```</p><p> Author format:</p><p> • 1–3 authors: List all.</p><p> • More than 3 authors: First author et al.</p><p> The PMID / DOI / URL must be clickable.</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>Research</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 Verification and Labeling</p><p> 6.1 First, let's explain the practical limitations of IF checks.</p><p> Normally, the official Journal Impact Factor comes from Clarivate Journal Citation Reports (JCR). However, any external agent typically does not have a Clarivate/JCR account or a local JCR table, so do not verify it through this path.</p><p> ```</p><p> 6.2 Practical methods for using IF skill</p><p> Main route:</p><p> 1. If the input is PMID, first use NCBI E-utilities to obtain PubMed metadata.</p><p> - Retrieve FullJournalName. - Retrieve Source/ISO abbreviation. - Retrieve ISSN/eISSN. - Retrieve auxiliary fields such as title, year, and DOI.</p><p> 2. Use the publicly available iikx/iscience mobile JSON interface to query journals.</p><p> Search API:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p> Details API:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p> 3. Perform a conservative match on the search results.</p><p> - Prioritizes exact normalized journal title matches. - Second, prioritizes exact abbreviation matches. - Exercises great caution with short and broad terms. - Does not accept obvious substring mismatches, such as mismatching "Nature" as "Nature Reviews" series. - Returns ambiguous/not_found results if the match is unstable, rather than guessing.</p><p> 4. If PubMed provides an abbreviation, try expanding it to the full name or alternative title using NLM Catalog.</p><p> The NLM Catalog search interface remains 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> Then use ESummary to get the Title / TitleAlternate.</p><p> 5. Read from the iikx detail results:</p><p> - Impact factor. - IF year. - JCR quartile. - CAS/CAS quartile, if applicable. - Source URL. - Match confidence.</p><p> 6. Do not include the IF year in the main text when annotating; use compact annotations.</p><p> The final annotation should only state:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p> If it fails:</p><p> ```text</p><p> *{IF=Pending Verification}*</p><p> ```</p><p> or:</p><p> ```text</p><p> *{IF=Not detected}*</p><p> ```</p><p> 6.3 Specific Steps</p><p> Perform the following procedure for each document.</p><p> Step 1: Prepare the journal search name.</p><p> Prioritize retrieving from PubMed metadata:</p><p> ```text</p><p> FullJournalName</p><p> ISOAbbreviation / Source</p><p> ISSN</p><p> eISSN</p><p> ```</p><p> If only a DOI is available, first use Crossref or OpenAlex to obtain the journal name.</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> Step 2: Standardize journal names.</p><p> Standardization rules:</p><p> • All lowercase.</p><p> • HTML unescape.</p><p> • Replace & with and.</p><p> • Remove punctuation.</p><p> • Combine multiple spaces.</p><p> • When making comparisons, you can also use the compact form, which removes all spaces.</p><p> Example pseudocode:</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'&', ' and ', 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> Step 3: Query the iikx search interface.</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci&c=index&a=info&keyword=<journal_query></p><p> ```</p><p> It is recommended to set a User-Agent, for example:</p><p> ```text</p><p> Mozilla/5.0</p><p> ```</p><p> If no exact match is found on the first page, you can flip through a limited number of pages, for example, up to 8 pages.</p><p> Page turning parameters are usually:</p><p> ```text</p><p> page=2</p><p> page=3</p><p> ```</p><p> Step 4: Select candidates from the search results.</p><p> Candidate fields typically include:</p><p> ```text</p><p> id</p><p> classid</p><p> title</p><p> smalltitle</p><p> IF or IF2024</p><p> zky2020</p><p> URL</p><p> ```</p><p> Matching rules:</p><p> • If compact(query) == compact(candidate.title), accept.</p><p> • If norm(query) == norm(candidate.title), accept.</p><p> • If compact(query) == compact(candidate.smalltitle), accept.</p><p> • If norm(query) == norm(candidate.smalltitle), accept.</p><p> • Do not accept a substring unless the query is long enough and unambiguous.</p><p> • Be especially cautious with short words such as Nature, Science, Cell, Brain, Vision, and Retina.</p><p> Step 5: If no match is found, use the NLM Catalog extended abbreviation.</p><p> For example, in PubMed, the Source is:</p><p> ```text</p><p> Free Radic Biol Med</p><p> ```</p><p> You can check:</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</p><p> ```</p><p> After obtaining the NLM Catalog ID, use it as follows:</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> Read:</p><p> ```text</p><p> Title</p><p> TitleAlternate</p><p> ```</p><p> Then use these full names to search for iikx.</p><p> Step 6: Check the iikx details interface.</p><p> If the search results contain:</p><p> ```text</p><p> id=<id></p><p> classid=<classid></p><p> ```</p><p> Call:</p><p> ```text</p><p> https://m.iikx.com/api/restfull/?m=sci/index/detail&id=<id>&classid=<classid></p><p> ```</p><p> Read from detail:</p><p> ```text</p><p> IF2024, IF2023, IF2022 ...</p><p> IF</p><p> zky2020 or other JCR quartile fields</p><p> jcr22 / jcr12 or partition field</p><p> issn</p><p> eissn</p><p> title</p><p> smalltitle</p><p> category</p><p> ```</p><p> Step 7: Select the latest IF statement.</p><p> Search the returned fields for all instances of the form:</p><p> ```text</p><p> IF20xx</p><p> ```</p><p> For example:</p><p> ```text</p><p> IF2024</p><p> IF2023</p><p> IF2022</p><p> ```</p><p> Choose the year with the largest significant digit.</p><p> If IF20xx is not present, attempt to read:</p><p> ```text</p><p> IF</p><p> if_value</p><p> ```</p><p> If no valid value is found, it is marked as not detected.</p><p> Step 8: Output confidence level and label.</p><p> If exact title/abbreviation matches, and detail returns a valid IF:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p> If the match is uncertain:</p><p> ```text</p><p> *{IF=Pending Verification}*</p><p> ```</p><p> If the public API returns no results:</p><p> ```text</p><p> *{IF=Not detected}*</p><p> ```</p><p> 6.4 IF Annotation Format</p><p> Fixed format:</p><p> ```text</p><p> *{IF=X,Qn}*</p><p> ```</p><p> Example:</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> Notice:</p><p> • The JCR year is not written inside the IF annotation.</p><p> • Do not write "2024 JCR IF".</p><p> • Do not write "JCR 2024".</p><p> • Only the year of publication is retained.</p><p> • If the IF is 0.0, null, has an unstable source, or an unstable match, the number will not be displayed.</p><p> 6.5 Standard handling for IF check failures</p><p> Don't guess.</p><p> Do not use the journal name to fill in the numbers.</p><p> Do not use large models to memorize and fill in IF statements.</p><p> Only three states are allowed upon failure:</p><p> ```text</p><p> *{IF=Pending Verification}*</p><p> ```</p><p> Used for:</p><p> • Search results are vague.</p><p> There are several similar journals.</p><p> • Only the abbreviation was found, but the full name could not be confirmed.</p><p> • The IF returned by publicly available sources is questionable.</p><p> ```text</p><p> *{IF=Not detected}*</p><p> ```</p><p> Used for:</p><p> • The public interface returned no results.</p><p> • The journal is not covered by SCI/JCR.</p><p> • The new issue does not yet have an IF.</p><p> ```text</p><p> *{IF=Not publicly verifiable}*</p><p> ```</p><p> Used for:</p><p> • The user requires an official JCR, but the current Agent does not have Clarivate/JCR permissions.</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>Research</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. Final self-checklist</p><p> Must be checked before shipment:</p><p> • Should the user's core questions be answered first?</p><p> • Whether to distinguish between direct evidence, indirect evidence, and no direct evidence found.</p><p> • Are all text citations clickable?</p><p> • Is there a complete list of references at the end of the article?</p><p> • Does every document include an IF (Input/Output) label or a label indicating pending verification/not detected?</p><p> • Whether the PMID/DOI/URL is clickable.</p><p> • Does it avoid substituting overall tissue results for conclusions about specific cell types?</p><p> • Does it avoid substituting activation/phosphorylation for an increase in total expression?</p><p> • Whether to indicate a preprint.</p><p> • Does it specify the search boundaries?</p><p> • IF whether it was not based on memory or guesswork.</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. Reproducible pseudocode</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 or record.journal_abbrev</p><p> if_result = lookup_if_public_iikx(journal_query)</p><p> 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=Pending Verification}*'</p><p> else:</p><p> record.if_annotation = '*{IF=Not Detected}*'</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. Recommended final delivery template</p><p> ```markdown</p><p> in conclusion:</p><p> ...</p><p></p><p> Level of evidence:</p><p></p><p> Direct evidence:</p><p> - ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p> Indirect evidence:</p><p> - …[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)</p><p></p><p> No direct evidence found:</p><p> - ……</p><p></p><p> Mechanism summary:</p><p> 1. ……</p><p> 2. ……</p><p></p><p> Search boundaries:</p><p> This round of searches primarily involved PubMed, PMC, BioC, and bioRxiv; initial screening was based on metadata and abstracts, with only key documents undergoing full-text review. IF annotations were based on publicly accessible sources; documents that could not be matched with high confidence were marked as pending verification or not detected.</p><p></p><p> Complete list of literature information:</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=To be verified}*</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>Write</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_n6dhinpfivabtkqivb_" 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">description</p><p class="text-sm leading-5 text-secondary-fg whitespace-pre-wrap break-words">Applicable Scenarios: Complete a round of biological/biomedical scientific literature retrieval and provide users with detailed and reliable output. 1. After the user initiates a search, the system breaks down the question and keywords. 2. Retrieve literature using public and reproducible data sources. 3. Deduplicate, stratify, classify, and sort the search results. 4. Use clickable text citations in the response. 5. List complete literature information at the end of the document and mark the IF with publicly searchable routes; if high confidence verification is not possible, it must be marked as "to be verified" or "not detected".</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">Related Skills</h3><a class="inline-flex items-center gap-1 text-sm font-semibold text-secondary-fg transition-colors hover:text-primary" href="/skills?category=learn">View all<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 role="link" tabindex="0" class="cursor-pointer"><div class="group relative flex flex-col gap-4 p-5 rounded-3xl bg-board-card overflow-hidden transition-shadow hover:shadow-md h-[320px]"><div class="flex items-center shrink-0"><div class="relative size-8 overflow-hidden rounded-md" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg07-2.png);background-size:cover"><div class="absolute inset-0 flex items-center justify-center"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg" class="text-white" style="filter:drop-shadow(0 0 4px rgba(0, 0, 0, 0.20))"><path d="M12 2.85999C6.96271 2.85999 2.87999 6.94271 2.87999 11.98V14.7647C2.87999 15.7869 3.32535 16.7637 4.11499 17.4143C5.58711 18.6272 8.31779 20.34 12 20.34C15.6822 20.34 18.4129 18.6272 19.885 17.4143C20.6746 16.7637 21.12 15.7869 21.12 14.7647V11.98C21.12 6.94271 17.0373 2.85999 12 2.85999ZM10.48 8.93999H12H13.52C16.4316 8.93999 18.84 11.22 18.84 13.5V15.02C18.84 15.02 17.5867 11.98 15.5818 11.98C14.6409 11.98 14.28 12.4923 14.28 13.0517V13.5C15.6396 13.5 17.364 14.7125 17.5441 14.8493C18.2487 15.3843 18.2541 16.4536 17.5382 16.9734C16.3754 17.8178 14.4746 18.82 12 18.82C9.52543 18.82 7.62459 17.8178 6.46179 16.9734C5.74587 16.4536 5.75133 15.3843 6.45585 14.8493C6.63597 14.7125 8.36035 13.5 9.71999 13.5V13.0517C9.71999 12.4923 9.35908 11.98 8.4182 11.98C6.41332 11.98 5.15999 15.02 5.15999 15.02V13.5C5.15999 11.22 7.56843 8.93999 10.48 8.93999ZM11.62 12.74C10.9907 12.74 10.48 13.2507 10.48 13.88C10.48 13.88 10.5261 14.0449 10.618 14.26H10.86C11.069 14.26 11.24 14.431 11.24 14.64V15.0215C8.71644 15.2527 7.43999 16.54 7.43999 16.54C7.43999 16.54 10.48 16.5875 12 16.5875C13.52 16.5875 16.56 16.54 16.56 16.54C16.56 16.54 15.2836 15.2527 12.76 15.0215V14.64C12.76 14.431 12.931 14.26 13.14 14.26H13.3819C13.4739 14.0449 13.52 13.88 13.52 13.88C13.52 13.2507 13.0093 12.74 12.38 12.74H11.62Z" fill="currentColor"></path></svg></div></div></div><div class="flex flex-col gap-2 shrink-0"><h3 class="text-xl font-semibold leading-7 text-primary line-clamp-1">Transferable skills coach</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Parents input specific scenarios their children encounter, and the system generates a five-step coaching-style guidance plan (underlying logic → life anchors → mid-course confirmation → dialogue techniques → competency naming) to help children build self-identity regarding transferable skills. New features include de-labeling, mid-course confirmation points, and applicable scenario signals.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/gen-images/52af3761d859bac5c79df72dbf52a513f4f3ea5b1019bcd8198ad8ca069c8873.jpeg@small" alt="Transferable skills coach" class="object-cover absolute inset-0 w-full h-full"/><div class="absolute inset-0 bg-black/40 flex items-center justify-center transition-opacity duration-200 opacity-0"><button type="button" class="px-6 py-2 text-sm font-medium text-primary bg-white rounded-full hover:bg-gray-100 transition-colors">Try in YouMind</button></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 role="link" tabindex="0" class="cursor-pointer"><div class="group relative flex flex-col gap-4 p-5 rounded-3xl bg-board-card overflow-hidden transition-shadow hover:shadow-md h-[320px]"><div class="flex items-center shrink-0"><div class="relative size-8 overflow-hidden rounded-md"><img src="https://cdn.gooo.ai/web-images/07340467ddb2ac22e48c1e08c9d6000da3c772336fadbb8180216e023cc268be" alt="Project Data Compilation | Better Organize" class="size-full object-cover"/></div></div><div class="flex flex-col gap-2 shrink-0"><h3 class="text-xl font-semibold leading-7 text-primary line-clamp-1">Project Data Compilation | Better Organize</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Organize scattered materials from your project collection into a structured index document, supporting incremental updates and automatically identifying document types and extracting core information. (Note: Organizing a large amount of material may require a significant number of points.)</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><div class="absolute inset-0 flex items-center justify-center"><img alt="empty" loading="lazy" width="80" height="80" decoding="async" data-nimg="1" class="object-contain opacity-60" style="color:transparent" srcSet="/cdn-cgi/image/width=96,quality=95,format=webp,metadata=none/https%3A%2F%2Fassets.youmind.com%2Fillustrations%2Fempty.png 1x, /cdn-cgi/image/width=256,quality=95,format=webp,metadata=none/https%3A%2F%2Fassets.youmind.com%2Fillustrations%2Fempty.png 2x" src="/cdn-cgi/image/width=256,quality=95,format=webp,metadata=none/https%3A%2F%2Fassets.youmind.com%2Fillustrations%2Fempty.png"/></div><div class="absolute inset-0 bg-black/40 flex items-center justify-center transition-opacity duration-200 opacity-0"><button type="button" class="px-6 py-2 text-sm font-medium text-primary bg-white rounded-full hover:bg-gray-100 transition-colors">Try in YouMind</button></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 role="link" tabindex="0" class="cursor-pointer"><div class="group relative flex flex-col gap-4 p-5 rounded-3xl bg-board-card overflow-hidden transition-shadow hover:shadow-md h-[320px]"><div class="flex items-center shrink-0"><div class="relative size-8 overflow-hidden rounded-md"><img src="https://cdn.gooo.ai/assets/skill-avatar-default.png" alt="Astrological Chart Code – Your Interpersonal Relationship Evolution Tool" class="size-full object-cover"/></div></div><div class="flex flex-col gap-2 shrink-0"><h3 class="text-xl font-semibold leading-7 text-primary line-clamp-1">Astrological Chart Code – Your Interpersonal Relationship Evolution Tool</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">By deeply interpreting your unique birth chart, you can see a "factory settings map" of your universe. Based on this map, you can more clearly see the hidden aspects of yourself and others. It provides an objective mirror, helping you to "know yourself" and "understand others." It lets you know the needs and desires that others cannot express, thereby improving your relationships with children, spouses, in-laws, and colleagues. It adds more color to your life and makes it more fulfilling.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/gen-images/2ed321e8d59459442358130684d0a66b8f1d54834b25cbbec145ab36b12fe8ff.jpeg@small" alt="Astrological Chart Code – Your Interpersonal Relationship Evolution Tool" class="object-cover absolute inset-0 w-full h-full"/><div class="absolute inset-0 bg-black/40 flex items-center justify-center transition-opacity duration-200 opacity-0"><button type="button" class="px-6 py-2 text-sm font-medium text-primary bg-white rounded-full hover:bg-gray-100 transition-colors">Try in YouMind</button></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]">Find your next favorite skill</h3><p class="text-base leading-7 text-secondary-fg md:text-lg">Explore more curated AI skills for research, creation, and everyday work.</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">Explore all 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">Prompts</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="/nano-banana-pro-prompts"><span class="inline-flex items-center gap-1.5">Nano Banana Pro Prompts</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/gpt-image-2-prompts"><span class="inline-flex items-center gap-1.5">GPT Image 2 Prompts<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="/seedance-2-0-prompts"><span class="inline-flex items-center gap-1.5">Seedance 2.0 Prompts</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/gpt-image-1-5-prompts"><span class="inline-flex items-center gap-1.5">GPT Image 1.5 Prompts</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/seedream-4-dot-5-prompts"><span class="inline-flex items-center gap-1.5">Seedream 4.5 Prompts</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/gemini-3-prompts"><span class="inline-flex items-center gap-1.5">Gemini 3 Pro Prompts</span></a></div></div><div class="min-w-0"><div class="mb-[16px] text-base font-semibold">Resources</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="/for-agents?utm_source=footer"><span class="inline-flex items-center gap-1.5">For agents</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/blog/best-notebooklm-alternatives"><span class="inline-flex items-center gap-1.5">NotebookLM Alternatives</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/landing/gpt-image-2-slides"><span class="inline-flex items-center gap-1.5">GPT Image 2 Slides</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/landing/x-viral-articles"><span class="inline-flex items-center gap-1.5">𝕏 Viral Articles Tracking</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/model-arena/nano-banana-2-vs-nano-banana-pro"><span class="inline-flex items-center gap-1.5">Nano Banana 2 VS Pro</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/landing/image-to-prompt"><span class="inline-flex items-center gap-1.5">Image to Prompt</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/landing/lenny-career-coach"><span class="inline-flex items-center gap-1.5">Lenny Career Coach</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/abti"><span class="inline-flex items-center gap-1.5">ABTI Personality Test</span></a></div></div><div class="min-w-0"><div class="mb-[16px] text-base font-semibold">Product</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="/skills"><span class="inline-flex items-center gap-1.5">Skills</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/#download"><span class="inline-flex items-center gap-1.5">Extension</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/#download"><span class="inline-flex items-center gap-1.5">App</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/pricing"><span class="inline-flex items-center gap-1.5">Pricing</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/blog"><span class="inline-flex items-center gap-1.5">Blog</span></a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/updates"><span class="inline-flex items-center gap-1.5">Updates</span></a></div></div><div class="mt-0 min-w-0"><div class="mb-[16px] text-base font-semibold">Company</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)]">Contact us</div><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/privacy">Privacy</a><a class="break-words 2xl:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/terms">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/0im9dk6sto01w.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[609031,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\"],\"default\"]\n3:I[470962,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\"],\"default\"]\n4:I[335838,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0gjs_lf9t1oe~.js\",\"/_next/static/chunks/0vot-b62.02l_.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\"],\"default\"]\nc:I[663151,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0bg3he40o.p0g.js\",\"/_next/static/chunks/0sj~.uwu554-4.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0vot-b62.02l_.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\"],\"default\"]\n16:I[506740,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\"],\"OutletBoundary\"]\n17:\"$Sreact.suspense\"\n1a:I[506740,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\"],\"ViewportBoundary\"]\n1c:I[506740,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\"],\"MetadataBoundary\"]\n1e:I[471642,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0y7kl_~hecbvl.js\",\"/_next/static/chunks/11-ugo8gu_lpv.js\",\"/_next/static/chunks/0o6.v4rpm49lp.js\"],\"Header\"]\n20:I[238910,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"\"]\n21:I[148724,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"default\"]\n22:I[855331,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"PostHogProvider\"]\n23:I[612645,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0r"])</script><script>self.__next_f.push([1,"e8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"GtagProvider\"]\n24:I[242092,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"ThemeProvider\"]\n26:I[515144,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0y7kl_~hecbvl.js\",\"/_next/static/chunks/11-ugo8gu_lpv.js\",\"/_next/static/chunks/0o6.v4rpm49lp.js\"],\"Footer\"]\n27:I[825979,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"default\"]\n29:I[407240,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"I18nProvider\"]\n2a:I[422187,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"NuqsAdapter\"]\n2b:I[470174,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz"])</script><script>self.__next_f.push([1,"-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"default\"]\n2c:I[416398,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"GoogleOneTapPrompt\"]\n2d:I[524955,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"default\"]\n2e:I[170637,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"default\"]\n2f:I[246331,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"Toaster\"]\n30:I[673227,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\"],\"PageRedirecting\"]\n:HL[\"/_next/static/chunks/15neakcfuzis0.css\",\"style\"]\n:HL[\"/_next/static/chunks/0yg07u8pgfkh9.css\",\"style\"]\n:HL[\"/_next/static/chunks/0u74ygr9r--6v.css\",\"style\"]\n:HL[\"/_next/static/chunks/13zgkp0b5u5f-.css\",\"style\"]\n:HL[\"/_next/static/chunks/13mo0tthww22f.css\",\"style\"]\n:HL[\"/_next/static/chunks/0bw4_8rap76eh.css\",\"style\"]\n:HL[\"/_next/static/chunks/0u5n7tvus2nwq.css\",\"style\"]\n:HL[\"/_next/static/chunks/0oe.-o9dimj57.css\",\"style\"]\n:HL[\"/_next/static/chunks/03ukdotr2asba.css\",\"style\"]\n:HL[\"/_next/static/chunks/0n25wkubrqosu.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\",\"f"])</script><script>self.__next_f.push([1,"ont\",{\"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/f274a7d773de54c9-s.163vk5zt4o7.p.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/0-vh_6gqbedzc.css\",\"style\"]\n0:{\"P\":null,\"c\":[\"\",\"skills\",\"biomed-research-assistant-zXJCpN71mICVZ2\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[[\"locale\",\"en-US\",\"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/15neakcfuzis0.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0yg07u8pgfkh9.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0.2kqgmoirc9z.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/0u74ygr9r--6v.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/13zgkp0b5u5f-.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"2\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/13mo0tthww22f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"3\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0bw4_8rap76eh.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"4\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0u5n7tvus2nwq.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"5\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0oe.-o9dimj57.css\",\"precedence\":\"n"])</script><script>self.__next_f.push([1,"ext\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0u74ygr9r--6v.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/13zgkp0b5u5f-.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"2\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/13mo0tthww22f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"3\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0bw4_8rap76eh.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"4\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0u5n7tvus2nwq.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"5\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0oe.-o9dimj57.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0i_4~rbopx69k.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/11g82l.5hhrm9.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/0vrh_uffzaddt.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/06k104-0v0snc.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/0yn91s91gmmxu.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/chunks/0b86d98sz-c8i.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L5\"]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/03ukdotr2asba.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0n25wkubrqosu.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/0y7kl_~hecbvl.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/11-ugo8gu_lpv.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0o6.v4rpm49lp.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L6\"]}],{\"children\":[\"$L7\",{\"children\":[\"$L8\",{\"children\":[\"$L9\",{},null,false,null]},null,false,\"$@a\"]},null,false,\"$@a\"]},null,false,null]},null,false,null]},null,false,null],\"$Lb\",false]],\"m\":\"$undefined\",\"G\":[\"$c\",[\"$Ld\",\"$Le\",\"$Lf\",\"$L10\",\"$L11\",\"$L12\",\"$L13\",\"$L14\"]],\"S\":false,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"5aPekNLLtzydUEdjD1-FG\"}\n7:[\"$\",\"$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\"}]]}]\n8:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",nul"])</script><script>self.__next_f.push([1,"l,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n9:[\"$\",\"$1\",\"c\",{\"children\":[\"$L15\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0-vh_6gqbedzc.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0w~mw2hur4s6d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0~pxzfso9_b5_.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0-e4j7fu~w~it.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0ri2baxbh-rap.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/0g-9ndz.mv4dd.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/044da62swvwwz.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/0kpqv9w34iff0.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/12esm9pb26rc4.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/0nr6wsyjnfx51.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/0p99dkfg6coxz.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/07ncsbnswrmid.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L16\",null,{\"children\":[\"$\",\"$17\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@18\"}]}]]}]\n19:[]\na:\"$W19\"\nb:[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L1a\",null,{\"children\":\"$L1b\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L1c\",null,{\"children\":[\"$\",\"$17\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L1d\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\nd:[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/15neakcfuzis0.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\ne:[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0yg07u8pgfkh9.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\nf:[\"$\",\"link\",\"2\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0u74ygr9r--6v.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n10:[\"$\",\"link\",\"3\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/13zgkp0b5u5f-.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n11:[\"$\",\"link\",\"4\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/13mo0tthww22f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n12:[\"$\",\"link\",\"5\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0bw4_8rap76eh.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n13:[\"$\",\"link\",\"6\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0u5n7tvus2nwq.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n14:[\"$\",\"link\",\"7\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0oe.-o9dimj57.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n6:[[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@graph\\\":[{\\\"@type\\\":\\\"Organization\\\",\\\"@id\\\":\\\"https://youmind.com/#organization\\\",\\\"name\\\":\\\"YouMind\\\",\\\"url\\\":\\\"https://youmind.com\\\",\\\"logo\\\":\\\"https://marketing-assets.youmind.com/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.com/#website\\\",\\\"url\\\":\\\"https://youmind.com\\\",\\\"name\\\":\\\"YouMind\\\",\\\"description\\\":\\\"Learn smarter. Create bolder.\\\",\\\"publisher\\\":"])</script><script>self.__next_f.push([1,"{\\\"@id\\\":\\\"https://youmind.com/#organization\\\"}}]}\"}}],[\"$\",\"main\",null,{\"className\":\"flex flex-col min-h-screen overflow-x-clip marketing-body\",\"children\":[[\"$\",\"$L1e\",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\"}]}],\"$L1f\"]}]]\n5:[\"$\",\"html\",null,{\"lang\":\"en-US\",\"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\",\"href\":\"https://cms-assets.youmind.com\",\"crossOrigin\":\"anonymous\"}],[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://marketing-assets.youmind.com\",\"crossOrigin\":\"anonymous\"}],[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"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://marketing-assets.youmind.com/logo-128.png\",\"sizes\":\"128x128\"}],[\"$\",\"link\",null,{\"data-rh\":\"true\",\"rel\":\"apple-touch-icon\",\"href\":\"https://marketing-assets.youmind.com/logo-96.png\",\"sizes\":\"96x96\"}],[\"$\",\"link\",null,{\"data-rh\":\"true\",\"rel\":\"apple-touch-icon\",\"href\":\"https://marketing-assets.youmind.com/logo-256.png\",\"sizes\":\"256x256\"}],[\"$\",\"link\",null,{\"data-rh\":\"true\",\"rel\":\"apple-touch-icon\",\"href\":\"https://marketing-assets.youmind.com/logo-512.png\",\"sizes\":\"512x512\"}],[[\"$\",\"$L20\",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 \"}}],[\"$\",\"$L20\",null,{\"src\":\"https://cdn.firstpromoter.com/fpr.js\",\"strategy\":\"lazyOnload\"}]],[[\"$\",\"$L20\",null,{\"src\":\"https://www.googletagmanager.com/gtag/js?id=G-EP3DKQTSZ9\",\"strategy\":\"lazyOnload\"}],[\"$\",\"$L20\",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 }\"}],[\"$\",\"$L20\",null,{\"src\":\"https://cdn.gooo.ai/assets/iconfont_icons.js\",\"strategy\":\"lazyOnload\"}]]}],[\"$\",\"body\",null,{\"translate\":\"no\",\"suppressHydrationWarning\":true,\"className\":\"bg-white text-foreground\",\"children\":[[\"$\",\"$L21\",null,{\"shadow\":false,\"color\":\"var(--primary)\",\"showSpinner\":false,\"height\":3,\"showForHashAnchor\":false}],[\"$\",\"$L22\",null,{\"children\":[\"$\",\"$L23\",null,{\"children\":[\"$\",\"$L24\",null,{\"attribute\":\"class\",\"defaultTheme\":\"light\",\"forcedTheme\":\"light\",\"enableSystem\":true,\"disableTransitionOnChange\":true,\"children\":\"$L25\"}]}]}]]}]]}]\n1f:[\"$\",\"$L26\",null,{\"forceLight\":true,\"labels\":{\"prompts\":\"Prompts\",\"resources\":\"Resources\",\"nanoBananaPrompts\":\"Nano Banana Pro Prompts\",\"gptImage2Prompts\":\"GPT Image 2 Prompts\",\"seedance20Prompts\":\"Seedance 2.0 Prompts\",\"gptImage1_5Prompts\":\"GPT Image 1.5 Prompts\",\"seedream4_5Prompts\":\"Seedream 4.5 Prompts\",\"ge"])</script><script>self.__next_f.push([1,"mini3Prompts\":\"Gemini 3 Pro Prompts\",\"abti\":\"ABTI Personality Test\",\"gptImage2Slides\":\"GPT Image 2 Slides\",\"xViralArticlesTracking\":\"𝕏 Viral Articles Tracking\",\"nanoBanana2VsPro\":\"Nano Banana 2 VS Pro\",\"imageToPrompt\":\"Image to Prompt\",\"lennyCareerCoach\":\"Lenny Career Coach\",\"forAgents\":\"For agents\",\"blog\":\"Blog\",\"blogs\":\"Blog\",\"notebooklmAlternatives\":\"NotebookLM Alternatives\",\"product\":\"Product\",\"skills\":\"Skills\",\"extension\":\"Extension\",\"app\":\"App\",\"updates\":\"Updates\",\"pricing\":\"Pricing\",\"company\":\"Company\",\"contactUs\":\"Contact us\",\"privacy\":\"Privacy\",\"terms\":\"Terms\"}}]\n25:[\"$\",\"$L27\",null,{\"formats\":\"$undefined\",\"locale\":\"en-US\",\"messages\":{\"LocaleLayout\":{\"title\":\"YouMind - AI Creation Studio\",\"description\":\"YouMind is an innovative creation agent that harnesses the power of generative AI to transform diverse materials into inspired creations.\"},\"Footer\":{\"prompts\":\"Prompts\",\"nanoBanana2VsPro\":\"Nano Banana 2 VS Pro\",\"nanoBananaPrompts\":\"Nano Banana Pro Prompts\",\"gptImage1_5Prompts\":\"GPT Image 1.5 Prompts\",\"seedream4_5Prompts\":\"Seedream 4.5 Prompts\",\"gemini3Prompts\":\"Gemini 3 Pro Prompts\",\"seedance20Prompts\":\"Seedance 2.0 Prompts\",\"product\":\"Product\",\"pricing\":\"Pricing\",\"blog\":\"Blog\",\"notebooklmAlternatives\":\"NotebookLM Alternatives\",\"updates\":\"Updates\",\"company\":\"Company\",\"contactUs\":\"Contact us\",\"privacy\":\"Privacy\",\"terms\":\"Terms\",\"gptImage2Prompts\":\"GPT Image 2 Prompts\",\"gptImage2Slides\":\"GPT Image 2 Slides\",\"xViralArticlesTracking\":\"𝕏 Viral Articles Tracking\",\"abti\":\"ABTI Personality Test\",\"forAgents\":\"For agents\",\"resources\":\"Resources\",\"skills\":\"Skills\",\"extension\":\"Extension\",\"app\":\"App\",\"blogs\":\"Blog\",\"lennyCareerCoach\":\"Lenny Career Coach\",\"imageToPrompt\":\"Image to Prompt\"},\"Auth\":{\"Footnote\":{\"desc\":\"By continuing, you agree to the \",\"terms\":\"Terms\",\"privacy\":\"Privacy\",\"and\":\" and \"},\"Login\":{\"title\":\"Join YouMind\",\"description\":\"\",\"action\":\"Continue\",\"actionLoading\":\"Sending email\",\"actionByOAuth\":\"Continue with {provider}\",\"visualSloganPrefix\":\"Create\",\"visualSloganEmphasis\":\"bolder.\",\"authError\":\"Authentication failed. Please try signing in again.\",\"form\":{\"email\":{\"label\":\"Email\",\"invalid\":\"Please enter a valid email\",\"placeholder\":\"Enter your email\",\"invalidWithInvite\":\"Please enter a valid email\"},\"inviteCode\":{\"label\":\"Invitation code\",\"placeholder\":\"Enter invite code (optional)\",\"invalid\":\"Invalid invitation code\"},\"turnstile\":{\"required\":\"Please complete the verification\"}}},\"OTP\":{\"title\":\"Enter the code\",\"description\":\"We've sent email to {email}\",\"goBack\":\"Back\",\"action\":\"Continue\",\"actionLoading\":\"Validating code\",\"resend\":\"Resend\",\"resending\":\"Sending\",\"resendSuccess\":\"Code sent\",\"form\":{\"token\":{\"label\":\"Token\",\"invalid\":\"Please enter the valid code.\"},\"turnstile\":{\"required\":\"Please complete the verification\"}}},\"Onboard\":{\"title\":\"Almost!\",\"description\":\"What should we call you?\",\"action\":\"Continue\",\"actionLoading\":\"Remembering your name\",\"changeAccount\":\"Change account?\",\"form\":{\"name\":{\"label\":\"Name\",\"placeholder\":\"Enter your name\",\"invalid\":\"Please enter a name\"}}},\"Waiting\":{\"logout\":\"Sign out\"}},\"Header\":{\"overview\":\"Overview\",\"useCases\":\"Use cases\",\"skills\":\"Skills\",\"prompts\":\"Prompts\",\"pricing\":\"Pricing\",\"blog\":\"Blog\",\"updates\":\"Updates\",\"signIn\":\"Sign in\",\"signOut\":\"Sign out\",\"openYouMind\":\"Open YouMind\"},\"Invite\":{\"metaTitle\":\"Invite friends to YouMind\",\"metaDescription\":\"Use your invite code to join YouMind and unlock 200 bonus credits.\"},\"Pricing\":{\"metaTitle\":\"YouMind Pricing\",\"metaDescription\":\"YouMind is the reimagined AI writing tool that meets you where you think. Transform your scattered ideas into complete, polished writing.\",\"multiModeSources\":{\"title\":\"Multi-mode sources\",\"description\":\"You can save everything with one click - YouTube videos, podcasts, webpages, audios, PDFs, and images, etc.\"},\"creativeBoards\":{\"title\":\"Creative boards\",\"description\":\"The board in YouMind is an organizer that changes chaos into sorted projects. It helps streamline your workflow, and transform your creative ideas into a final work.\"},\"powerfulAI\":{\"title\":\"Powerful AI\",\"description\""])</script><script>self.__next_f.push([1,":\"Powered by top AI models such as OpenAI, Anthropic, Google, and DeepSeek, you will experience consistent high-quality AI capabilities for your creation.\"},\"faq\":{\"title\":\"FAQs\",\"questions\":{\"howToUse\":{\"question\":\"How can I use YouMind?\",\"answer\":\"You can collect information using the YouMind browser extension or mobile app, and engage in deep thinking and creation by visiting youmind.ai.\"},\"isFree\":{\"question\":\"Is YouMind free?\",\"answer\":\"YouMind offers a free plan that gives you full access to our platform with included usage credits. Once you've explored what YouMind can do for you, premium plans are available to support higher usage limits and advanced features.\"},\"howToPay\":{\"question\":\"How to pay for YouMind?\",\"answer\":\"You can make payments through Stripe using credit cards, mobile payments, and other methods. You can pay monthly or annually.\"}}}},\"Skills\":{\"meta\":{\"title\":\"Explore AI Skills for Learning, Writing \u0026 Creation - YouMind Skills\",\"description\":\"Discover 100+ reusable AI Skills for research, content creation, social media, and presentations. No coding needed—just run and get results.\",\"packTitle\":\"{name} - YouMind Skills Pack\",\"skillTitle\":\"{name} - YouMind Skill\",\"tryFree\":\"Try free on YouMind.\",\"defaultPackDescription\":\"Explore this skill pack on YouMind.\",\"defaultSkillDescription\":\"Try this AI skill on YouMind.\"},\"guideText\":\"Skill Quick Start Guide\",\"seeWhatsPossible\":\"See what's possible\",\"skillsDescription\":\"Skills is your best partner for learning and creating in YouMind, assisting you in reading and thinking.\",\"recommendedPacks\":\"Recommended packs\",\"exploreSkills\":\"Explore skills\",\"searchPlaceholder\":\"Search\",\"latest\":\"Latest\",\"noSkillsFound\":\"No skills found\",\"tryInYouMind\":\"Try in YouMind\",\"backToSkills\":\"Skills\",\"copyLink\":\"Copy link\",\"install\":\"Install\",\"tryIt\":\"Try It\",\"getWith\":\"Get With\",\"open\":\"Open\",\"author\":\"Author\",\"categoriesLabel\":\"Categories\",\"tools\":\"Tools\",\"instructions\":\"Instructions\",\"instructionPrivate\":\"The author has set the instructions to private. Below is a brief overview.\",\"instructionEmpty\":\"No instructions.\",\"instructionVisibleToCreator\":\"Visible to you as the creator\",\"featured\":{\"badge\":\"Editor's Pick\",\"title\":\"Why we love this skill\",\"by\":\"Featured by\",\"defaultCurator\":\"YouHome Editors\"},\"relatedSkills\":{\"title\":\"Related Skills\",\"viewAll\":\"View all\"},\"cta\":{\"title\":\"Find your next favorite skill\",\"description\":\"Explore more curated AI skills for research, creation, and everyday work.\",\"button\":\"Explore all skills\"},\"skills\":\"skills\",\"credits\":\"credits\",\"goToGallery\":\"Go to gallery\",\"noBioFound\":\"No bio found.\",\"installSuccess\":\"Skill installed successfully\",\"installFailed\":\"Failed to install skill\",\"categories\":{\"learn\":\"Learn\",\"write\":\"Write\",\"create\":\"Create\",\"life\":\"Life\",\"research\":\"Research\",\"images\":\"Image\",\"slides\":\"Slides\",\"webpage\":\"Webpage\",\"other\":\"More\"},\"aiAssistant\":{\"hoverHint\":\"AI Assistant\",\"title\":\"Need a specific Skill?\",\"description\":\"Tell me what you need, and I will try my best to find it for you!\",\"buttonText\":\"Ask AI\",\"prompt\":\"Recommend me some skills\"},\"aiFind\":{\"buttonText\":\"AI Find for You\",\"prompt\":\"Help me find a skill about \\\"{query}\\\"\"},\"monthlyTopTitle\":\"Monthly Top\",\"monthlyTopDesc\":\"This month's hottest new skills — see what everyone's exploring.\",\"featuredTitle\":\"Featured\",\"featuredDesc\":\"Hand-picked by our team — quality skills, ready to use.\",\"monthlyRankingEmpty\":\"No skills made the chart this month — be the first to create yours!\",\"featuredRankingEmpty\":\"No featured skills yet. Stay tuned for our picks!\",\"goExploreSkills\":\"Explore Skills\",\"goCreateSkill\":\"Create a Skill\",\"monthlyTopTabPaid\":\"Paid ranking\",\"monthlyTopTabFree\":\"Free ranking\"},\"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 rede"])</script><script>self.__next_f.push([1,"emed.\",\"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\",\"creditPackHeading\":\"You've received credits\",\"summary\":\"{months} of YouMind {tier}\",\"creditPackSummary\":\"{quantity} × 10,000 credits · {credits} credits total\",\"expiryNotice\":\"Redeem expires on {date}. Sign in with the email this gift was sent to in order to redeem.\",\"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\":\"This gift has expired. Please contact the sender for assistance.\"},\"CreatorRewardBanner\":{\"homeLabel\":\"Creator Rewards Plan launched\",\"skillsLabel\":\"Creator Rewards Plan launched\"},\"OverviewV2\":{\"hero\":{\"ariaLabel\":\"YouMind hero\",\"titlePrefix\":\"Create\",\"titleEmphasis\":\"bolder.\",\"descriptionLine1\":\"Understand anything that inspires you.\",\"descriptionLine2\":\"Create everything that represents you.\",\"cta\":\"Start for free\",\"studioTitle\":\"Your AI Creation Studio with Taste\",\"storyLink\":\"Why we built an AI Creation Studio, not a tool\",\"storyVideoOpenLabel\":\"Play the YouMind story video\",\"storyVideoCloseLabel\":\"Close video\",\"storyVideoTitle\":\"Why we built an AI Creation Studio, not a tool\",\"storyLinkTitle\":\"What creating can change for you?\",\"storyLinkSubtitle\":\"Watch the brand film\"},\"useCases\":{\"ariaLabel\":\"Use cases\",\"headlineLine1\":\"Every idea deserves to take shape.\",\"headlineLine2\":\"YouMind makes it happen.\",\"items\":[{\"image\":\"use-case-capture-v4.webp\",\"title\":\"Capture what sparks you\",\"body\":\"You stumble on things that matter — articles, videos, fragments of thought that feel like they're leading somewhere. YouMind holds them together, ready for the moment you know what to do with them.\"},{\"image\":\"use-case-thinking-v4.webp\",\"title\":\"Drive the thinking further\",\"body\":\"YouMind sees what you've collected and where the connections are forming. It asks the question you haven't asked yet, fills in the gap you skipped, and keeps the thread alive — so the idea grows instead of stalling.\"},{\"image\":\"use-case-shape-v4.webp\",\"title\":\"Shape it into something real\",\"body\":\"Everything YouMind produces is a starting point. You can rewrite it, rearrange it, refine it until it sounds like you. Articles, slides, videos, webpages — what started as scattered sparks becomes something real, ready to share from right here.\"}]},\"made\":{\"ariaLabel\":\"Made with YouMind\",\"title\":\"Made with YouMind\",\"description\":\"Real work. Real creators. Made right here.\",\"items\":[[\"made-with-youmind/page-01/01-luxury-travel.webp\",\"Luxury Travel\",\"Slides\"],[\"made-with-youmind/page-01/02-minimalist-design-studio.webp\",\"Minimalist Design Studio\",\"Webpage\"],[\"made-with-youmind/page-01/03-y2k-about-me.webp\",\"Y2K About Me\",\"Webpage\"],[\"made-with-youmind/page-01/04-pink-retro-podcaster.webp\",\"Pink-retro Podcaster\",\"Webpage\"],[\"made-with-youmind/page-01/05-desktop-scrapbook.webp\",\"Desktop Scrapbook\",\"Webpage\"],[\"made-with-youmind/page-01/06-kelin-blue-gallery-pitch.webp\",\"Kelin Blue Gallery Pitch\",\"Slides\"],[\"made-with-youmind/page-02/01-particle-animation-landing-page.webp\",\"Particle Animation Landing Page\",\"Webpage\"],[\"made-with-youmind/page-02/02-modern-architect.webp\",\"Modern Architect\",\"Slides\"],[\"made-with-youmind/page-02/03-welcome-to-our-wedding.webp\",\"Welcome to our wedding\",\"Webpage\"],[\"made-with-youmind/page-02/04-creative-cola-ads-v2.webp\",\"Creative Cola Ads\",\"Video\"],[\"made-with-youmind/page-02/05-realistic-commercial-photoshoot.webp\",\"Realistic commercial photoshoot\",\"Image\"],[\"made-with-youmind/page-02/06-elegant-folded-paper-cartography.webp\",\"Elega"])</script><script>self.__next_f.push([1,"nt folded-paper cartography\",\"Image\"]],\"paginationLabel\":\"Made with YouMind pages\",\"paginationPage\":\"Show page {page}\"},\"banner\":{\"ariaLabel\":\"Meaning to make\",\"line1\":\"You've been meaning to create something.\",\"line2\":\"For how long now?\"},\"creators\":{\"ariaLabel\":\"Creators\",\"carouselLabel\":\"Creator carousel\",\"title\":\"Meet our creators\",\"description\":\"People building real things with YouMind — in their own way, on their own terms.\",\"cards\":[[\"creators-v2/01-youtuber.webp\",\"YouTuber\",\"Marco\",\"YouMind handles my topic research, script, thumbnail, all in one conversation. Now I can spend my time actually filming and editing.\"],[\"creators-v2/02-student-instagramer.webp\",\"Student \u0026 Instagramer\",\"Zora Mitchell\",\"With YouMind, a photo I took last week might turn into a paragraph, or a half-formed thought becomes a visual. It's like a space where everything can talk to each other.\"],[\"creators-v2/03-high-school-teacher.webp\",\"High school teacher\",\"Priya Sharma\",\"I told YouMind 'make a Newton's First Law lesson, add some memes students would like', and it generated everything and turned it into a video. My students said it's the first time they found physics 'actually interesting'.\"],[\"creators-v2/04-indie-developer.webp\",\"Indie Developer\",\"Alex Turner\",\"YouMind is more like my product and go-to-market copilot. It tracks similar products, user discussions, and launch patterns, while remembering why I made each product call.\"],[\"creators-v2/05-small-business-owner.webp\",\"Small Business Owner\",\"Carlos Reyes\",\"YouMind lets me create professional-looking posters and captions quickly. Customers think I hired a team.\"],[\"creators-v2/06-career-coach.webp\",\"Career Coach\",\"Nina\",\"After a few cases, YouMind learned how I read, question, and unpack a client. My tacit knowledge became a playbook, then a reusable skill. With a new student, I get to what matters faster.\"],[\"creators-v2/07-product-manager.webp\",\"Product Manager\",\"Emma Chen\",\"I keep meeting notes, research, feedbacks in YouMind. It untangles the mess and spots the insights. First time AI actually fits my workflow instead of adding effort.\"]]},\"stats\":{\"ariaLabel\":\"YouMind in numbers\",\"title\":\"YouMind in numbers\",\"description\":\"What starts as a spark — a note, a screenshot, a passing thought — can become something finished in YouMind. Across the world, creators are turning sparks into finished work, every day.\",\"items\":[[\"CREATORS\",\"600K+\",\"Choosing YouMind as their creative workspace.\"],[\"WORKS\",\"3M+\",\"Documents, visuals, slides, and more — created and shipped.\"],[\"COUNTRIES \u0026 REGIONS\",\"70+\",\"Different languages, cultures, and ways of working.\"],[\"SKILLS\",\"2K+\",\"Reusable skills built and shared by creators.\"]]},\"ready\":{\"ariaLabel\":\"Ready to create\",\"title\":\"Ready to create?\",\"placeholder\":\"Ask YouMind to create a report about ...\",\"submitLabel\":\"Submit prompt\",\"toolsLabel\":\"Creation modes\",\"recommendationsLabel\":\"Creation recommendations\",\"previousLabel\":\"Previous examples\",\"nextLabel\":\"Next examples\",\"toolLabels\":{\"learn\":\"Learn\",\"write\":\"Write\",\"image\":\"Image\",\"slides\":\"Slides\",\"webpage\":\"Webpage\"},\"learnPrompts\":[\"Conduct a market analysis on water bottles\",\"Run user research for a smart-home device on Reddit\",\"Explain why Elon Musk is giving xAI servers to Anthropic\",\"Turn a16z's latest podcast into insight notes\",\"Study Franz Kafka's literary critics\"],\"writePrompts\":[\"Write an opinion article on Trump's visit to China\",\"Draft a sarcastic tweet about the Musk-Altman trial\",\"Generate an SEO blog on Seedance 2.0 to boost traffic\",\"Turn Dan Koe's hottest YouTube episode into an essay\",\"Conduct a literature review on Embodied AI's commercialization\"]},\"closing\":{\"titlePrefix\":\"Create\",\"titleEmphasis\":\"bolder.\",\"descriptionLine1\":\"Understand anything that inspires you.\",\"descriptionLine2\":\"Create everything that represents you.\",\"cta\":\"Create now\",\"downloads\":{\"ariaLabel\":\"Download YouMind\",\"browser\":{\"title\":\"Browser\",\"action\":\"Add extension\"},\"android\":{\"title\":\"Android\",\"action\":\"Coming soon\"},\"ios\":{\"title\":\"iOS\",\"action\":\"Get app\"},\"macos\":{\"title\":\"macOS\",\"action\":"])</script><script>self.__next_f.push([1,"\"Coming soon\"}}},\"studio\":{\"workspaceName\":\"Whip up a coffee\",\"allTasks\":\"Your tasks\",\"tasks\":[{\"id\":\"morning-ai-digest\",\"title\":\"Morning AI digest\",\"kind\":\"schedule\",\"statusLabel\":\"Scheduled task\",\"prompt\":\"Every day at 9 AM, pull the top 5 trending topics from Reddit, X, and Hacker News. One sentence each, with source links.\",\"messages\":[{\"type\":\"assistant\",\"body\":\"I have successfully scheduled the daily trending topics summary task for you. Every day at 9:00 AM, I will summarize the top 5-10 trending topics from Reddit, X, and Hacker News, providing:\"},{\"type\":\"tool\",\"title\":\"Morning AI digest\",\"detail\":\"Schedule created\"}],\"summaryItems\":[\"Topic Title\",\"One-sentence explanation\",\"Reputable source link (when available)\"],\"todoItems\":[\"Schedule the daily Morning AI digest task.\"],\"finalNote\":\"First run: tomorrow 09:00. Manage in Scheduled Tasks if you want to pause or tweak.\"},{\"id\":\"matcha-brands-report\",\"title\":\"Top Matcha Brands Report\",\"kind\":\"research\",\"statusLabel\":\"Research task\",\"prompt\":\"Compare the top matcha brands for a boutique coffee shop. Include price range, flavor profile, sourcing notes, and who each brand is best for.\",\"messages\":[{\"type\":\"assistant\",\"body\":\"I compared premium ceremonial and everyday matcha brands across sourcing, price, taste, and availability, then grouped them by practical use case.\"},{\"type\":\"tool\",\"title\":\"Brand comparison table\",\"detail\":\"Prepared brand matrix\"},{\"type\":\"assistant\",\"body\":\"The report highlights which brands work best for lattes, retail shelves, tasting flights, and a premium single-origin menu.\"}],\"summaryItems\":[\"Price range\",\"Flavor profile\",\"Sourcing notes\",\"Best-fit use case\"],\"todoItems\":[\"Research trending matcha brands\",\"Gather pricing, sourcing, and taste data for top 10 brands\",\"Identify specific influencer endorsements per brand\",\"Write structured comparison report\"],\"finalNote\":\"Ready for a buyer review or a short supplier shortlist.\"},{\"id\":\"trust-talk-deck\",\"title\":\"Building Trust Talk Deck\",\"kind\":\"presentation\",\"statusLabel\":\"Deck draft\",\"prompt\":\"Create a 12-slide deck for a 15-min talk: \\\"Building trust with a small audience.\\\" Minimal text, bold visuals, speaker notes included.\",\"messages\":[{\"type\":\"assistant\",\"body\":\"I drafted a compact talk arc for creators, founders, and operators with small but high-trust audiences.\"},{\"type\":\"tool\",\"title\":\"Create slides\",\"detail\":\"Generated deck and speaker notes\"},{\"type\":\"assistant\",\"body\":\"The final deck includes 12 bold slide images, a speaker-notes document, and pacing guidance for a 15-minute talk.\"}],\"summaryItems\":[\"Talk outline\",\"Slide images\",\"Speaker notes\",\"Pacing guide\"],\"todoItems\":[\"Drafting outline as private planning doc\",\"Get user confirmation on outline\",\"Generate slide images\",\"Compose deck with speaker notes\"],\"finalNote\":\"Ready to present, trim, or expand into a longer workshop deck.\"},{\"id\":\"portfolio-site\",\"title\":\"My portfolio site\",\"kind\":\"website\",\"statusLabel\":\"Webpage\",\"prompt\":\"Build a minimal personal portfolio: short bio, three featured projects with thumbnails, contact section. Clean sans-serif, dark mode.\",\"messages\":[{\"type\":\"assistant\",\"body\":\"I built a clean dark-mode portfolio page with a compact bio, three project cards, and a contact section.\"},{\"type\":\"tool\",\"title\":\"Create webpages\",\"detail\":\"Webpage modified\"},{\"type\":\"assistant\",\"body\":\"The page is ready as a single HTML artifact with system fonts and no external dependencies.\"}],\"summaryItems\":[\"Short bio\",\"Three project cards\",\"Contact section\",\"Dark mode\"],\"todoItems\":[\"Build the personal portfolio webpage.\"],\"finalNote\":\"Ready to open, edit copy, or swap links.\"},{\"id\":\"headphones-video\",\"title\":\"Headphones Product Video\",\"kind\":\"video\",\"statusLabel\":\"Video clip\",\"prompt\":\"Create a bright 15-second product video for cream wireless headphones. Keep it premium, airy, and minimal, with soft daylight, floating product motion, and a clean end frame.\",\"messages\":[{\"type\":\"assistant\",\"body\":\"I used the Create video skill to generate a light, polished product spot with soft shadows, floating motion, and close-up ma"])</script><script>self.__next_f.push([1,"terial details.\"},{\"type\":\"tool\",\"title\":\"Create video\",\"detail\":\"Created video clip\"},{\"type\":\"assistant\",\"body\":\"The final clip keeps the headphones centered in a bright studio palette, with gentle camera movement and a premium retail feel.\"}],\"summaryItems\":[\"Soft daylight scene\",\"Floating product motion\",\"Material close-ups\",\"Clean end frame\"],\"todoItems\":[\"Generate bright product video concept\",\"Render 15-second headphones clip\",\"Prepare preview player\",\"Summarize shot breakdown\"],\"finalNote\":\"Ready for a campaign mockup or a product-page hero.\"}],\"aria\":{\"materials\":\"Materials\",\"webpages\":\"Webpages\",\"newTask\":\"New task\",\"fileCount\":\"{count} files\",\"shareTask\":\"Share task\",\"moreActions\":\"More actions\"},\"artifactTitles\":{\"matchaReport\":\"Top 10 Matcha Brands: Wellness Creator Report 2026\",\"slidesOutline\":\"Outline - Building Trust with a Small Audience\",\"slidesNotes\":\"Speaker Notes - Building Trust with a Small Audience\",\"slidesDeck\":\"Building Trust with a Small Audience\",\"website\":\"Mira: AI Product \u0026 Community\"},\"common\":{\"thoughtForAWhile\":\"Thought for a while\",\"runningSkill\":\"Running skill\",\"planned\":\"Planned\",\"loadedOneTool\":\"Loaded 1 tool\",\"documentCreated\":\"Document created\",\"taskCompleted\":\"Task completed\",\"allTodosCompleted\":\"All to-dos completed\",\"createSlides\":\"Create slides\",\"createVideo\":\"Create video\",\"createWebpages\":\"Create webpages\",\"research\":\"research\",\"open\":\"open\",\"slidesModified\":\"Slides modified\"},\"panel\":{\"morePreviewOptions\":\"More preview options\",\"downloadWebpage\":\"Download webpage\",\"shareWebpage\":\"Share webpage\",\"moreWebpageActions\":\"More webpage actions\",\"downloadDeck\":\"Download deck\",\"moreDeckActions\":\"More deck actions\"},\"tasksTab\":\"Tasks\",\"startCreating\":\"Create yours\",\"artifacts\":{\"matchaResearch\":{\"planAriaLabel\":\"Research plan\",\"planTitle\":\"Research plan\",\"planDescription\":\"Deep research on 10+ matcha brands, covering taste profiles, quality grades, pricing, sourcing, and influencer partnerships. Focus on 2025-2026 trends in the wellness creator economy.\",\"questions\":[{\"label\":\"Q1\",\"text\":\"What are the top 10 matcha brands currently trending among wellness influencers and creators on Instagram, TikTok, and YouTube in 2025-2026?\"},{\"label\":\"Q2\",\"text\":\"What are the taste profiles, quality grades, price points, and sourcing details for each brand?\"},{\"label\":\"Q3\",\"text\":\"Which wellness creators or influencers actively promote each matcha brand?\"},{\"label\":\"Q4\",\"text\":\"How do legacy Japanese brands compare to newer Western wellness-focused brands?\"}],\"searchAriaLabel\":\"Search results\",\"searchQuery\":\"Search for best matcha brands 2025 wellness influencers TikTok ranked\",\"searchResults\":[{\"title\":\"Matcha Market Trends: 2026 Forecast \u0026 Growth Drivers\",\"source\":\"atekin\"},{\"title\":\"Kyoto Insights: Global Matcha Consumption Report 2025\",\"source\":\"mckinsey\"},{\"title\":\"Matcha Boom in 2026: 11 Predictions for Cafes \u0026 Retail\",\"source\":\"forbes\"},{\"title\":\"Zenith Analytics: Matcha Adoption Data for 2026\",\"source\":\"google\"},{\"title\":\"Top 55 US Matcha Startups of 2025\",\"source\":\"techcrunch\"}],\"moreResults\":\"+ 3 more\",\"openReportLabel\":\"Open report preview\",\"reportTitle\":\"Top 10 Matcha Brands: Wellness Creator Report 2026\",\"reportSummary\":\"The matcha bubble did not pop - it stratified. TikTok’s #MatchaTok still posts a million views a day, and the creator economy has split into ceremonial purists, wellness-aesthetic merchants, and accessible daily drinkers.\",\"reportHighlights\":[[\"Heritage gold standard:\",\"Ippodo, Marukyu Koyamaen\"],[\"Creator fit-brands:\",\"Rocky’s Matcha, Matchaful, Naoki\"],[\"Wellness-DTC:\",\"Pique, Encha, Golde\"]],\"delivered\":\"Report delivered. Covered: comparison table, brand notes, creator-brand map, buying guide by use case, trend watch.\"},\"matchaReport\":{\"title\":\"Top 10 Matcha Brands: Wellness Creator Report 2026\",\"intro\":\"The matcha bubble did not pop - it stratified. TikTok’s #MatchaTok still posts a million views a day, and the creator economy has split cleanly into three camps: ceremonial purists, wellness-aesthetic merchants, and accessible daily drinkers. Here is the field"])</script><script>self.__next_f.push([1,".\",\"tldrTitle\":\"TL;DR\",\"tldr\":[[\"Heritage gold standard:\",\"Ippodo, Marukyu Koyamaen\"],[\"Creator “it-brands”:\",\"Rocky’s Matcha, Matchaful, Naoki\"],[\"Wellness-DTC:\",\"Pique, Encha, Golde\"],[\"Cafe + grocery default:\",\"Mizuba, Jade Leaf\"]],\"comparisonTitle\":\"Comparison Table\",\"comparisonAriaLabel\":\"Matcha brand comparison\",\"comparisonHeaders\":[\"Brand\",\"Origin\",\"Taste\",\"Price\",\"Creator hook\"],\"comparisonRows\":[[\"Ippodo Ummon\",\"Uji, Kyoto\",\"Deep umami, low astringency\",\"$$34 / 40g\",\"Heritage choice\"],[\"Marukyu Aoarashi\",\"Uji, Kyoto\",\"Creamy vegetal sweetness\",\"$$28 / 40g\",\"Tea-school favorite\"],[\"Rocky’s Matcha\",\"Kagoshima\",\"Smooth and mellow\",\"$$40 / 30g\",\"LA creator it-brand\"],[\"Matchaful Hojo\",\"Shizuoka\",\"Bright and grassy\",\"$$42 / 30g\",\"NYC cafe staple\"],[\"Pique Sun Goddess\",\"Kagoshima\",\"Soft, low-bitter sticks\",\"$$68 / 28\",\"On-the-go premium\"]],\"brandNotesTitle\":\"Brand Notes\",\"brandNotes\":[{\"title\":\"Ippodo\",\"body\":\"A 300-year-old Kyoto house and the benchmark every other ceremonial matcha gets compared to. Ummon remains the safest premium recommendation for purists.\"},{\"title\":\"Rocky’s Matcha\",\"body\":\"The newer brand that made matcha feel like fashion. It sells through scarcity, cafe collaborations, and a tin people recognize before they read the label.\"},{\"title\":\"Pique\",\"body\":\"Premium crystallized sticks win the creator market because the format works in travel bags, morning routines, and quick recipe videos.\"}],\"creatorMapTitle\":\"Creator → Brand Map\",\"creatorMap\":[\"@misheru: Matchaful, Ippodo\",\"@matcha.mommy: Mizuba, Naoki\",\"@kaitlinzheng: Pique, Rocky’s Matcha\",\"Trinity Mouzon Wofford: Golde\"],\"buyingGuideTitle\":\"Buying Guide\",\"buyingGuide\":[\"First-time buyer: Jade Leaf or Naoki\",\"Daily latte habit: Encha or Golde\",\"Pure ceremonial whisk: Ippodo Ummon or Marukyu Aoarashi\",\"Aesthetic gift: Rocky’s Matcha or Matchaful\",\"On-the-go: Pique sticks\"]},\"slidesFlow\":{\"confirmAriaLabel\":\"Confirm outline and aesthetic\",\"confirmTitle\":\"Confirmed: Outline, Aesthetic\",\"confirmQuestion\":\"The outline frames the talk as: reach is rented, trust compounds -\u003e 3 signals (Consistency, Vulnerability, Specificity) -\u003e 7-day starter playbook. Approve this direction?\",\"confirmFirstOptions\":[\"Approve, generate all 12\",\"Approve, but preview 3 first\",\"Adjust the structure first\"],\"visualQuestion\":\"Visual direction for the deck?\",\"confirmVisualOptions\":[\"Swiss international style\",\"Modern minimalist editorial\",\"Ink wash + minimal\"],\"confirmReplyQuestion\":\"Q: The outline frames the talk as: reach is rented, trust compounds -\u003e 3 signals (Consistency, Vulnerability, Specificity) -\u003e 7-day starter playbook. Approve this direction?\",\"confirmReplyAnswer\":\"A: Approve, but preview 3 first\",\"visualReplyQuestion\":\"Q: Visual direction for the deck?\",\"visualReplyAnswer\":\"A: Swiss international style\",\"previewConfirmAriaLabel\":\"Confirmed preview\",\"previewConfirmTitle\":\"Confirmed: Preview\",\"previewReplyQuestion\":\"Q: Approve the preview and continue to the remaining 9 slides?\",\"previewReplyAnswer\":\"A: Looks right - generate the remaining 9\",\"outlineTitle\":\"Outline - Building Trust with a Small Audience\",\"openOutlineLabel\":\"Open outline preview\",\"outlinePreviewTitle\":\"Building trust with a small audience\",\"outlinePreviewItems\":[\"Audience: creators, founders, and operators with sub-1k audiences across a newsletter, podcast, indie product, or community.\",\"Goal: leave with a clear framework and a 7-day starter playbook to deepen trust without growing followers first.\",\"Narrative mode: reframe small as advantage, introduce the three trust signals, then convert the framework into action.\",\"Slide count range: 12 slides, about 75 seconds per slide.\"],\"outlinePreviewSections\":[{\"title\":\"1. Title - Building Trust with a Small Audience\",\"items\":[\"Cover slide with the subtitle: Why 100 trusting readers beat strangers.\",\"Open by naming the room: most people here have under 1,000 followers.\"]},{\"title\":\"2. Hook - The number you are chasing is the wrong one\",\"items\":[\"Contrast a 50k follower account with 12 likes against a 400-person list.\",\"Land the reframe: rea"])</script><script>self.__next_f.push([1,"ch is rented, trust compounds.\"]}],\"outlineDrafted\":\"Outline drafted: 12 slides, 75s each. Before I generate, two quick confirmations:\",\"threeSlidesGenerated\":\"3 Slide images generated\",\"slideThumbnailsLabel\":\"Generated slide thumbnails\",\"openSlideLabel\":\"Open {title}\",\"previewReady\":\"Preview ready - 3 slides composed into the deck. Cover, framework anchor, and trust signals are aligned; cream paper background and red signal accent are consistent.\",\"nineSlidesGenerated\":\"9 Slide images generated\",\"deckTitle\":\"Building Trust with a Small Audience\",\"openDeckLabel\":\"Open slide deck preview\",\"notesTitle\":\"Speaker Notes - Building Trust with a Small Audience\",\"openNotesLabel\":\"Open speaker notes preview\",\"notesPreview\":{\"intro\":\"A 15-minute talk - 12 slides - about 75 seconds average per slide.\",\"body\":\"Pacing target: cover and close under 30 seconds each. Hook, definition, and the 7-day playbook are the heaviest. The framework slides carry the talk.\",\"sectionTitle\":\"Slide 01 - Cover - about 20s\",\"sectionBody\":\"Walk on. Do not read the title. Open by naming the room: most of you have under a thousand followers. Good. That is the right room for this talk.\"},\"finalCopy\":\"Done. Two artifacts on the board: deck and speaker notes. The deck uses cream paper, signal red as the load-bearing accent, and restrained cobalt and mustard on framework slides across all 12 pages.\",\"deckSlidesLabel\":\"Deck slides\",\"showSlideLabel\":\"Show {title}\"},\"slidesArtifacts\":{\"outline\":{\"title\":\"Outline - Building Trust with a Small Audience\",\"intro\":\"A 12-slide talk for creators, founders, and operators with sub-1k audiences across a newsletter, podcast, indie product, or community. The goal is to leave with a clear framework and a 7-day starter playbook to deepen trust without growing followers first.\",\"talkFrameTitle\":\"Talk Frame\",\"talkFrameItems\":[\"Reframe small as an advantage instead of a deficit.\",\"Show why reach is rented, but trust compounds.\",\"Introduce three trust signals: consistency, vulnerability, and specificity.\",\"Convert the framework into a practical 7-day playbook.\"],\"slidePlanTitle\":\"Slide Plan\",\"slidePlanItems\":[\"Title: Building Trust with a Small Audience.\",\"Hook: The number you are chasing is the wrong one.\",\"Reframe: Trust repeated, specific, voluntary attention.\",\"Proof: 500 can do what 50,000 cannot.\",\"Signal 01: Show up on a predictable cadence.\",\"Signal 02: Reveal your process before the result.\",\"Signal 03: Say who it is for and who it is not for.\",\"Playbook: A seven-day sequence to start compounding trust.\",\"Close: Stop borrowing attention. Build belief.\"],\"visualDirectionTitle\":\"Visual Direction\",\"visualDirectionBody\":\"Swiss international style with cream paper, strong black typography, red signal accents, and restrained cobalt and mustard support colors on framework slides.\"},\"notes\":{\"title\":\"Speaker Notes - Building Trust with a Small Audience\",\"intro\":\"A 15-minute talk, 12 slides, about 75 seconds average per slide.\",\"sections\":[{\"title\":\"Pacing Notes\",\"body\":\"Keep the cover and close under 30 seconds each. The hook, definition, and 7-day playbook are the heaviest sections. The framework slides carry the emotional and practical weight of the talk.\"},{\"title\":\"Slide 01 - Cover - about 20s\",\"body\":\"Walk on. Do not read the title. Open by naming the room: most of you have under a thousand followers. Good. That is the right room for this talk.\"},{\"title\":\"Slide 02 - Hook - about 90s\",\"body\":\"Contrast the account with 50,000 followers and 12 likes against the 400-person list that fills a workshop in a day. Make the point plain: attention is not the same as belief.\"},{\"title\":\"Slide 03 - Trust Definition - about 90s\",\"body\":\"Define trust as repeated, specific, voluntary attention. Repeated means they come back. Specific means they know why they are there. Voluntary means they would miss it if it stopped.\"},{\"title\":\"Slide 08 - 7-Day Playbook - about 120s\",\"body\":\"Make this section practical. Give one clear action for each day and frame the goal as earning one more reply, referral, or repeat reader, not chasing a vanity metric"])</script><script>self.__next_f.push([1,".\"},{\"title\":\"Close - about 30s\",\"body\":\"End with the line: Stop borrowing attention. Build belief. Pause after it and let the slide do the final work.\"}]}},\"websitePreview\":{\"openLabel\":\"Open portfolio webpage preview\",\"title\":\"Mira: AI Product \u0026 Community\",\"type\":\"Webpage\",\"finalIntro\":\"Done. Your portfolio is live as an artifact - dark mode, three project cards with gradient thumbnails, contact section with placeholder links you can swap in.\",\"notesTitle\":\"A few notes:\",\"finalBullets\":[\"Bio uses your real context: YouMind PM, Women Coding Club, and Vibe Coding. Edit if you want a different framing.\",\"Contact links are placeholders: mailto:hello@example.com, etc. Replace with your actual handles.\",\"Built as a single HTML file, system font stack, no external dependencies.\"],\"finalQuestion\":\"Want me to swap the accent color, tighten copy, or add a fourth project?\",\"iframeTitle\":\"Shuting portfolio webpage\"},\"videoPreview\":{\"assistantNote\":\"I will use the Create video skill to produce a bright premium headphones spot with soft daylight, floating motion, clean close-ups, and a minimal product reveal.\",\"playerLabel\":\"Generated headphones product video\",\"done\":\"Done. 15s bright wireless headphones product video generated.\",\"shotBreakdownTitle\":\"Shot breakdown:\",\"shotItems\":[\"0:00-0:04 - Soft daylight reveal with floating headphones in warm neutrals.\",\"0:04-0:08 - Close-up material pass across the cushioned ear cup and headband.\",\"0:08-0:12 - Slow rotation in clean negative space with subtle shadow movement.\",\"0:12-0:15 - Minimal end frame with product centered and room for brand copy.\"],\"finalNote\":\"Light ambient score with gentle transitions, suitable for a product-page hero.\"}}}},\"ForAgents\":{\"metaTitle\":\"YouMind for agents\",\"metaDescription\":\"Instructions and API references for using YouMind with AI agents.\",\"eyebrow\":\"For agents\",\"title\":\"Use YouMind with AI agents\",\"subtitle\":\"Give your agent the official YouMind skill and API references for capturing, organizing, and creating in your YouMind workspace.\",\"cardTitle\":\"Copy this prompt\",\"cardDescription\":\"Copy this into your agent chat or automation runner.\",\"prompt\":\"Read https://youmind.com/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\":\"Copy prompt\",\"copied\":\"Copied\"},\"FirstPurchaseBanner\":{\"label\":\"Ends soon — subscribe now and save up to 50% →\"}},\"now\":\"$undefined\",\"timeZone\":\"UTC\",\"children\":\"$L28\"}]\n28:[\"$\",\"$L29\",null,{\"locale\":\"en-US\",\"children\":[\"$\",\"$L2a\",null,{\"children\":[[\"$\",\"$L2b\",null,{}],[\"$\",\"$17\",null,{\"fallback\":null,\"children\":[\"$\",\"$L2c\",null,{}]}],[\"$\",\"$L2d\",null,{}],[\"$\",\"$L2e\",null,{}],[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L2f\",null,{}],[\"$\",\"$L30\",null,{\"level\":\"universal\"}]]}]}]\n1b:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, viewport-fit=cover\"}]]\n18:null\n1d:[[\"$\",\"title\",\"0\",{\"children\":\"In-depth and reliable research on Bio/Med - YouMind Skill\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Reproducible literature is initially screened using PubMed/NCBI E-utilities, deduplicated using PMID, abstracts are graded, and full texts are reviewed by PMC/BioC to ensure that citations are clickable and to provide complete literature information and conservatively verified impact factors.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"application-name\",\"content\":\"YouMind\"}],[\"$\",\"meta\",\"3\",{\"name\":\"robots\",\"content\":\"index, follow\"}],[\"$\",\"link\",\"4\",{\"rel\":\"canonical\",\"href\":\"https://youmind.com/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"5\",{\"rel\":\"alternate\",\"hrefLang\":\"en-US\",\"href\":\"https://youmind.com/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"6\",{\"rel\":\"alternate"])</script><script>self.__next_f.push([1,"\",\"hrefLang\":\"zh-CN\",\"href\":\"https://youmind.com/zh-CN/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"7\",{\"rel\":\"alternate\",\"hrefLang\":\"zh-TW\",\"href\":\"https://youmind.com/zh-TW/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"8\",{\"rel\":\"alternate\",\"hrefLang\":\"ja-JP\",\"href\":\"https://youmind.com/ja-JP/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"9\",{\"rel\":\"alternate\",\"hrefLang\":\"ko-KR\",\"href\":\"https://youmind.com/ko-KR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"10\",{\"rel\":\"alternate\",\"hrefLang\":\"th-TH\",\"href\":\"https://youmind.com/th-TH/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"11\",{\"rel\":\"alternate\",\"hrefLang\":\"vi-VN\",\"href\":\"https://youmind.com/vi-VN/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"12\",{\"rel\":\"alternate\",\"hrefLang\":\"hi-IN\",\"href\":\"https://youmind.com/hi-IN/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"13\",{\"rel\":\"alternate\",\"hrefLang\":\"es-ES\",\"href\":\"https://youmind.com/es-ES/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"14\",{\"rel\":\"alternate\",\"hrefLang\":\"es-419\",\"href\":\"https://youmind.com/es-419/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"15\",{\"rel\":\"alternate\",\"hrefLang\":\"de-DE\",\"href\":\"https://youmind.com/de-DE/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"16\",{\"rel\":\"alternate\",\"hrefLang\":\"fr-FR\",\"href\":\"https://youmind.com/fr-FR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"17\",{\"rel\":\"alternate\",\"hrefLang\":\"it-IT\",\"href\":\"https://youmind.com/it-IT/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"18\",{\"rel\":\"alternate\",\"hrefLang\":\"pt-BR\",\"href\":\"https://youmind.com/pt-BR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"19\",{\"rel\":\"alternate\",\"hrefLang\":\"pt-PT\",\"href\":\"https://youmind.com/pt-PT/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"20\",{\"rel\":\"alternate\",\"hrefLang\":\"tr-TR\",\"href\":\"https://youmind.com/tr-TR/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"link\",\"21\",{\"rel\":\"alternate\",\"hrefLang\":\"x-default\",\"href\":\"https://youmind.com/skills/biomed-research-assistant-zXJCpN71mICVZ2\"}],[\"$\",\"meta\",\"22\",{\"property\":\"og:title\",\"content\":\"In-depth and reliable research on Bio/Med - YouMind Skill\"}],[\"$\",\"meta\",\"23\",{\"property\":\"og:description\",\"content\":\"Reproducible literature is initially screened using PubMed/NCBI E-utilities, deduplicated using PMID, abstracts are graded, and full texts are reviewed by PMC/BioC to ensure that citations are clickable and to provide complete literature information and conservatively verified impact factors.\"}],[\"$\",\"meta\",\"24\",{\"property\":\"og:image\",\"content\":\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2\"}],[\"$\",\"meta\",\"25\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"26\",{\"name\":\"twitter:title\",\"content\":\"In-depth and reliable research on Bio/Med - YouMind Skill\"}],\"$L31\",\"$L32\",\"$L33\",\"$L34\"]\n35:I[938307,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\"],\"IconMark\"]\n31:[\"$\",\"meta\",\"27\",{\"name\":\"twitter:description\",\"content\":\"Reproducible literature is initially screened using PubMed/NCBI E-utilities, deduplicated using PMID, abstracts are graded, and full texts are reviewed by PMC/BioC to ensure that citations are clickable and to provide complete literature information and conservatively verified impact factors.\"}]\n32:[\"$\",\"meta\",\"28\",{\"name\":\"twitter:image\",\"content\":\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2\"}]\n33:[\"$\",\"link\",\"29\",{\"rel\":\"icon\",\"href\":\"/static/assets/favicon.ico\"}]\n34:[\"$\",\"$L35\",\"30\",{}]\n36:I[931389,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static"])</script><script>self.__next_f.push([1,"/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0y7kl_~hecbvl.js\",\"/_next/static/chunks/11-ugo8gu_lpv.js\",\"/_next/static/chunks/0o6.v4rpm49lp.js\",\"/_next/static/chunks/0w~mw2hur4s6d.js\",\"/_next/static/chunks/0~pxzfso9_b5_.js\",\"/_next/static/chunks/0-e4j7fu~w~it.js\",\"/_next/static/chunks/0ri2baxbh-rap.js\",\"/_next/static/chunks/0g-9ndz.mv4dd.js\",\"/_next/static/chunks/044da62swvwwz.js\",\"/_next/static/chunks/0kpqv9w34iff0.js\",\"/_next/static/chunks/12esm9pb26rc4.js\",\"/_next/static/chunks/0nr6wsyjnfx51.js\",\"/_next/static/chunks/0p99dkfg6coxz.js\",\"/_next/static/chunks/07ncsbnswrmid.js\"],\"BackButton\"]\n37:I[414501,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0.2kqgmoirc9z.js\",\"/_next/static/chunks/0zn.7r7kob6n3.js\",\"/_next/static/chunks/0i_4~rbopx69k.js\",\"/_next/static/chunks/11g82l.5hhrm9.js\",\"/_next/static/chunks/0_-o9de1wwkpj.js\",\"/_next/static/chunks/0vrh_uffzaddt.js\",\"/_next/static/chunks/06k104-0v0snc.js\",\"/_next/static/chunks/0re8.xi3g2qh0.js\",\"/_next/static/chunks/0mn-o6jo7q~v-.js\",\"/_next/static/chunks/0n3ajpj41jdzd.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0b86d98sz-c8i.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0y7kl_~hecbvl.js\",\"/_next/static/chunks/11-ugo8gu_lpv.js\",\"/_next/static/chunks/0o6.v4rpm49lp.js\",\"/_next/static/chunks/0w~mw2hur4s6d.js\",\"/_next/static/chunks/0~pxzfso9_b5_.js\",\"/_next/static/chunks/0-e4j7fu~w~it.js\",\"/_next/static/chunks/0ri2baxbh-rap.js\",\"/_next/static/chunks/0g-9ndz.mv4dd.js\",\"/_next/static/chunks/044da62swvwwz.js\",\"/_next/static/chunks/0kpqv9w34iff0.js\",\"/_next/static/chunks/12esm9pb26rc4.js\",\"/_next/static/chunks/0nr6wsyjnfx51.js\",\"/_next/static/chunks/0p99dkfg6coxz.js\",\"/_next/static/chunks/07ncsbnswrmid.js\"],\"SkillDetailContent\"]\n38: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示例:\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• huma"])</script><script>self.__next_f.push([1,"n 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```39: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• 输出类型:简答、代表文献、综述式总结、实验设计建议、证据表、机制图谱。\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不要只写一个检索式。每个概念至少准"])</script><script>self.__next_f.push([1,"备三类词。\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\u003e3a:T14c4,\u003cp\u003eThe core of this process is: first, use multiple queries to perform a reproducible initial screening in PubMed/NCBI E-utilities, then use PMID for deduplication and abstract evidence grading; only a small number of key documents enter the PMC/BioC full-text review; in-text citations must be clickable; complete bibliographic information must be listed at the end of the article; IF can only be conservatively checked through publicly accessible sources, and cannot be assumed to have JCR or local databases, cannot be guessed, and low-confidence matches cannot be treated as definitive results.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e 1. Preprocessing after a user initiates a search\u003c/p\u003e\u003cp\u003e 1.1 First, analyze the user's question.\u003c/p\u003e\u003cp\u003e After receiving a user's question, the natural language question is first broken down into structured elements.\u003c/p\u003e\u003cp\u003e Must be identified:\u003c/p\u003e\u003cp\u003e • Research subjects: genes, proteins, drugs, channels, cell types, tissues, diseases, and models.\u003c/p\u003e\u003cp\u003e • Biological systems: humans, mice, rats, zebrafish, organoids, retina, brain regions, cell lines, etc.\u003c/p\u003e\u003cp\u003e • Relationship types: expression, regulation, function, mechanism, phenotype, death, survival, treatment, toxicity, development, degeneration, etc.\u003c/p\u003e\u003cp\u003e • Evidence requirements: Whether direct evidence, mechanistic evidence, full-text evidence, charts, dosage parameters, and experimental methods are required.\u003c/p\u003e\u003cp\u003e • Ti"])</script><script>self.__next_f.push([1,"me range: unlimited time, the last 5 years, the last 1 year, the latest developments, and classic literature.\u003c/p\u003e\u003cp\u003e • Output types: short answer, representative literature, review summary, experimental design suggestions, evidence table, mechanism diagram.\u003c/p\u003e\u003cp\u003e Example:\u003c/p\u003e\u003cp\u003e User issue:\u003c/p\u003e\u003cp\u003e \"Please help me find literature related to retinal organoid death.\"\u003c/p\u003e\u003cp\u003e Structured decomposition (example):\u003c/p\u003e\u003cp\u003e • Core models: retinal organoid, retina organoid, hPSC-derived retinal organoid, optic cup organoid.\u003c/p\u003e\u003cp\u003e • Phenotype: cell death, apoptosis, degeneration, survival loss, stress, necrosis.\u003c/p\u003e\u003cp\u003e • Related cells: photoreceptor, cone, rod, retinal ganglion cell, Müller glia.\u003c/p\u003e\u003cp\u003e • Potential mechanisms: oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis.\u003c/p\u003e\u003cp\u003e • Evidence objectives: Prioritize original studies that directly observe cell death/apoptosis/degeneration in human or animal retinal organoids; then look for literature on indirect mechanisms.\u003c/p\u003e\u003cp\u003e 1.2 Keyword Segmentation Principles (Example)\u003c/p\u003e\u003cp\u003e Don't just write one search query. Prepare at least three categories of terms for each concept.\u003c/p\u003e\u003cp\u003e Category 1: Precise words.\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 The second category: synonyms and hypernyms.\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 The third category: mechanism and phenotypic terms.\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 If the user specifies the cell type, add:\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 If the user specifies the species or origin, add:\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 Generating hierarchical search queries\u003c/p\u003e\u003cp\u003e Generate at least 3–6 queries. Each query corresponds to a search objective.\u003c/p\u003e\u003cp\u003e First layer: Direct evidence retrieval.\u003c/p\u003e\u003cp\u003e Used to find literature that directly matches the target model and target phenotype.\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 Second layer: Extended model retrieval.\u003c/p\u003e\u003cp\u003e Used to capture literature where the author did not use the precise term \"retinal organoid\" but it is actually relevant.\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 Third layer: Mechanism-specific search.\u003c/p\u003e\u003cp\u003e Used to verify specific pathways or mechanisms.\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 Fourth layer: Cell type specific search.\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 Fifth layer: Disease model retrieval.\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 Sixth layer: Review/background search.\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\u003e3b:T10ea,2. 使用什么方法、在什么网站检索\n2.1 首选:PubMed / NCBI E-utilities\nPubMed 是生物医学文献检索首选。不要默认抓 PubMed 网页。应使用 NCBI E-utilit"])</script><script>self.__next_f.push([1,"ies 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、机构权限墙,立即停止。\n• 不要反复刷新、换同站路径、循环等待。\n• 改用 PubMed、PMC、Cross"])</script><script>self.__next_f.push([1,"ref、OpenAlex、Unpaywall、DOI metadata 兜底。3c: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://api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e也可用普通搜索作为补充:\u003c/"])</script><script>self.__next_f.push([1,"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\u003e3d:T1755,\u003cp\u003e2. What methods and websites were used for the search?\u003c/p\u003e\u003cp\u003e 2.1 Preferred: PubMed / NCBI E-utilities\u003c/p\u003e\u003cp\u003e PubMed is the preferred tool for searching biomedical literature. Do not default to scraping PubMed pages. Use the NCBI E-utilities API instead.\u003c/p\u003e\u003cp\u003e 2.1.1 ESearch: Retrieving PMID using a query\u003c/p\u003e\u003cp\u003e interface:\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 parameter:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e db=pubmed\u003c/p\u003e\u003cp\u003e term=\u003csearch term\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 You can also sort by time:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e sort=pub+date\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Example:\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 Read from the return:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e esearchresult.idlist\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e This is the PMID list.\u003c/p\u003e\u003cp\u003e 2.1.2 ESummary: Obtaining Literature Metadata\u003c/p\u003e\u003cp\u003e interface:\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 parameter:\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 Extracted fields:\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 • DOI and PMCID in articleids\u003c/p\u003e\u003cp\u003e • volume, issue, pages\u003c/p\u003e\u003cp\u003e 2.1.3 EFetch: Retrieving Summary and XML Details\u003c/p\u003e\u003cp\u003e interface:\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 parameter:\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 Extracted fields:\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 Batch Retrieval Strategy\u003c/p\u003e\u003cp\u003e Recommended process:\u003c/p\u003e\u003cp\u003e 1. Call ESearch for each query.\u003c/p\u003e\u003cp\u003e 2. For each query, select the first 5–20 results.\u003c/p\u003e\u003cp\u003e 3. Merge all PMIDs.\u003c/p\u003e\u003cp\u003e 4. Use PMID to remove duplicates.\u003c/p\u003e\u003cp\u003e 5. Use ESummary / EFetch to retrieve metadata and abstract data in batches.\u003c/p\u003e\u003cp\u003e 6. In the initial screening stage, only read the metadata and abstract; do not start by reading the full text.\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.2 Second Phase: Full Review of PMC/BioC Documents\u003c/p\u003e\u003cp\u003e The full text will only be included in the following cases:\u003c/p\u003e\u003cp\u003e • Users request to read the full text carefully.\u003c/p\u003e\u003cp\u003e • The abstract is insufficient to determine "])</script><script>self.__next_f.push([1,"the mechanism.\u003c/p\u003e\u003cp\u003e • Requires charts, experimental methods, concentrations, dosages, IC50, EC50, Kd, ​​and Ki.\u003c/p\u003e\u003cp\u003e • A small number of key PMIDs have been identified and require review on a case-by-case basis.\u003c/p\u003e\u003cp\u003e 2.2.1 PMID to PMCID\u003c/p\u003e\u003cp\u003e interface:\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 If PMCID is returned, it means that PMC may have open full text.\u003c/p\u003e\u003cp\u003e 2.2.2 Prioritize BioC JSON\u003c/p\u003e\u003cp\u003e interface:\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 Advantages: Highly structured, suitable for extracting main text paragraphs.\u003c/p\u003e\u003cp\u003e 2.2.3 Try PMC XML when BioC is unavailable\u003c/p\u003e\u003cp\u003e interface:\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 Skip when extracting the main text:\u003c/p\u003e\u003cp\u003e • references\u003c/p\u003e\u003cp\u003e • bibliography\u003c/p\u003e\u003cp\u003e • Acknowledgments\u003c/p\u003e\u003cp\u003e • author contributions\u003c/p\u003e\u003cp\u003e • competing interests\u003c/p\u003e\u003cp\u003e Full text review must include a stop criterion:\u003c/p\u003e\u003cp\u003e • Each document is scanned only once.\u003c/p\u003e\u003cp\u003e • By default, only paragraphs related to the question are extracted.\u003c/p\u003e\u003cp\u003e • If the target field is not matched, mark it as \"No direct evidence found\".\u003c/p\u003e\u003cp\u003e • Avoid repeatedly scraping keywords.\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.3 bioRxiv / medRxiv\u003c/p\u003e\u003cp\u003e Used to supplement the latest preprints.\u003c/p\u003e\u003cp\u003e You can use the official 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 You can also use a regular search as a supplement:\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 Preprints must be labeled:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e This is a preprint and has not been peer-reviewed.\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 Used to complete DOI, open full-text address, and publication information.\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 use:\u003c/p\u003e\u003cp\u003e • DOI completion.\u003c/p\u003e\u003cp\u003e • OA PDF link search.\u003c/p\u003e\u003cp\u003e • Journal name verification.\u003c/p\u003e\u003cp\u003e • Publication year verification.\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.5 Publisher Page\u003c/p\u003e\u003cp\u003e Access the publisher's page only when API information is insufficient.\u003c/p\u003e\u003cp\u003e Access rules:\u003c/p\u003e\u003cp\u003e • Each publisher URL will only be tried once.\u003c/p\u003e\u003cp\u003e • If you encounter CAPTCHAs, login barriers, Cloudflare, Access Denied, or institutional access barriers, stop immediately.\u003c/p\u003e\u003cp\u003e • Avoid repeatedly refreshing, changing the path within the same site, or waiting in a loop.\u003c/p\u003e\u003cp\u003e • Use PubMed, PMC, Crossref, OpenAlex, Unpaywall, and DOI metadata as fallback.\u003c/p\u003e3e:T78e,\u003cp\u003e3. How to organize information after retrieval\u003c/p\u003e\u003cp\u003e 3.1 Establish a unified record structure\u003c/p\u003e\u003cp\u003e Each document is compiled into a unified record.\u003c/p\u003e\u003cp\u003e Fields:\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 Deduplication\u003c/p\u003e\u003cp\u003e Priority:\u003c/p\u003e\u003cp\u003e 1. PMID deduplication.\u003c/p\u003e\u003cp\u003e 2. Use DOI to remove duplicates if PMID is unavailable.\u003c/p\u003e\u003cp\u003e 3. If there is no DOI, use lower(title) + year + first_author to remove duplicates.\u003c/p\u003e\u003cp\u003e Retain the query_source that was hit the first time, and record which queries hit the document.\u003c/p\u003e\u003cp\u003e 3.3 Evidence Classification\u003c/p\u003e\u003cp\u003e It is necessary to distinguish:\u003c/p\u003e\u003cp\u003e Direct evidence:\u003c/p\u003e\u003cp\u003e The target"])</script><script>self.__next_f.push([1," species, tissue, cell type, model, and treatment conditions are directly matched.\u003c/p\u003e\u003cp\u003e Indirect evidence:\u003c/p\u003e\u003cp\u003e Adjacent systems, similar models, and similar mechanisms are supported, but they are not direct systems for user problems.\u003c/p\u003e\u003cp\u003e No direct evidence found:\u003c/p\u003e\u003cp\u003e Only background, speculation, reviews, or adjacent models can be found; there are no direct experimental results.\u003c/p\u003e\u003cp\u003e 3.4 Document Type Labeling\u003c/p\u003e\u003cp\u003e At least the following should be noted:\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 Sorting Rules\u003c/p\u003e\u003cp\u003e Recommended sorting:\u003c/p\u003e\u003cp\u003e 1. Original research based on direct evidence.\u003c/p\u003e\u003cp\u003e 2. Research on key mechanisms.\u003c/p\u003e\u003cp\u003e 3. Latest important research.\u003c/p\u003e\u003cp\u003e 4. Classic foundational studies.\u003c/p\u003e\u003cp\u003e 5. High-quality review.\u003c/p\u003e\u003cp\u003e 6. Indirect evidence.\u003c/p\u003e\u003cp\u003e Do not sort by IF alone. IF is a journal-level indicator and does not equate to the quality of an individual article.\u003c/p\u003e3f:T67e,\u003cp\u003e4. How to organize quotations in a reply\u003c/p\u003e\u003cp\u003e 4.1 Text Citation Format\u003c/p\u003e\u003cp\u003e All text citations must be clickable.\u003c/p\u003e\u003cp\u003e Format:\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 Example:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e Previous studies have observed developmental stage-related photoreceptor stress and degeneration in human retinal organoids [[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/).\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Do not write it as:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e [1]\u003c/p\u003e\u003cp\u003e (PMID: xxxxx)\u003c/p\u003e\u003cp\u003e See reference 1\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 4.2 Recommended Answer Structure\u003c/p\u003e\u003cp\u003e First paragraph: Direct conclusion.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Conclusion: There have been relevant reports, but the direct evidence mainly focuses on...; direct evidence regarding... is still lacking.\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Second paragraph: Evidence classification.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Direct evidence:\u003c/p\u003e\u003cp\u003e - Reference A: ...\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Indirect evidence:\u003c/p\u003e\u003cp\u003e - Reference B: ...\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e No direct evidence found:\u003c/p\u003e\u003cp\u003e - Not found in this round...\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Third paragraph: Mechanism summary.\u003c/p\u003e\u003cp\u003e Group by topic, for example:\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 Fourth paragraph: Research gap.\u003c/p\u003e\u003cp\u003e Clearly state which issues lack direct evidence.\u003c/p\u003e\u003cp\u003e Fifth paragraph: Inspiration from the experiment.\u003c/p\u003e\u003cp\u003e If the user needs experimental design, provide the marker, assay, time point, and control.\u003c/p\u003e40: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?"])</script><script>self.__next_f.push([1,"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/entrez/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• 年份只保"])</script><script>self.__next_f.push([1,"留在文献发表年份处。\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 权限。41: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- impact 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).rep"])</script><script>self.__next_f.push([1,"lace(\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\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"])</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• 期刊不在 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\u003e42:T20d8,\u003cp\u003e6. IF Verification and Labeling\u003c/p\u003e\u003cp\u003e 6.1 First, let's explain the practical limitations of IF checks.\u003c/p\u003e\u003cp\u003e Normally, the official Journal Impact Factor comes from Clarivate Journal Citation Reports (JCR). However, any external agent typically does not have a Clarivate/JCR account or a local JCR table, so do not verify it through this path.\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.2 Practical methods for using IF skill\u003c/p\u003e\u003cp\u003e Main route:\u003c/p\u003e\u003cp\u003e 1. If the input is PMID, first use NCBI E-utilities to obtain PubMed metadata.\u003c/p\u003e\u003cp\u003e - Retrieve FullJournalName. - Retrieve Source/ISO abbreviation. - Retrieve ISSN/eISSN. - Retrieve auxiliary fields such as title, year, and DOI.\u003c/p\u003e\u003cp\u003e 2. Use the publicly available iikx/iscience mobile JSON interface to query journals.\u003c/p\u003e\u003cp\u003e Search API:\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 Details API:\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. Perform a conservative match on the search results.\u003c/p\u003e\u003cp\u003e - Prioritizes exact normalized journal title matches. - Second, prioritizes exact abbreviation matches. - Exercises great caution with short and broad terms. - Does not accept obvious substring mismatches, such as mismatching \"Nature\" as \"Nature Reviews\" series. - Returns ambiguous/not_found results if the match is unstable, rather than guessing.\u003c/p\u003e\u003cp\u003e 4. If PubMed provides an abbreviation, try expanding it to the full name or alternative title using NLM Catalog.\u003c/p\u003e\u003cp\u003e The NLM Catalog search interface remains 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 Then use ESummary to get the Title / TitleAlternate.\u003c/p\u003e\u003cp\u003e 5. Read from the iikx detail results:\u003c/p\u003e\u003cp\u003e - Impact factor. - IF year. - JCR quartile. - CAS/CAS quartile, if applicable. - Source URL. - Match confidence.\u003c/p\u003e\u003cp\u003e 6. Do not include the IF year in the main text when annotating; use compact annotations.\u003c/p\u003e\u003cp\u003e The final annotation should only state:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If it fails:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Pending Verification}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e or:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Not detected}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.3 Specific Steps\u003c/p\u003e\u003cp\u003e Perform the following procedure for each document.\u003c/p\u003e\u003cp\u003e Step 1: Prepare the journal search name.\u003c/p\u003e\u003cp\u003e Prioritize retrieving from 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 If only a DOI is available, first use Crossref or OpenAlex to obtain the journal name.\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 Step 2: Standardize journal names.\u003c/p\u003e\u003cp\u003e Standardization rules:\u003c/p\u003e\u003cp\u003e • All lowercase.\u003c/p\u003e\u003cp\u003e • HTML unescape.\u003c/p\u003e\u003cp\u003e • Replace \u0026 with and.\u003c/p\u003e\u003cp\u003e • Remove punctuation.\u003c/p\u003e\u003cp\u003e • Combine multiple spaces.\u003c/p\u003e\u003cp\u003e • When making comparisons, you can also use the compact form, which removes all spaces.\u003c/p\u003e\u003cp\u003e Example pseudocode:\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', ' and ', 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 Step 3: Query the iikx search interface.\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 It is recommended to set "])</script><script>self.__next_f.push([1,"a User-Agent, for example:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Mozilla/5.0\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If no exact match is found on the first page, you can flip through a limited number of pages, for example, up to 8 pages.\u003c/p\u003e\u003cp\u003e Page turning parameters are usually:\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 Step 4: Select candidates from the search results.\u003c/p\u003e\u003cp\u003e Candidate fields typically include:\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 or IF2024\u003c/p\u003e\u003cp\u003e zky2020\u003c/p\u003e\u003cp\u003e URL\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Matching rules:\u003c/p\u003e\u003cp\u003e • If compact(query) == compact(candidate.title), accept.\u003c/p\u003e\u003cp\u003e • If norm(query) == norm(candidate.title), accept.\u003c/p\u003e\u003cp\u003e • If compact(query) == compact(candidate.smalltitle), accept.\u003c/p\u003e\u003cp\u003e • If norm(query) == norm(candidate.smalltitle), accept.\u003c/p\u003e\u003cp\u003e • Do not accept a substring unless the query is long enough and unambiguous.\u003c/p\u003e\u003cp\u003e • Be especially cautious with short words such as Nature, Science, Cell, Brain, Vision, and Retina.\u003c/p\u003e\u003cp\u003e Step 5: If no match is found, use the NLM Catalog extended abbreviation.\u003c/p\u003e\u003cp\u003e For example, in PubMed, the Source is:\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 You can check:\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\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e After obtaining the NLM Catalog ID, use it as follows:\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 Read:\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 Then use these full names to search for iikx.\u003c/p\u003e\u003cp\u003e Step 6: Check the iikx details interface.\u003c/p\u003e\u003cp\u003e If the search results contain:\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 Call:\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 Read from 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 or other JCR quartile fields\u003c/p\u003e\u003cp\u003e jcr22 / jcr12 or partition field\u003c/p\u003e\u003cp\u003e issn\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 Step 7: Select the latest IF statement.\u003c/p\u003e\u003cp\u003e Search the returned fields for all instances of the form:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF20xx\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e For example:\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 Choose the year with the largest significant digit.\u003c/p\u003e\u003cp\u003e If IF20xx is not present, attempt to read:\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 If no valid value is found, it is marked as not detected.\u003c/p\u003e\u003cp\u003e Step 8: Output confidence level and label.\u003c/p\u003e\u003cp\u003e If exact title/abbreviation matches, and detail returns a valid 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 If the match is uncertain:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Pending Verification}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If the public API returns no results:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Not detected}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.4 IF Annotation Format\u003c/p\u003e\u003cp\u003e Fixed format:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Example:\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 Notice:\u003c/p\u003e\u003cp\u003e • The JCR year is not written inside the IF annotation.\u003c/p\u003e\u003cp\u003e • Do not write \"2024 JCR IF\".\u003c/p\u003e\u003cp\u003e • Do not write \"JCR 2024\".\u003c/p\u003e\u003cp\u003e • Only the year of publication is retained.\u003c/p\u003e\u003cp\u003e • If the IF is 0.0, null, has an unstable source, or an unstable match, the number will not be displayed.\u003c/p\u003e\u003cp\u003e 6.5 Standard handling for IF check failures\u003c/p\u003e\u003cp\u003e Don't guess.\u003c/p\u003e\u003cp\u003e Do not use the journal name to fill in the numbers.\u003c/p\u003e\u003cp\u003e Do not use large models to memorize and fill in IF statements.\u003c/p\u003e\u003cp\u003e Only three states are allowed upon failure:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Pending Verification}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Used for:\u003c/p\u003e\u003cp\u003e • Search results are vague.\u003c/p\u003e\u003cp\u003e There are several similar journals.\u003c/p\u003e\u003cp\u003e • Only the abbre"])</script><script>self.__next_f.push([1,"viation was found, but the full name could not be confirmed.\u003c/p\u003e\u003cp\u003e • The IF returned by publicly available sources is questionable.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Not detected}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Used for:\u003c/p\u003e\u003cp\u003e • The public interface returned no results.\u003c/p\u003e\u003cp\u003e • The journal is not covered by SCI/JCR.\u003c/p\u003e\u003cp\u003e • The new issue does not yet have an IF.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Not publicly verifiable}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Used for:\u003c/p\u003e\u003cp\u003e • The user requires an official JCR, but the current Agent does not have Clarivate/JCR permissions.\u003c/p\u003e43: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```44: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/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\u003e45:T589,\u003cp\u003e8. Reproducible pseudocode\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 recor"])</script><script>self.__next_f.push([1,"d.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 or record.journal_abbrev\u003c/p\u003e\u003cp\u003e if_result = lookup_if_public_iikx(journal_query)\u003c/p\u003e\u003cp\u003e 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=Pending Verification}*'\u003c/p\u003e\u003cp\u003e else:\u003c/p\u003e\u003cp\u003e record.if_annotation = '*{IF=Not Detected}*'\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\u003e46:T49d,\u003cp\u003e9. Recommended final delivery template\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e in conclusion:\u003c/p\u003e\u003cp\u003e ...\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Level of evidence:\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Direct evidence:\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 Indirect evidence:\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 No direct evidence found:\u003c/p\u003e\u003cp\u003e - ……\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Mechanism summary:\u003c/p\u003e\u003cp\u003e 1. ……\u003c/p\u003e\u003cp\u003e 2. ……\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Search boundaries:\u003c/p\u003e\u003cp\u003e This round of searches primarily involved PubMed, PMC, BioC, and bioRxiv; initial screening was based on metadata and abstracts, with only key documents undergoing full-text review. IF annotations were based on publicly accessible sources; documents that could not be matched with high confidence were marked as pending verification or not detected.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Complete list of literature information:\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=To be verified}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e15:[\"$\",\"div\",null,{\"className\":\"container pt-[42px] md:pt-[100px]\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col gap-5 md:gap-[60px]\",\"children\":[[\"$\",\"$L36\",null,{\"label\":\"Skills\",\"fallbackHref\":\"/skills\"}],[\"$\",\"$L37\",null,{\"locale\":\"en-US\",\"skill\":{\"id\":\"019e00d2-78ba-73bc-93d4-eae7d91298a9\",\"created_at\":\"2026-05-07T05:04:14.010Z\",\"updated_at\":\"2026-06-20T14:21:17.427Z\",\"creator_id\":\"7d8d4986-6f56-4da7-8fb5-e8e0355a3ae3\",\"name\":\"In-depth and reliable research on Bio/Med\",\"description\":\"Applicable Scenarios: Complete a round of biological/biomedical scientific literature retrieval and provide users with detailed and reliable output. 1. After the user initiates a search, the system breaks down the question and keywords. 2. Retrieve literature using public and reproducible data sources. 3. Deduplicate, stratify, classify, and sort the search results. 4. Use clickable text citations in the response. 5. List complete literature information at the end of the document and mark the IF with publicly searchable routes; if high confidence verification is not possible, it must be marked as \\\"to be verified\\\" or \\\"not detected\\\".\",\"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\":8,\"earned_credits\":1600,\"price\":200,\"content\":{\"steps\":[{\"instructions\":\"$38\",\"instructions_raw\":\"$39\",\"localized_instructions_raw\":\"$3a\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"$3b\",\"instructions_raw\":\"$3c\",\"localized_instructions_raw\":\"$3d\",\"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\\ni"])</script><script>self.__next_f.push([1,"ssn\\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保留第一次命中的 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\":\"$3e\",\"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第五段:实验启"])</script><script>self.__next_f.push([1,"发。\\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\":\"$3f\",\"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. Complete list of references at the end of the article\u003c/p\u003e\u003cp\u003e If a specific reference is cited in the text, a complete list must be attached at the end of the article.\u003c/p\u003e\u003cp\u003e Format:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e ## Complete List of Reference Information\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,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=To be verified}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Author format:\u003c/p\u003e\u003cp\u003e • 1–3 authors: List all.\u003c/p\u003e\u003cp\u003e • More than 3 authors: First author et al.\u003c/p\u003e\u003cp\u003e The PMID / DOI / URL must be clickable.\u003c/p\u003e\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"$40\",\"instructions_raw\":\"$41\",\"localized_instructions_raw\":\"$42\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instruction"])</script><script>self.__next_f.push([1,"s\":\"7. 最终回复自检清单\\n发出前必须检查:\\n• 是否先回答用户核心问题。\\n• 是否区分直接证据、间接证据、未见直接证据。\\n• 是否所有正文引用都可点击。\\n• 是否文末有完整文献信息列表。\\n• 是否每篇文献都带 IF 标注或待核验/未检出标注。\\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. Final self-checklist\u003c/p\u003e\u003cp\u003e Must be checked before shipment:\u003c/p\u003e\u003cp\u003e • Should the user's core questions be answered first?\u003c/p\u003e\u003cp\u003e • Whether to distinguish between direct evidence, indirect evidence, and no direct evidence found.\u003c/p\u003e\u003cp\u003e • Are all text citations clickable?\u003c/p\u003e\u003cp\u003e • Is there a complete list of references at the end of the article?\u003c/p\u003e\u003cp\u003e • Does every document include an IF (Input/Output) label or a label indicating pending verification/not detected?\u003c/p\u003e\u003cp\u003e • Whether the PMID/DOI/URL is clickable.\u003c/p\u003e\u003cp\u003e • Does it avoid substituting overall tissue results for conclusions about specific cell types?\u003c/p\u003e\u003cp\u003e • Does it avoid substituting activation/phosphorylation for an increase in total expression?\u003c/p\u003e\u003cp\u003e • Whether to indicate a preprint.\u003c/p\u003e\u003cp\u003e • Does it specify the search boundaries?\u003c/p\u003e\u003cp\u003e • IF whether it was not based on memory or guesswork.\u003c/p\u003e\",\"tools\":{},\"at_references\":[]},{\"instructions\":\"$43\",\"instructions_raw\":\"$44\",\"localized_instructions_raw\":\"$45\",\"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: 1"])</script><script>self.__next_f.push([1,"2345678](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\":\"$46\",\"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\":\"This skill serves as a reliable guide for biomedical research, ensuring highly accurate and verifiable research information through structured searches, multi-stage literature screening, and rigorous impact factor (IF) checks.\",\"seo_description\":\"Reproducible literature is initially screened using PubMed/NCBI E-utilities, deduplicated using PMID, abstracts are graded, and full texts are reviewed by PMC/BioC to ensure that citations are clickable and to provide complete literature information and conservatively verified impact factors.\",\"input_hint\":\"What biological/medical questions do you want to understand? Please describe your research subjects, mechanisms, or needs.\",\"slug\":\"biomed-research-assistant\",\"featured\":false,\"approved_at\":\"2026-05-07T09:01:47.838Z\",\"featured_by\":{\"id\":\"63edaf7c-2fec-49bd-9f2e-02f772e4a1d9\",\"name\":\"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.com/skills/biomed-research-assistant-zXJCpN71mICVZ2\"},\"relatedSkills\":[{\"id\":\"019ed040-fc8e-7ef3-9fe8-87d31ed5b21c\",\"created_at\":\"2026-06-16T11:46:20.430Z\",\"updated_at\":\"2026-06-18T03:42:25.701Z\",\"creator_id\":\"380c92ee-d698-41d3-82c2-484e5d98ddd3\",\"name\":\"Transferable skills coach\",\"subtitle\":\"\",\"description\":\"Parents input specific scenarios their children encounter, and the system generates a five-step coaching-style guidance plan (underlying logic → life anchors → mid-course confirmation → dialogue techniques → competency naming) to help children build self-identity regarding transferable skills. New features include de-labeling, mid-course confirmation points, and applicable scenario signals.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"showcase\":[{\"url\":\"https://cdn.gooo.ai/gen-images/52af3761d859bac5c79df72dbf52a513f4f3ea5b1019bcd8198ad8ca069c8873.jpeg\",\"type\":\"image\"}],\"fork_count\":1,\"earned_credits\":999,\"price\":999,\"content_visibility\":\"private\",\"origin\":\"custom\",\"suggested_categories\":[],\"featured_reason\":\"这个技能能帮你把孩子抽象的“做题能力”转化为具体可感的生活能力,让家长清晰地看见孩子在日常中是如何成长的。\",\"seo_description\":\"将孩子做题能力转化为生活智慧,帮家长看懂孩子行为背后的可迁移能力,让“这题不白做”。\",\"input_hint\":\"What specific situation has your child encountered that makes you feel you can talk to them?\",\"slug\":\"transferable-skills-coach\",\"featured\":false,\"approved_at\":\"2026-06-17T10:09:34.502Z\",\"categories\":[\"learn\"],\"creator\":{\"id\":\"380c92ee-d698-41d3-82c2-484e5d98ddd3\",\"name\":\"每天无止境\"},\"latest_version_id\":\"019ed446-224e-765f-93ee-b6af4270bc62\"},{\"id\":\"019ec6d7-a228-7b36-adec-b6f25693c5ac\",\"created_at\":\"2026-06-14T15:54:41.064Z\",\"updated_at\":\"2026-06-19T14:52:09.990Z\",\"creator_id\":\"2143f099-b7f4-4d18-94a9-083f3e16d393\",\"name\":\"Project Data Compilation | Better Organize\",\"subtitle\":\"A better project material organization skill than the previous \\\"Collected Documents\\\"\",\"description\":\"Organize scattered materials from your project collection into a structured index document, supporting incremental updates and automatically identifying document types and extracting core informat"])</script><script>self.__next_f.push([1,"ion. (Note: Organizing a large amount of material may require a significant number of points.)\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"avatar\":\"https://cdn.gooo.ai/web-images/07340467ddb2ac22e48c1e08c9d6000da3c772336fadbb8180216e023cc268be\",\"icon_value\":\"Dolphin\",\"icon_bg_color\":\"skill-bg11\",\"showcase\":[{\"type\":\"task\",\"task_id\":\"SsUZnjeVVI184Q\"}],\"fork_count\":4,\"earned_credits\":800,\"price\":200,\"content_visibility\":\"private\",\"origin\":\"custom\",\"suggested_categories\":[\"write\"],\"featured_reason\":\"此技能能智能分类并提取项目资料核心信息,自动生成结构化索引文档,支持增量更新,是整理复杂项目资料的利器。\",\"seo_description\":\"将Board资料链接智能整理为结构化索引文档,自动提取核心信息,支持首次生成与增量更新,助您高效检索和利用。\",\"input_hint\":\"What kind of information do you want to organize, or can I help you check what's in the Board?\",\"slug\":\"project-data-organizer\",\"featured\":false,\"approved_at\":\"2026-06-15T00:47:42.802Z\",\"categories\":[\"learn\"],\"creator\":{\"id\":\"2143f099-b7f4-4d18-94a9-083f3e16d393\",\"name\":\"Roo5\",\"picture\":\"https://cdn.gooo.ai/web-images/77465618a5c336bde7d61c7ee2db8276f6c0cd6762a28962923321a02f326c1d\"},\"latest_version_id\":\"019ec89d-aefd-7776-b450-0926e248f70b\"},{\"id\":\"019ec4a2-c47f-7b55-b692-33a1f3ce8e29\",\"created_at\":\"2026-06-14T05:37:42.015Z\",\"updated_at\":\"2026-06-20T12:44:32.971Z\",\"creator_id\":\"d6c705ef-50cd-41d2-af89-707fb166feac\",\"name\":\"Astrological Chart Code – Your Interpersonal Relationship Evolution Tool\",\"subtitle\":\"Your \\\"Factory Settings Map\\\"\",\"description\":\"By deeply interpreting your unique birth chart, you can see a \\\"factory settings map\\\" of your universe. Based on this map, you can more clearly see the hidden aspects of yourself and others. It provides an objective mirror, helping you to \\\"know yourself\\\" and \\\"understand others.\\\" It lets you know the needs and desires that others cannot express, thereby improving your relationships with children, spouses, in-laws, and colleagues. It adds more color to your life and makes it more fulfilling.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"avatar\":\"https://cdn.gooo.ai/assets/skill-avatar-default.png\",\"icon_value\":\"Deer\",\"icon_bg_color\":\"skill-bg12\",\"showcase\":[{\"url\":\"https://cdn.gooo.ai/gen-images/2ed321e8d59459442358130684d0a66b8f1d54834b25cbbec145ab36b12fe8ff.jpeg\",\"type\":\"image\"}],\"fork_count\":4,\"earned_credits\":1196,\"price\":299,\"content_visibility\":\"private\",\"origin\":\"custom\",\"suggested_categories\":[\"learn\"],\"featured_reason\":\"它将你的星盘转化为人际关系进化器,不仅深入解读性格,更提供定制化的交往雷区和正确打开方式,助你轻松提升情商。\",\"seo_description\":\"通过完整星盘,深入解读你的性格、情感模式与人际关系。获取专属关系指南,理解挑战,提升幸福感!\",\"input_hint\":\"Please tell me your birth information: country, city, year, month, day, and hour of birth, so I can decode your birth chart. If you don't know the hour, that's okay too.\",\"slug\":\"astrology-relationship-analyzer\",\"featured\":false,\"approved_at\":\"2026-06-17T02:13:28.065Z\",\"categories\":[\"learn\"],\"creator\":{\"id\":\"d6c705ef-50cd-41d2-af89-707fb166feac\",\"name\":\"E小猫\"},\"latest_version_id\":\"019ed074-d95c-7c2c-bde8-2cff596f1d27\"}],\"publicConfig\":{\"PUBLIC_AGENT_MODEL_MAP\":{\"lite\":\"deepseek-v4-pro\",\"pro\":\"deepseek-v4-pro\",\"max\":\"deepseek-v4-pro\"},\"PUBLIC_AGENT_MODEL_TIER_OPTIONS\":{\"lite\":[\"deepseek-v4-pro\",\"doubao-seed-2-1-pro-preview\",\"kimi-k2.6\"],\"pro\":[\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"gpt-5-4\",\"deepseek-v4-pro\"],\"max\":[\"claude-fable-5\",\"claude-4-8-opus\",\"claude-4-7-opus\",\"claude-4-6-opus\",\"gpt-5-5\",\"deepseek-v4-pro\"]},\"PUBLIC_AGENT_MODELS\":[\"claude-4-6-opus\",\"gpt-5-5\",\"deepseek-v4-pro\",\"claude-4-8-opus\",\"claude-4-7-opus\",\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"gpt-5-4\",\"doubao-seed-2-1-pro-preview\",\"kimi-k2.6\"],\"PUBLIC_ANNUAL_REPORT_OPEN\":false,\"PUBLIC_APPLE_ON_DEVICE_MODELS\":[{\"name\":\"base\",\"category\":\"Whisper\",\"url\":"])</script><script>self.__next_f.push([1,"\"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-4-6-opus\",\"gpt-5-5\",\"gemini-3.1-pro-preview\",\"gemini-3.5-flash\",\"deepseek-v4-pro\",\"kimi-k2.6\",\"glm-4.7\",\"minimax-m2-5\",\"claude-4-8-opus\",\"claude-4-7-opus\",\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"gpt-4o\",\"gemini-3-flash-preview\",\"deepseek-v4-flash\"],\"PUBLIC_CHAT_ABORT_SWITCH\":true,\"PUBLIC_CRAFT_AI_MODELS\":{\"page\":[\"claude-4-6-sonnet\",\"claude-4-6-opus\",\"claude-4-7-opus\",\"gpt-5-5\",\"gemini-3.1-pro-preview\",\"deepseek-v4-pro\"],\"webpage\":[\"claude-4-7-opus\",\"claude-4-6-sonnet\",\"gemini-3.1-pro-preview\",\"deepseek-v4-pro\",\"glm-4.7\"]},\"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\":false,\"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\":\"//at.alicdn.com/t/c/font_4986918_cyibtaf0ftb.js\",\"PUBLIC_IMAGE_MODELS\":[\"gpt-image-2-2026-04-21\",\"gemini-3-pro-image-preview\",\"gemini-3.1-flash-image-preview\",\"seedream-5-0-lite-260128\",\"sensenova-u1-fast\",\"qwen-image-2.0-pro\",\"qwen-image-2.0\"],\"PUBLIC_LAST_YOUWEB_RELEASE_TIME\":\"2026-06-20T14:53:15Z\",\"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/select_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"])</script><script>self.__next_f.push([1,".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\",\"from\":\"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.p"])</script><script>self.__next_f.push([1,"ng\",\"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}},\"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\":\"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-"])</script><script>self.__next_f.push([1,"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\":true,\"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}},\"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,\"extr"])</script><script>self.__next_f.push([1,"a\":{}},\"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_reasoning\":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_tok"])</script><script>self.__next_f.push([1,"en_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\":\"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}},\"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\":tru"])</script><script>self.__next_f.push([1,"e,\"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\":false}},\"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-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}}},\"PUBLIC_OFFLINE_WEB_PACKAGES\":[{\"name\":\"youweb\",\"url\":\"https://cdn.gooo.ai/offline-packages/production/youweb/0ebcc26928/0ebcc26928.zip\",\"shasum\":\"c5e02cbe98677923fee64ec6080743fa7416bda1b15760512a99a97a5fc81ccc\"}],\"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\":[\"deepsee"])</script><script>self.__next_f.push([1,"k-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\":[\"163.com\",\"gmail.com\",\"proton.me\"],\"PUBLIC_YOUTUBE_BOARD_EXAMPLE_URL\":\"https://youtu.be/n3Xv_g3g-mA\"},\"idealPath\":\"$undefined\"}]]}]}]\n"])</script></body></html>