YouMind
OverviewUse casesSkillsPromptsPricingBlogUpdates

In-depth and reliable research on Bio/Med

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".

installedBy
7
In-depth and reliable research on Bio/Med preview 1
In-depth and reliable research on Bio/Med preview 2
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.

Author

李

李振龙

Categories

research

Tools

Write

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 with 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" style="--bg-color:rgba(2, 4, 26, 0.04)" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_mek9inpfivabtkqivb_" 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:14px;height:14px;border-radius:7px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-xs font-normal px-[1px] truncate min-w-0 text-foreground">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" style="--bg-color:rgba(2, 4, 26, 0.04)" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_mik9inpfivabtkqivb_" 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:14px;height:14px;border-radius:7px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-xs font-normal px-[1px] truncate min-w-0 text-foreground">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 verification. 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" style="--bg-color:rgba(2, 4, 26, 0.04)" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_n6k9inpfivabtkqivb_" 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:14px;height:14px;border-radius:7px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-xs font-normal px-[1px] truncate min-w-0 text-foreground">Claude Sonnet 4.5</span></div></div></div></div></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=research">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 rounded-full overflow-hidden" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg14.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))"><g clip-path="url(#clip0_92_328)"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.9092 3.61614C13.9725 3.54459 14.0782 3.54377 14.1492 3.60763C14.9798 4.35425 15.2481 5.19333 15.3287 5.55058C15.3512 5.65032 15.4413 5.72651 15.5436 5.7291C19.0592 5.81839 19.3456 8.48403 19.3675 9.02679C19.3699 9.08814 19.3403 9.14399 19.2898 9.17887C18.9759 9.39555 17.7887 10.161 16.7859 10.081C16.619 10.0676 16.4617 10.2285 16.5203 10.3854C16.6888 10.8362 16.9712 11.5165 17.1422 11.5165C18.0277 11.5165 18.654 12.1167 18.8767 12.5638C19.0489 12.9065 18.8471 13.4041 18.4783 13.298C18.1669 13.2075 17.8016 13.1309 17.4588 13.1309C17.3736 13.1309 17.2837 13.1282 17.1933 13.1254C16.954 13.1181 16.7111 13.1107 16.5412 13.1538C16.4926 13.1661 16.4558 13.2033 16.4333 13.2481C16.2012 13.7086 15.8292 14.0871 15.371 14.3241C15.285 14.3685 15.2363 14.4642 15.2559 14.5591C15.3205 14.8712 15.3608 15.1917 15.3608 15.5248C15.3608 16.536 15.0537 17.4777 14.5294 18.2573C14.4544 18.3687 14.5002 18.5237 14.6226 18.5791C15.344 18.9058 15.8061 19.4132 15.8061 19.9784C15.8061 20.0902 15.7862 20.1984 15.7508 20.3036C15.7258 20.3782 15.6529 20.4237 15.5743 20.4237H10.4357C9.57064 20.4237 8.80276 19.9548 8.46442 19.7482C8.42587 19.7247 8.39291 19.7045 8.366 19.6889C8.32422 19.6646 8.27481 19.6651 8.22983 19.6828C7.74779 19.8723 7.22388 19.9784 6.67622 19.9784C4.33981 19.9784 2.44529 18.0839 2.44529 15.7474C2.44529 14.387 2.9607 13.6363 3.78137 12.4355C4.42879 11.4881 5.49992 10.4429 5.49992 9.5C5.49992 8.55706 4.65889 7.95362 3.78137 7.95362C3.21663 7.95362 2.70644 8.16647 2.31622 8.51417C2.2007 8.61711 1.99992 8.55371 1.99992 8.39898V8.39898C1.99992 5.69375 4.19368 3.5 6.8989 3.5C9.60413 3.5 11.7979 5.69375 11.7979 8.39898C11.7979 9.82906 11.0647 10.4789 10.8589 10.6065C10.8362 10.6205 10.8097 10.626 10.7831 10.6266C8.13835 10.6932 6.00818 12.8645 6.00818 15.5248C6.00818 16.0275 6.08473 16.5216 6.2326 16.9965C6.29175 17.1862 6.46746 17.308 6.65708 17.308C6.70232 17.308 6.74581 17.301 6.79104 17.2871C7.0259 17.2123 7.15638 16.9635 7.08157 16.7286C6.96153 16.3407 6.8989 15.9353 6.8989 15.5248C6.8989 13.3136 8.696 11.5165 10.9072 11.5165C12.967 11.5165 13.134 7.20729 13.134 6.17217C13.134 4.66308 13.6683 3.88867 13.9092 3.61614ZM15.4536 8.13918C15.7098 8.13918 15.9175 7.93148 15.9175 7.67527C15.9175 7.41905 15.7098 7.21135 15.4536 7.21135C15.1973 7.21135 14.9896 7.41905 14.9896 7.67527C14.9896 7.93148 15.1973 8.13918 15.4536 8.13918Z" fill="currentColor"></path><path d="M19.0376 11.7397C19.0022 11.7302 18.9703 11.7111 18.9444 11.6852C18.6991 11.4396 18.3762 11.2161 17.9872 11.083C17.8301 11.0293 17.7826 10.8346 17.9356 10.77C18.0438 10.7242 18.1661 10.687 18.3011 10.6594C18.736 10.5704 19.2712 10.5873 19.8134 10.7047C19.9139 10.7265 20.0151 10.6711 20.0739 10.5868C20.4895 9.99192 21.8556 9.7453 22.0454 10.1529C22.0603 10.185 22.0574 10.2218 22.0483 10.2559C21.9958 10.4518 21.6862 10.5097 21.4986 10.433C21.1317 10.2829 20.7678 10.484 20.5794 10.8198C20.5259 10.9152 20.5831 11.0286 20.6862 11.0649C21.066 11.1983 21.3288 11.3051 21.5964 11.5424C21.8807 11.7945 22.0452 12.0615 22.0743 12.3098C22.0899 12.4421 21.9539 12.5211 21.8252 12.4866L19.0376 11.7397Z" fill="currentColor"></path><path d="M19.4704 13.1145C19.4685 12.9492 19.6213 12.7833 19.781 12.8261L21.3117 13.2363C21.6334 13.3225 21.8244 13.6532 21.7381 13.9749L21.5365 14.7274C21.1818 16.0513 20.1095 17.0612 18.7667 17.336L18.6108 17.3679C18.602 17.3697 18.5933 17.3712 18.5846 17.3726C18.5642 17.3759 18.5471 17.3902 18.5418 17.4101V17.4101C18.5131 17.5173 18.4028 17.581 18.2956 17.5522C18.1884 17.5235 18.1247 17.4133 18.1535 17.306V17.306C18.1573 17.2916 18.1514 17.2764 18.1393 17.2678C18.1222 17.2556 18.1056 17.2424 18.0897 17.2283L17.9706 17.1227C17.0871 16.3392 16.6503 15.1837 16.7731 14.0322C16.7758 14.0067 16.7846 13.9824 16.7979 13.9605V13.9605C16.8281 13.9112 16.8798 13.8782 16.9376 13.8773C16.9527 13.877 16.9685 13.8769 16.9848 13.8769C17.0647 13.8768 17.1495 13.8793 17.2426 13.8821L17.2499 13.8824C17.338 13.885 17.434 13.888 17.5264 13.888C17.8072 13.888 18.1252 13.952 18.4165 14.0366L18.4176 14.0369C18.6219 14.0957 18.83 14.0746 19.0098 13.9768C19.1807 13.8837 19.2953 13.7386 19.365 13.5955C19.4351 13.4516 19.4724 13.2847 19.4704 13.1145Z" fill="currentColor"></path></g><defs><clipPath id="clip0_92_328"><rect width="24" height="24" fill="currentColor"></rect></clipPath></defs></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">Harvard Framework Financial Report Analyst</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Based on the Harvard analytical framework, it automatically performs in-depth analysis of listed companies' annual reports across four dimensions: strategy, accounting, finance, and prospects, outputting professional-grade research reports and visualization charts.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/gen-images/652c98c39c4f96407b14bc776ac1da7d7c18e9264d9a36b85aa5422a1de41588.png@small" alt="Harvard Framework Financial Report Analyst" 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 rounded-full overflow-hidden" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg10.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="M18.3639 4.39989C16.2891 4.39989 15.84 5.15989 15.84 5.15989C15.5436 4.36949 14.8474 3.63989 13.56 3.63989C12.613 3.63989 11.28 4.53593 11.28 6.52789C11.28 9.77157 13.2552 11.3904 13.275 11.4071C13.6033 11.6693 13.6558 12.1481 13.3928 12.4749C13.2431 12.6626 13.0219 12.7599 12.7992 12.7599C12.6328 12.7599 12.4656 12.7059 12.325 12.5927C12.2201 12.5091 9.75999 10.4928 9.75999 6.52789C9.75999 5.69341 9.93175 4.98889 10.2076 4.39989C9.51451 4.39989 8.60403 4.39989 7.58867 4.39989C5.05787 4.39989 2.91999 6.75589 2.91999 9.71989C2.91999 12.9583 5.03887 13.3101 5.19163 19.6273C5.20151 20.0361 5.54199 20.3599 5.95087 20.3599H8.23999C8.65951 20.3599 8.99999 20.0194 8.99999 19.5999V16.9399C8.99999 16.3106 9.51071 15.7999 10.14 15.7999C10.7693 15.7999 11.28 16.3106 11.28 16.9399V19.5999C11.28 20.0194 11.6205 20.3599 12.04 20.3599H14.0038C14.4241 20.3599 14.7654 20.0225 14.7638 19.6022C14.757 17.6247 15.5223 11.9999 17.36 11.9999C18.5456 11.9999 19.7388 13.3033 19.64 15.5757C19.64 17.5563 18.459 18.3771 17.797 18.6811C17.5257 18.8057 17.36 19.0846 17.36 19.3833C17.36 19.9252 17.8988 20.3097 18.4088 20.1251C20.7739 19.2693 22.68 16.2202 22.68 10.4799C22.68 5.79981 20.1423 4.39989 18.3639 4.39989ZM20.4 10.4799C19.944 10.4799 19.64 10.1759 19.64 9.71989C19.64 9.26389 19.944 8.95989 20.4 8.95989C20.856 8.95989 21.16 9.26389 21.16 9.71989C21.16 10.1759 20.856 10.4799 20.4 10.4799Z" 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">Non-consensus engine</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">The core of this prompt isn't "helping users come up with counterintuitive headlines," but rather solidifying your methodology into a stable process: Stereotype identification → causal breakdown of errors → counterexamples → new framework establishment → concept definition → content development. In other words, it's not essentially a "writing skill," but a cognitive reconstruction-based content generation skill. This makes it more distinctive than ordinary topic selection tools.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/43ea23aad7a27583b5b368fdbcc9478fec44db529210a12c1b7d7c9bc6023491@small" alt="Non-consensus engine" 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 rounded-full overflow-hidden" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg01.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))"><g clip-path="url(#clip0_92_337)"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.57583 2.57588C8.81014 2.34157 9.19004 2.34157 9.42436 2.57588L10.4244 3.57588C10.6587 3.8102 10.6587 4.1901 10.4244 4.42441C10.19 4.65873 9.81014 4.65873 9.57583 4.42441L8.57583 3.42441C8.34151 3.1901 8.34151 2.8102 8.57583 2.57588Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M15.4244 2.57588C15.19 2.34157 14.8101 2.34157 14.5758 2.57588L13.5758 3.57588C13.3415 3.8102 13.3415 4.1901 13.5758 4.42441C13.8101 4.65873 14.19 4.65873 14.4244 4.42441L15.4244 3.42441C15.6587 3.1901 15.6587 2.8102 15.4244 2.57588Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M15.4944 6.70346C15.4982 6.63613 15.5002 6.56829 15.5002 6.5C15.5002 4.567 13.9332 3 12.0002 3C10.0672 3 8.50019 4.567 8.50019 6.5C8.50019 6.56829 8.50215 6.63613 8.50601 6.70345C9.58034 6.25044 10.761 6 12.0002 6C13.2394 6 14.42 6.25044 15.4944 6.70346Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 19.5C12.5524 19.5 13.0001 19.9477 13.0001 20.5V21.5C13.0001 22.0523 12.5524 22.5 12.0001 22.5C11.4478 22.5 11.0001 22.0523 11.0001 21.5V20.5C11.0001 19.9477 11.4478 19.5 12.0001 19.5Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M8.0607 18.9394C8.45122 19.3299 8.45122 19.9631 8.0607 20.3536L7.35359 21.0607C6.96307 21.4513 6.3299 21.4513 5.93938 21.0607C5.54885 20.6702 5.54885 20.037 5.93938 19.6465L6.64648 18.9394C7.03701 18.5489 7.67017 18.5489 8.0607 18.9394Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M16.293 18.7929C16.6835 18.4024 17.3167 18.4024 17.7072 18.7929L18.4143 19.5C18.8048 19.8905 18.8048 20.5237 18.4143 20.9142C18.0238 21.3047 17.3906 21.3047 17.0001 20.9142L16.293 20.2071C15.9024 19.8166 15.9024 19.1834 16.293 18.7929Z" fill="currentColor"></path><path d="M15.5809 16.6013C14.0247 15.6217 12.7823 13.6007 12.0075 11.7C11.2316 13.6012 9.98865 15.6234 8.43125 16.6028C8.8452 17.1612 9.38422 17.6148 10.0051 17.9273C10.6259 18.2398 11.3114 18.4025 12.0065 18.4024C12.7016 18.4022 13.3869 18.2392 14.0077 17.9265C14.6284 17.6137 15.1672 17.1599 15.5809 16.6013Z" fill="currentColor"></path><path d="M20.5104 12.2087C19.4049 9.53886 15.0078 7 12.0001 7C8.99234 7 4.6102 9.53886 3.50475 12.2087C2.9364 13.5818 3.16688 14.8816 4.15415 15.8687C4.38157 16.117 4.65687 16.3167 4.96348 16.4559C5.2701 16.595 5.60169 16.6707 5.9383 16.6783C6.28233 16.6751 6.62228 16.6033 6.9383 16.4674C9.52933 15.3949 11.7008 10.5388 11.9767 8.01538H12.0384C12.3143 10.5388 14.4858 15.3949 17.0768 16.4675C17.3928 16.6034 17.7328 16.6752 18.0768 16.6784C18.4134 16.6708 18.745 16.5951 19.0516 16.456C19.3582 16.3168 19.6335 16.1171 19.861 15.8688C20.8482 14.8816 21.0787 13.5818 20.5104 12.2087Z" fill="currentColor"></path></g><defs><clipPath id="clip0_92_337"><rect width="24" height="24" fill="currentColor"></rect></clipPath></defs></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">MM-article</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">This lightweight research and writing skill is based on information sources from the past 3 days. It extracts anchor points from user information sources and recommends 5 candidate topics (3 consensus hotspots + 2 forward-looking signals). After the user selects a topic, it delves into the relevant information and generates an editable outline. The main writing only begins after the user explicitly confirms the outline.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/2001d59579dc38a5dc632880bc66facfc832512ea32e4b7ef04b96fbd4ac9ba5@small" alt="MM-article" 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-start justify-between px-5"><div class="relative w-[72px] h-20 shrink-0 flex flex-col"><div class="relative w-16 h-16 rounded-full overflow-hidden" 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.png);background-size:cover"><div class="absolute inset-0 flex items-center justify-center"><svg width="32" height="32" 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 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 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><p class="text-sm leading-5 text-secondary-fg line-clamp-4 max-h-20">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 class="flex items-center gap-3 text-sm leading-5 flex-wrap"><div class="flex items-center gap-2"><span class="text-secondary-fg">installedBy</span><div class="flex items-center gap-1"><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" aria-hidden="true"><circle cx="12" cy="8" r="5"></circle><path d="M20 21a8 8 0 0 0-16 0"></path></svg><span>7</span></div></div></div></div><div class="flex flex-col gap-4 px-4"><div class="h-60 rounded-3xl overflow-hidden bg-muted relative cursor-pointer"><img src="https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2" alt="In-depth and reliable research on Bio/Med preview 1" class="object-cover w-full h-full"/></div><div class="h-60 rounded-3xl overflow-hidden bg-muted relative cursor-pointer"><img src="https://cdn.gooo.ai/web-images/f697d3abe7d40284b9afc64c0ec008739ef2f24e668d3e36d7f7890b70206ad7" alt="In-depth and reliable research on Bio/Med preview 2" class="object-cover w-full h-full"/></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 gap-5 px-5"><div class="flex flex-col gap-2 flex-1 min-w-0"><p class="text-sm leading-5 text-caption-fg">Author</p><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><p class="text-sm leading-5 font-medium text-foreground truncate">李振龙</p></div></a></div><div class="flex flex-col gap-2 flex-1 min-w-0"><p class="text-sm leading-5 text-caption-fg">Categories</p><a class="hover:opacity-80 transition-opacity" href="/skills?category=research"><p class="text-sm leading-5 text-foreground">research</p></a></div><div class="flex flex-col gap-2 flex-1 min-w-0"><p class="text-sm leading-5 text-caption-fg">Tools</p><div class="flex items-center gap-3 h-5"><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-pen-tool text-foreground shrink-0" aria-hidden="true"><path d="M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"></path><path d="m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"></path><path d="m2.3 2.3 7.286 7.286"></path><circle cx="11" cy="11" r="2"></circle></svg></div></div></div><div class="flex flex-col gap-2.5 px-5"><div class="flex items-center justify-between"><p class="text-sm leading-5 text-caption-fg">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-background 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 with 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" style="--bg-color:rgba(2, 4, 26, 0.04)" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_5jmhinpfivabtkqivb_" 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:14px;height:14px;border-radius:7px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-xs font-normal px-[1px] truncate min-w-0 text-foreground">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" style="--bg-color:rgba(2, 4, 26, 0.04)" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_5kmhinpfivabtkqivb_" 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:14px;height:14px;border-radius:7px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-xs font-normal px-[1px] truncate min-w-0 text-foreground">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 verification. 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" style="--bg-color:rgba(2, 4, 26, 0.04)" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_5pmhinpfivabtkqivb_" 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:14px;height:14px;border-radius:7px" role="img" aria-label="Claude Sonnet 4.5"></div></div><span class="text-xs font-normal px-[1px] truncate min-w-0 text-foreground">Claude Sonnet 4.5</span></div></div></div></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=research">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 rounded-full overflow-hidden" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg14.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))"><g clip-path="url(#clip0_92_328)"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.9092 3.61614C13.9725 3.54459 14.0782 3.54377 14.1492 3.60763C14.9798 4.35425 15.2481 5.19333 15.3287 5.55058C15.3512 5.65032 15.4413 5.72651 15.5436 5.7291C19.0592 5.81839 19.3456 8.48403 19.3675 9.02679C19.3699 9.08814 19.3403 9.14399 19.2898 9.17887C18.9759 9.39555 17.7887 10.161 16.7859 10.081C16.619 10.0676 16.4617 10.2285 16.5203 10.3854C16.6888 10.8362 16.9712 11.5165 17.1422 11.5165C18.0277 11.5165 18.654 12.1167 18.8767 12.5638C19.0489 12.9065 18.8471 13.4041 18.4783 13.298C18.1669 13.2075 17.8016 13.1309 17.4588 13.1309C17.3736 13.1309 17.2837 13.1282 17.1933 13.1254C16.954 13.1181 16.7111 13.1107 16.5412 13.1538C16.4926 13.1661 16.4558 13.2033 16.4333 13.2481C16.2012 13.7086 15.8292 14.0871 15.371 14.3241C15.285 14.3685 15.2363 14.4642 15.2559 14.5591C15.3205 14.8712 15.3608 15.1917 15.3608 15.5248C15.3608 16.536 15.0537 17.4777 14.5294 18.2573C14.4544 18.3687 14.5002 18.5237 14.6226 18.5791C15.344 18.9058 15.8061 19.4132 15.8061 19.9784C15.8061 20.0902 15.7862 20.1984 15.7508 20.3036C15.7258 20.3782 15.6529 20.4237 15.5743 20.4237H10.4357C9.57064 20.4237 8.80276 19.9548 8.46442 19.7482C8.42587 19.7247 8.39291 19.7045 8.366 19.6889C8.32422 19.6646 8.27481 19.6651 8.22983 19.6828C7.74779 19.8723 7.22388 19.9784 6.67622 19.9784C4.33981 19.9784 2.44529 18.0839 2.44529 15.7474C2.44529 14.387 2.9607 13.6363 3.78137 12.4355C4.42879 11.4881 5.49992 10.4429 5.49992 9.5C5.49992 8.55706 4.65889 7.95362 3.78137 7.95362C3.21663 7.95362 2.70644 8.16647 2.31622 8.51417C2.2007 8.61711 1.99992 8.55371 1.99992 8.39898V8.39898C1.99992 5.69375 4.19368 3.5 6.8989 3.5C9.60413 3.5 11.7979 5.69375 11.7979 8.39898C11.7979 9.82906 11.0647 10.4789 10.8589 10.6065C10.8362 10.6205 10.8097 10.626 10.7831 10.6266C8.13835 10.6932 6.00818 12.8645 6.00818 15.5248C6.00818 16.0275 6.08473 16.5216 6.2326 16.9965C6.29175 17.1862 6.46746 17.308 6.65708 17.308C6.70232 17.308 6.74581 17.301 6.79104 17.2871C7.0259 17.2123 7.15638 16.9635 7.08157 16.7286C6.96153 16.3407 6.8989 15.9353 6.8989 15.5248C6.8989 13.3136 8.696 11.5165 10.9072 11.5165C12.967 11.5165 13.134 7.20729 13.134 6.17217C13.134 4.66308 13.6683 3.88867 13.9092 3.61614ZM15.4536 8.13918C15.7098 8.13918 15.9175 7.93148 15.9175 7.67527C15.9175 7.41905 15.7098 7.21135 15.4536 7.21135C15.1973 7.21135 14.9896 7.41905 14.9896 7.67527C14.9896 7.93148 15.1973 8.13918 15.4536 8.13918Z" fill="currentColor"></path><path d="M19.0376 11.7397C19.0022 11.7302 18.9703 11.7111 18.9444 11.6852C18.6991 11.4396 18.3762 11.2161 17.9872 11.083C17.8301 11.0293 17.7826 10.8346 17.9356 10.77C18.0438 10.7242 18.1661 10.687 18.3011 10.6594C18.736 10.5704 19.2712 10.5873 19.8134 10.7047C19.9139 10.7265 20.0151 10.6711 20.0739 10.5868C20.4895 9.99192 21.8556 9.7453 22.0454 10.1529C22.0603 10.185 22.0574 10.2218 22.0483 10.2559C21.9958 10.4518 21.6862 10.5097 21.4986 10.433C21.1317 10.2829 20.7678 10.484 20.5794 10.8198C20.5259 10.9152 20.5831 11.0286 20.6862 11.0649C21.066 11.1983 21.3288 11.3051 21.5964 11.5424C21.8807 11.7945 22.0452 12.0615 22.0743 12.3098C22.0899 12.4421 21.9539 12.5211 21.8252 12.4866L19.0376 11.7397Z" fill="currentColor"></path><path d="M19.4704 13.1145C19.4685 12.9492 19.6213 12.7833 19.781 12.8261L21.3117 13.2363C21.6334 13.3225 21.8244 13.6532 21.7381 13.9749L21.5365 14.7274C21.1818 16.0513 20.1095 17.0612 18.7667 17.336L18.6108 17.3679C18.602 17.3697 18.5933 17.3712 18.5846 17.3726C18.5642 17.3759 18.5471 17.3902 18.5418 17.4101V17.4101C18.5131 17.5173 18.4028 17.581 18.2956 17.5522C18.1884 17.5235 18.1247 17.4133 18.1535 17.306V17.306C18.1573 17.2916 18.1514 17.2764 18.1393 17.2678C18.1222 17.2556 18.1056 17.2424 18.0897 17.2283L17.9706 17.1227C17.0871 16.3392 16.6503 15.1837 16.7731 14.0322C16.7758 14.0067 16.7846 13.9824 16.7979 13.9605V13.9605C16.8281 13.9112 16.8798 13.8782 16.9376 13.8773C16.9527 13.877 16.9685 13.8769 16.9848 13.8769C17.0647 13.8768 17.1495 13.8793 17.2426 13.8821L17.2499 13.8824C17.338 13.885 17.434 13.888 17.5264 13.888C17.8072 13.888 18.1252 13.952 18.4165 14.0366L18.4176 14.0369C18.6219 14.0957 18.83 14.0746 19.0098 13.9768C19.1807 13.8837 19.2953 13.7386 19.365 13.5955C19.4351 13.4516 19.4724 13.2847 19.4704 13.1145Z" fill="currentColor"></path></g><defs><clipPath id="clip0_92_328"><rect width="24" height="24" fill="currentColor"></rect></clipPath></defs></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">Harvard Framework Financial Report Analyst</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Based on the Harvard analytical framework, it automatically performs in-depth analysis of listed companies' annual reports across four dimensions: strategy, accounting, finance, and prospects, outputting professional-grade research reports and visualization charts.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/gen-images/652c98c39c4f96407b14bc776ac1da7d7c18e9264d9a36b85aa5422a1de41588.png@small" alt="Harvard Framework Financial Report Analyst" 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 rounded-full overflow-hidden" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg10.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="M18.3639 4.39989C16.2891 4.39989 15.84 5.15989 15.84 5.15989C15.5436 4.36949 14.8474 3.63989 13.56 3.63989C12.613 3.63989 11.28 4.53593 11.28 6.52789C11.28 9.77157 13.2552 11.3904 13.275 11.4071C13.6033 11.6693 13.6558 12.1481 13.3928 12.4749C13.2431 12.6626 13.0219 12.7599 12.7992 12.7599C12.6328 12.7599 12.4656 12.7059 12.325 12.5927C12.2201 12.5091 9.75999 10.4928 9.75999 6.52789C9.75999 5.69341 9.93175 4.98889 10.2076 4.39989C9.51451 4.39989 8.60403 4.39989 7.58867 4.39989C5.05787 4.39989 2.91999 6.75589 2.91999 9.71989C2.91999 12.9583 5.03887 13.3101 5.19163 19.6273C5.20151 20.0361 5.54199 20.3599 5.95087 20.3599H8.23999C8.65951 20.3599 8.99999 20.0194 8.99999 19.5999V16.9399C8.99999 16.3106 9.51071 15.7999 10.14 15.7999C10.7693 15.7999 11.28 16.3106 11.28 16.9399V19.5999C11.28 20.0194 11.6205 20.3599 12.04 20.3599H14.0038C14.4241 20.3599 14.7654 20.0225 14.7638 19.6022C14.757 17.6247 15.5223 11.9999 17.36 11.9999C18.5456 11.9999 19.7388 13.3033 19.64 15.5757C19.64 17.5563 18.459 18.3771 17.797 18.6811C17.5257 18.8057 17.36 19.0846 17.36 19.3833C17.36 19.9252 17.8988 20.3097 18.4088 20.1251C20.7739 19.2693 22.68 16.2202 22.68 10.4799C22.68 5.79981 20.1423 4.39989 18.3639 4.39989ZM20.4 10.4799C19.944 10.4799 19.64 10.1759 19.64 9.71989C19.64 9.26389 19.944 8.95989 20.4 8.95989C20.856 8.95989 21.16 9.26389 21.16 9.71989C21.16 10.1759 20.856 10.4799 20.4 10.4799Z" 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">Non-consensus engine</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">The core of this prompt isn't "helping users come up with counterintuitive headlines," but rather solidifying your methodology into a stable process: Stereotype identification → causal breakdown of errors → counterexamples → new framework establishment → concept definition → content development. In other words, it's not essentially a "writing skill," but a cognitive reconstruction-based content generation skill. This makes it more distinctive than ordinary topic selection tools.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/43ea23aad7a27583b5b368fdbcc9478fec44db529210a12c1b7d7c9bc6023491@small" alt="Non-consensus engine" 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 rounded-full overflow-hidden" style="background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(https://cdn.gooo.ai/assets/skill-bg01.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))"><g clip-path="url(#clip0_92_337)"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.57583 2.57588C8.81014 2.34157 9.19004 2.34157 9.42436 2.57588L10.4244 3.57588C10.6587 3.8102 10.6587 4.1901 10.4244 4.42441C10.19 4.65873 9.81014 4.65873 9.57583 4.42441L8.57583 3.42441C8.34151 3.1901 8.34151 2.8102 8.57583 2.57588Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M15.4244 2.57588C15.19 2.34157 14.8101 2.34157 14.5758 2.57588L13.5758 3.57588C13.3415 3.8102 13.3415 4.1901 13.5758 4.42441C13.8101 4.65873 14.19 4.65873 14.4244 4.42441L15.4244 3.42441C15.6587 3.1901 15.6587 2.8102 15.4244 2.57588Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M15.4944 6.70346C15.4982 6.63613 15.5002 6.56829 15.5002 6.5C15.5002 4.567 13.9332 3 12.0002 3C10.0672 3 8.50019 4.567 8.50019 6.5C8.50019 6.56829 8.50215 6.63613 8.50601 6.70345C9.58034 6.25044 10.761 6 12.0002 6C13.2394 6 14.42 6.25044 15.4944 6.70346Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 19.5C12.5524 19.5 13.0001 19.9477 13.0001 20.5V21.5C13.0001 22.0523 12.5524 22.5 12.0001 22.5C11.4478 22.5 11.0001 22.0523 11.0001 21.5V20.5C11.0001 19.9477 11.4478 19.5 12.0001 19.5Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M8.0607 18.9394C8.45122 19.3299 8.45122 19.9631 8.0607 20.3536L7.35359 21.0607C6.96307 21.4513 6.3299 21.4513 5.93938 21.0607C5.54885 20.6702 5.54885 20.037 5.93938 19.6465L6.64648 18.9394C7.03701 18.5489 7.67017 18.5489 8.0607 18.9394Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M16.293 18.7929C16.6835 18.4024 17.3167 18.4024 17.7072 18.7929L18.4143 19.5C18.8048 19.8905 18.8048 20.5237 18.4143 20.9142C18.0238 21.3047 17.3906 21.3047 17.0001 20.9142L16.293 20.2071C15.9024 19.8166 15.9024 19.1834 16.293 18.7929Z" fill="currentColor"></path><path d="M15.5809 16.6013C14.0247 15.6217 12.7823 13.6007 12.0075 11.7C11.2316 13.6012 9.98865 15.6234 8.43125 16.6028C8.8452 17.1612 9.38422 17.6148 10.0051 17.9273C10.6259 18.2398 11.3114 18.4025 12.0065 18.4024C12.7016 18.4022 13.3869 18.2392 14.0077 17.9265C14.6284 17.6137 15.1672 17.1599 15.5809 16.6013Z" fill="currentColor"></path><path d="M20.5104 12.2087C19.4049 9.53886 15.0078 7 12.0001 7C8.99234 7 4.6102 9.53886 3.50475 12.2087C2.9364 13.5818 3.16688 14.8816 4.15415 15.8687C4.38157 16.117 4.65687 16.3167 4.96348 16.4559C5.2701 16.595 5.60169 16.6707 5.9383 16.6783C6.28233 16.6751 6.62228 16.6033 6.9383 16.4674C9.52933 15.3949 11.7008 10.5388 11.9767 8.01538H12.0384C12.3143 10.5388 14.4858 15.3949 17.0768 16.4675C17.3928 16.6034 17.7328 16.6752 18.0768 16.6784C18.4134 16.6708 18.745 16.5951 19.0516 16.456C19.3582 16.3168 19.6335 16.1171 19.861 15.8688C20.8482 14.8816 21.0787 13.5818 20.5104 12.2087Z" fill="currentColor"></path></g><defs><clipPath id="clip0_92_337"><rect width="24" height="24" fill="currentColor"></rect></clipPath></defs></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">MM-article</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">This lightweight research and writing skill is based on information sources from the past 3 days. It extracts anchor points from user information sources and recommends 5 candidate topics (3 consensus hotspots + 2 forward-looking signals). After the user selects a topic, it delves into the relevant information and generates an editable outline. The main writing only begins after the user explicitly confirms the outline.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/2001d59579dc38a5dc632880bc66facfc832512ea32e4b7ef04b96fbd4ac9ba5@small" alt="MM-article" 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="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-sparkles absolute bottom-6 right-6 size-5 rotate-180 text-[#D9C2FF] md:bottom-8 md:right-8" aria-hidden="true"><path d="M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z"></path><path d="M20 3v4"></path><path d="M22 5h-4"></path><path d="M4 17v2"></path><path d="M5 18H3"></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 flex flex-col px-[8%] pb-[90px] pt-[64px] md:pt-[80px] font-sans-title text-sm md:text-base bg-card"><div class="flex flex-col w-full mt-4 md:flex-row gap-8"><div class="mb-8 flex-1 md:mb-0 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_rqbtkqivb_" 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="flex gap-6 mt-10 items-center"><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><a href="https://www.producthunt.com/products/youmind?embed=true&utm_source=badge-featured&utm_medium=badge&utm_source=badge-youmind" target="_blank" rel="noreferrer noopener" class="flex-shrink-0"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=989426&theme=light&t=1759197639729" alt="YouMind - The first AI learning and creation agent where learning meets writing | Product Hunt" width="250" height="36" class="h-[36px] w-auto"/></a></div></div><div class="grid grid-cols-3 gap-4 lg:flex lg:flex-row md:gap-8 lg:gap-16 flex-1"><div class="flex-1 lg:flex-[1.5]"><div class="mb-[16px] text-base font-semibold">Prompts</div><div class="flex flex-col gap-[20px] text-sm"><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/nano-banana-pro-prompts?utm_source=footer">Nano Banana Pro Prompts</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/gpt-image-2-prompts?utm_source=footer"><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="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/seedance-2-0-prompts?utm_source=footer">Seedance 2.0 Prompts</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/gpt-image-1-5-prompts?utm_source=footer">GPT Image 1.5 Prompts</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/seedream-4-dot-5-prompts?utm_source=footer">Seedream 4.5 Prompts</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/gemini-3-prompts?utm_source=footer">Gemini 3 Pro Prompts</a></div></div><div class="flex-1 lg:flex-[1.5]"><div class="mb-[16px] text-base font-semibold">AI Tools</div><div class="flex flex-col gap-[20px] text-sm"><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/landing/gpt-image-2-slides?utm_source=footer">GPT Image 2 Slides</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/landing/x-viral-articles?utm_source=footer"><span class="inline-flex items-center gap-1.5">𝕏 Viral Articles Tracking<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="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/model-arena/nano-banana-2-vs-nano-banana-pro?utm_source=footer">Nano Banana 2 VS Pro</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/abti?utm_source=footer">ABTI Personality Test</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/landing/lenny-career-coach?utm_source=footer">Lenny Career Coach</a></div></div><div class="flex-1 lg:flex-[2]"><div class="mb-[16px] text-base font-semibold">Blog</div><div class="flex flex-col gap-[20px] text-sm"><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/blog/best-notebooklm-alternatives">NotebookLM Alternatives</a></div></div><div class="flex-1"><div class="mb-[16px] text-base font-semibold">Product</div><div class="flex flex-col gap-[20px] text-sm"><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/use-cases">Use cases</a><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/pricing">Pricing</a></div></div><div class="flex-1 mt-0"><div class="mb-[16px] text-base font-semibold">Company</div><div class="flex flex-col gap-[20px] text-sm"><div class="cursor-pointer lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]">Contact us</div><a class="lg:whitespace-nowrap text-[rgba(0,0,0,0.6)]" href="/privacy">Privacy</a><a class="lg: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/117_~smls5.ya.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/0g.obgwn4g9hf.js\"],\"default\"]\n3:I[470962,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\"],\"default\"]\n4:I[335838,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0qengg0z4c7j7.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\"],\"default\"]\nd:I[663151,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0hv.-v9u3--cf.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/0-sij_15ad7bx.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/03l2i8r797hgu.js\"],\"default\"]\n11:I[506740,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\"],\"OutletBoundary\"]\n12:\"$Sreact.suspense\"\n15:I[506740,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\"],\"ViewportBoundary\"]\n17:I[506740,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\"],\"MetadataBoundary\"]\n19:I[713662,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0h18g41innpwc.js\",\"/_next/static/chunks/0e140~9kcna98.js\",\"/_next/static/chunks/0t3gtsd9-0j3f.js\",\"/_next/static/chunks/0~3g_ip0rn8wb.js\"],\"Header\"]\n1b:I[238910,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"\"]\n1c:I[148724,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"default\"]\n1d:I[855331,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/ch"])</script><script>self.__next_f.push([1,"unks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"PostHogProvider\"]\n1e:I[612645,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"GtagProvider\"]\n1f:I[242092,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"ThemeProvider\"]\n21:I[825979,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"default\"]\n25:I[407240,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"I18nProvider\"]\n26:I[422187,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_n"])</script><script>self.__next_f.push([1,"ext/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"NuqsAdapter\"]\n27:I[470174,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"default\"]\n28:I[416398,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"GoogleOneTapPrompt\"]\n29:I[524955,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"default\"]\n2a:I[170637,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"default\"]\n2b:I[246331,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\","])</script><script>self.__next_f.push([1,"\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"Toaster\"]\n2c:I[673227,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\"],\"PageRedirecting\"]\n:HL[\"/_next/static/chunks/06ax7julidfym.css\",\"style\"]\n:HL[\"/_next/static/chunks/0bis432bl_9ol.css\",\"style\"]\n:HL[\"/_next/static/chunks/0w4j13h6i7zdh.css\",\"style\"]\n:HL[\"/_next/static/chunks/0mtcuu7cd2iei.css\",\"style\"]\n:HL[\"/_next/static/chunks/0-5wd7x1od-bn.css\",\"style\"]\n:HL[\"/_next/static/media/051742360c26797e-s.p.0f97p8c3305p~.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/1904c30335c1760b-s.p.08w36q5lu9vc4.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/20a72cd0c9704d06-s.p.0wk9o2ly~jaap.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/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/fabcf92ba1ccea36-s.p.0lwj123ije5i..woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/chunks/0c-.vk1qg481e.css\",\"style\"]\n0:{\"P\":null,\"c\":[\"\",\"skills\",\"biomed-research-assistant-zXJCpN71mICVZ2\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[[\"locale\",\"en-US\",\"d\",null],{\"children\":[\"(marketing)\",{\"children\":[\"skills\",{\"children\":[["])</script><script>self.__next_f.push([1,"\"id\",\"biomed-research-assistant-zXJCpN71mICVZ2\",\"d\",null],{\"children\":[\"__PAGE__\",{}]}]}]}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/06ax7julidfym.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0bis432bl_9ol.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/0g.obgwn4g9hf.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/0w4j13h6i7zdh.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0w4j13h6i7zdh.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0i7wyd~01bnly.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/09aqnhxj1v..o.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0dfl~.kdzn501.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/12eet_n1j_70l.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/14sot.i98.52p.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/0fa~xz4852_qs.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/0ysljzli4goe4.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/15yefln-vinpt.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/0e2c78d-wylvg.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/chunks/11c3ol2k4e57t.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/chunks/0he9x19q1vr9y.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-13\",{\"src\":\"/_next/static/chunks/00cyi-erkfrjk.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-14\",{\"src\":\"/_next/static/chunks/0yn91s91gmmxu.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-15\",{\"src\":\"/_next/static/chunks/0clicpkgc_b5k.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-16\",{\"src\":\"/_next/static/chunks/0s9l__e4x_dit.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-17\",{\"src\":\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L5\"]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0mtcuu7cd2iei.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0-5wd7x1od-bn.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0h18g41innpwc.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0e140~9kcna98.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0t3gtsd9-0j3f.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0~3g_ip0rn8wb.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L6\"]}],{\"chil"])</script><script>self.__next_f.push([1,"dren\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[\"$L7\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0c-.vk1qg481e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/13jy~kpiiat_a.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0dxfr3e5sab51.js\",\"async\":true,\"nonce\":\"$undefined\"}],\"$L8\",\"$L9\"],\"$La\"]}],{},null,false,null]},null,false,\"$@b\"]},null,false,\"$@b\"]},null,false,null]},null,false,null]},null,false,null],\"$Lc\",false]],\"m\":\"$undefined\",\"G\":[\"$d\",[\"$Le\",\"$Lf\",\"$L10\"]],\"S\":false,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"fJ3z8D59bX60O1AilDRrd\"}\n8:[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0_3y38.xpu16b.js\",\"async\":true,\"nonce\":\"$undefined\"}]\n9:[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/17_k4ej_27hiq.js\",\"async\":true,\"nonce\":\"$undefined\"}]\na:[\"$\",\"$L11\",null,{\"children\":[\"$\",\"$12\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@13\"}]}]\n14:[]\nb:\"$W14\"\nc:[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L15\",null,{\"children\":\"$L16\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L17\",null,{\"children\":[\"$\",\"$12\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L18\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\ne:[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/06ax7julidfym.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\nf:[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0bis432bl_9ol.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n10:[\"$\",\"link\",\"2\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0w4j13h6i7zdh.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\\\":{\\\"@id\\\":\\\"https://youmind.com/#organization\\\"}}]}\"}}],[\"$\",\"main\",null,{\"className\":\"flex flex-col min-h-screen overflow-x-clip marketing-body\",\"children\":[[\"$\",\"$L19\",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\"}]}],\"$L1a\"]}]]\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_ser"])</script><script>self.__next_f.push([1,"if_e6807043-module__ZE2Y9q__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\"}],[[\"$\",\"$L1b\",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 \"}}],[\"$\",\"$L1b\",null,{\"src\":\"https://cdn.firstpromoter.com/fpr.js\",\"strategy\":\"lazyOnload\"}]],[[\"$\",\"$L1b\",null,{\"src\":\"https://www.googletagmanager.com/gtag/js?id=G-EP3DKQTSZ9\",\"strategy\":\"lazyOnload\"}],[\"$\",\"$L1b\",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 }\"}],[\"$\",\"$L1b\",null,{\"src\":\"https://cdn.gooo.ai/assets/iconfont_icons.js\",\"strategy\":\"lazyOnload\"}]]}],[\"$\",\"body\",null,{\"translate\":\"no\",\"suppressHydrationWarning\":true,\"className\":\"bg-white text-foreground\",\"children\":[[\"$\",\"$L1c\",null,{\"shadow\":false,\"color\":\"var(--primary)\",\"showSpinner\":false,\"height\":3,\"showForHashAnchor\":false}],[\"$\",\"$L1d\",null,{\"children\":[\"$\",\"$L1e\",null,{\"children\":[\"$\",\"$L1f\",null,{\"attribute\":\"class\",\"defaultTheme\":\"light\",\"forcedTheme\":\"light\",\"enableSystem\":true,\"disableTransitionOnChange\":true,\"children\":\"$L20\"}]}]}]]}]]}]\n22:T423,First, watch and understand this video: https://www.youtube.com/watch?v=sWkGomJ3TLI\n\nThis is the launch video for GPT Image 2. Use it as the main reference to extrapolate how a future image generation model might be announced and what could become absurdly powerful by AGI Image 10.\n\nCreate a hilarious roast-style launch deck for a fictional future model called AGI Image 10, announced by OpenAGI (not OpenAI) at the OpenAGI 2030 Spring Keynote. The presenter is Sam Ultraman, a fictional character who looks like Sam Altman, giving the most serious keynote of his life about an image model that may have become self-aware.\n\nMake it feel like an overproduced tech keynote that takes itself way too seriously: dramatic hero reveal, crisp futuristic typography, realistic faces, readable charts, premium visuals, and meme-worthy headlines. Open with: \"the image model that finally understands what your client meant by 'make it pop'.\" Include parody benchmarks, fake investor reactions, ridiculous pricing tiers, safety notes, and a 10 million-person waitlist.23:T411,First, watch and understand this video: https://www.youtube.com/watch?v=sWkGomJ3TLI\n\nThis is the launch video for"])</script><script>self.__next_f.push([1," GPT Image 2. Use it as the main reference to extrapolate how a future image generation model might be announced and what could become absurdly powerful by AGI Image 10.\n\nCreate a hilarious roast-style product launch presentation for a fictional future model called AGI Image 10, announced by OpenAGI (not OpenAI) at the OpenAGI 2030 Spring Keynote. The presenter is Sam Ultraman, a fictional character who looks like Sam Altman, giving the most serious keynote of his life about an image model that may have become self-aware.\n\nThe deck should feel like a serious AI keynote slowly turning into a meme. Make every slide funny, sharp, readable, and screenshot-worthy. Open with: \"the image model that finally understands what your client meant by 'make it pop'.\" Include parody benchmarks, a GPT Image 2 to AGI Image 10 timeline, fake investor reactions, ridiculous pricing tiers, safety notes, and a 10 million-person waitlist.20:[\"$\",\"$L21\",null,{\"formats\":\"$undefined\",\"locale\":\"en-US\",\"messages\":{\"LocaleLayout\":{\"title\":\"YouMind - AI Creation Agent\",\"description\":\"YouMind is an innovative creation agent that harnesses the power of generative AI to transform diverse materials into inspired creations.\"},\"Footer\":{\"aiTools\":\"AI Tools\",\"prompts\":\"Prompts\",\"nanoBanana2VsPro\":\"Nano Banana 2 VS Pro\",\"youtubeTranscript\":\"YouTube Transcript\",\"youtubeSummary\":\"YouTube Summary\",\"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\",\"christmasCardPrompts\":\"Christmas Card Prompts\",\"product\":\"Product\",\"useCases\":\"Use cases\",\"pricing\":\"Pricing\",\"blog\":\"Blog\",\"notebooklmAlternatives\":\"NotebookLM Alternatives\",\"updates\":\"Updates\",\"company\":\"Company\",\"contactUs\":\"Contact us\",\"privacy\":\"Privacy\",\"terms\":\"Terms\",\"grokImaginePrompts\":\"Grok Imagine Prompts\",\"abti\":\"ABTI Personality Test\",\"gptImage2Prompts\":\"GPT Image 2 Prompts\",\"gptImage2Slides\":\"GPT Image 2 Slides\",\"xViralArticlesTracking\":\"𝕏 Viral Articles Tracking\"},\"Auth\":{\"Footnote\":{\"desc\":\"By continuing, you agree to the \",\"terms\":\"Terms\",\"privacy\":\"Privacy\",\"cookie\":\"Cookie Notice\"},\"Login\":{\"title\":\"Join YouMind\",\"description\":\"\",\"action\":\"Continue\",\"actionLoading\":\"Sending email\",\"actionByOAuth\":\"Continue with {provider}\",\"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\":{\"title\":\"Thank you for joining our waitlist.\",\"description\":\"Great to know you, {name}. Just hang tight!\",\"action\":\"Join us on Discord\",\"logout\":\"Sign out\"}},\"Credits\":{\"videoViews\":\"Video views\",\"limitReached\":\"Limit reached\",\"unlockUnlimited\":\"Unlock unlimited access\",\"upgradeDescription\":\"Upgrade to get unlimited video views\"},\"Header\":{\"overview\":\"Overview\",\"useCases\":\"Use cases\",\"skills\":\"Skills\",\"prompts\":\"Prompts\",\"nanoBananaPro\":\"Nano Banana Pro\",\"gptImage1_5\":\"GPT Image 1.5\",\"seedream4_5\":\"Seedream 4.5\",\"gemini3\":\"Gemini 3\",\"christmasCard\":\"Christmas Card\",\"pricing\":\"Pricing\",\"blog\":\"Blog\",\"updates\":\"Updates\",\"signIn\":\"Sign in\",\"signOut\":\"Sign out\",\"openYouMind\":\"Open YouMind\",\"gptImage2\":\"GPT I"])</script><script>self.__next_f.push([1,"mage 2\",\"allPromptsBadge\":\"{promptCount} Free Image \u0026 Video Prompts\",\"allPromptsGroupImage\":\"Image\",\"allPromptsGroupVideo\":\"Video\",\"seedance2_0\":\"Seedance 2.0\",\"grokImagine\":\"Grok Imagine\"},\"Invite\":{\"metaTitle\":\"Invite friends to YouMind\",\"metaDescription\":\"Use your invite code to join YouMind and unlock 200 bonus credits.\"},\"Hero\":{\"title\":\"Learn smarter.\\nCreate bolder.\",\"description\":\"YouMind is where learning meets creation. In YouMind, you can learn, think, and create with AI agents. Everything flows together and grows with you.\",\"addToBrowser\":\"Add to {browserName}\",\"saveWhileBrowse\":\"Save anything while you browse\",\"downloadForIOS\":\"Download for iOS\",\"aiAssistantPocket\":\"AI assistant in your pocket\"},\"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.\",\"blackFridayTitle\":\"Black Friday — 50% OFF\",\"upgradeYourPlan\":\"Upgrade your plan\",\"chooseYourPlan\":\"Choose your plan\",\"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\":\"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.\"}}}},\"CampaignHeader\":{\"desktopText\":\"🎁 Black Friday Special: Get 50% OFF with code {code}. Ends Dec 12.\",\"mobileText\":\"🎁 Black Friday · 50% OFF · Ends Dec 12\",\"buttonText\":\"Get 50% OFF\",\"alt\":{\"blackFriday\":\"Black Friday\",\"blackFriday50Off\":\"Black Friday 50% OFF\"}},\"NewYearsCampaignBanner\":{\"desktopText\":\"Inspiration Hatched, 30% OFF\",\"mobileText\":\"30% OFF\",\"buttonText\":\"Join Now\"},\"Updates\":{\"metaTitle\":\"YouMind Updates\",\"metaDescription\":\"New updates and improvements to YouMind\",\"title\":\"Updates\",\"description\":\"Read about our latest product features, solutions, and updates.\",\"loading\":\"Loading...\",\"scrollForMore\":\"Scroll for more\",\"backToUpdates\":\"Updates\"},\"Blog\":{\"metaTitle\":\"YouMind Blog\",\"metaDescription\":\"Latest articles, news, and announcements from the team.\",\"title\":\"Blog\",\"description\":\"Read about our latest product features, solutions, and updates.\",\"backToBlog\":\"Blog\",\"publishedOn\":\"Published on\",\"in\":\"in\",\"showMorePosts\":\"Show more posts\",\"postNotFound\":\"Post Not Found\",\"postNotFoundDescription\":\"The requested article could not be found\",\"anonymous\":\"Anonymous\",\"relatedPosts\":\"Related Posts\",\"cta\":{\"title\":\"Have questions about this article?\",\"button\":\"Ask AI for Free\"},\"floating\":{\"placeholder\":\"What insights does this article offer?\",\"ask\":\"Ask\",\"summarize\":\"Summarize\"},\"prompt\":{\"summarize\":\"Help me summarize this article\",\"defaultAsk\":\"What is this article about?\"},\"contents\":\"Contents\",\"writtenBy\":\"Written by\",\"reviewedBy\":\"Reviewed by\"},\"UseCases\":{\"metaTitle\":\"YouMind Use Cases\",\"metaDescription\":\"Step-by-step, make YouMind a great assistant for your creation.\",\"title\":\"Use cases\",\"description\":\"See how users create with YouMind in real projects.\",\"backToUseCases\":\"Use cases\",\"published"])</script><script>self.__next_f.push([1,"On\":\"Published on\"},\"Common\":{\"all\":\"All\",\"startForFree\":\"Start for free\",\"featured\":\"Featured\",\"explore\":\"Explore\",\"readMore\":\"Read more\",\"viewAll\":\"View all\",\"getStarted\":\"Get started\",\"learnMore\":\"Learn more\",\"loading\":\"Loading...\",\"noAvailableCases\":\"No available cases\",\"exploreMoreUseCases\":\"Explore more use cases\"},\"PromptFilter\":{\"all\":\"ALL\",\"filterButton\":\"Filter\",\"dialogTitle\":\"Filter\",\"clearAll\":\"Clear All\",\"confirm\":\"Confirm\",\"noCategories\":\"No categories available\",\"sortButton\":\"Sort\",\"sortAsc\":\"Ascending\",\"sortDesc\":\"Descending\",\"sortTime\":\"Time\",\"sortLikes\":\"Likes\",\"sortComments\":\"Comments\",\"sortReposts\":\"Reposts\",\"sortViews\":\"Views\",\"sortBookmarks\":\"Bookmarks\",\"clearSort\":\"Clear Sort\"},\"Testimonials\":{\"title\":\"What people are saying\"},\"Posts\":{\"title\":\"Learn more about YouMind\"},\"UseCasesComponent\":{\"title\":\"Use cases\",\"description\":\"See how users create with YouMind in real projects.\"},\"NewFeatures\":{\"mainTitle\":\"The #1 personalized AI learning\\nand creation agent\",\"card1Title\":\"Save anything from anywhere\",\"card1Description\":\"Inspiration is everywhere. Beyond uploading files, YouMind lets you capture ideas and save materials through the browser extension or iOS app.\\n\\nSupports PDFs, webpages, YouTube videos, podcasts, audio recordings, Office documents, and more.\",\"card2Title\":\"Your insights, not just from AI\",\"card2Description\":\"Most AI tools generate insights that feel the same for everyone. YouMind is different. It learns from your highlights, notes, and annotations while you read, watch, or listen.\\n\\nBy learning how you explore and think, YouMind creates insights that truly reflect who you are.\",\"card3Title\":\"Generation is just the beginning\",\"card3Description\":\"Most AI tools stop at generation. In YouMind, every AI report opens as a fully editable document. You can review, rewrite, and refine your work freely, turning quick outputs into lasting creations.\",\"card4Title\":\"Everything connected in one space\",\"card4Description\":\"Everything in YouMind works together seamlessly. From saving materials and gaining insights to lasting creation, you can learn, think, and create in one connected space without ever switching tools.\"},\"ICP\":{\"title\":\"How people are \\nusing YouMind\",\"creator\":{\"title\":\"For creators\",\"description\":\"Turning scattered ideas and materials into meaningful stories can feel overwhelming. YouMind helps you uncover hidden themes, connect ideas, and shape your insights into thoughtful, well-supported work you're proud to share. At every stage of creation, YouMind supports you.\",\"caption\":\"Create with confidence.\"},\"researcher\":{\"title\":\"For researchers\",\"description\":\"Distilling key insights from piles of sources takes time and focus. YouMind brings everything together, synthesizing your findings into clear, persuasive reports and briefings. It also helps you easily adapt your work for wider audiences, from boardrooms to social media.\",\"caption\":\"Present with influence.\"},\"student\":{\"title\":\"For students\",\"description\":\"Facing endless readings and dense literature can feel exhausting. YouMind turns complex materials into clear understanding, transforming heavy texts into engaging examples, notes, and visuals. From research to writing, everything stays connected in one focused workspace.\",\"caption\":\"Learn with ease.\"}},\"Contact\":{\"title\":\"Join our community\",\"discord\":{\"title\":\"Discord\",\"description\":\"Find tips and like-minded people.\"},\"x\":{\"title\":\"@YouMind_AI\",\"description\":\"Follow the updates and creative trends.\"},\"email\":{\"title\":\"E-mail\",\"description\":\"Share your feedback with us directly.\"}},\"PrivacyFirst\":{\"title\":\"Privacy first, always.\",\"description\":\"YouMind does not use your personal data, including your source uploads, queries, and the responses from the model for training.\"},\"Toast\":{\"savingToYouMind\":\"Saving to YouMind...\"},\"VideoTools\":{\"openInYouMind\":\"Open in YouMind\",\"saveToYouMind\":\"Save to YouMind\",\"copied\":\"Copied!\",\"copyContent\":\"Copy content\",\"Examples\":{\"title\":\"Examples\"},\"SearchBlock\":{\"errorInvalidUrl\":\"Please enter a valid YouTube URL\",\"errorShortsNotSupported"])</script><script>self.__next_f.push([1,"\":\"YouTube Shorts are not supported. Please use a regular YouTube video URL.\",\"upgradeMessageDefault\":\"Usage limit reached\",\"upgradeMessageRecordFailed\":\"Failed to record video access. Please try again or upgrade your account\"},\"Extension\":{\"description\":\"Tired of copying links ? Get a browser extension instead !\",\"buttonText\":\"Add to browser for instant video transcripts\"},\"UpgradeModal\":{\"title\":\"Sign in to YouMind to unlock all AI features.\",\"signInButton\":\"Sign in\",\"termsNotice\":\"By continuing, you agree to the {terms}, {privacy}.\",\"terms\":\"Terms\",\"privacy\":\"Privacy\"},\"SummaryView\":{\"generating\":\"Generating summary...\",\"noSummary\":\"No summary available\"},\"WatchPage\":{\"tabs\":{\"summary\":\"Summary\",\"transcript\":\"Transcript\",\"aiChat\":\"AI Chat\"},\"transcriptView\":{\"lineView\":\"Line view\",\"chapterView\":\"Chapter view\"},\"back\":\"Back\",\"openInYouMind\":\"Open in YouMind\",\"extensionCard\":{\"title\":\"Long videos, short on time?\",\"subtitle\":\"Get the gist instantly.\",\"feature1\":\"Get the gist in seconds\",\"feature2\":\"Transcripts in 60+ languages\",\"feature3\":\"Navigate with timestamps\",\"feature4\":\"Turn long videos into 3-min blogs\",\"cta\":\"Add to Chrome now\"}},\"AIChatView\":{\"greeting\":\"Hi, I'm your AI assistant.\",\"description\":\"Your personal AI assistant is here—ask me anything about this file and unlock the magic of YouMind AI right now!\",\"suggestion1\":\"Extract 5 key points.\",\"suggestion2\":\"What insights does this content offer?\",\"suggestion3\":\"List 5 keywords and explain their meanings.\",\"ctaButton\":\"AI Chat in YouMind\"}},\"DownloadExtension\":{\"title\":\"Install the browser extension\",\"description\":\"To summarize and save anything with YouMind, install our browser extension.\",\"startNow\":\"Start now\",\"getExtension\":\"Get extension\"},\"Legal\":{\"Privacy\":{\"metaTitle\":\"Privacy Policy - YouMind\"},\"Terms\":{\"metaTitle\":\"Terms of Service - YouMind\"}},\"VideoToolsConfig\":{\"searchPlaceholder\":\"Paste YouTube video link\",\"buttonTextTranscript\":\"Generate\",\"buttonTextSummary\":\"Summarize\",\"userGuide\":{\"titleTranscript\":\"How to Use the YouMind YouTube Transcript Generator\",\"titleSummary\":\"How to Use the YouMind YouTube Summarizer\",\"step1\":{\"title\":\"Paste Your YouTube Video Link\",\"descriptionTranscript\":\"Just copy the URL of the YouTube video you want to transcribe and paste it into YouMind.\",\"descriptionSummary\":\"Just copy the URL of the YouTube video you want to summarize and paste it into YouMind to begin.\"},\"step2\":{\"titleTranscript\":\"Click \\\"Generate\\\" to Get the Transcript\",\"titleSummary\":\"Generate Your AI Summary\",\"descriptionTranscript\":\"Click \\\"Generate\\\" to extract the transcript from the YouTube video.\",\"descriptionSummary\":\"Click \\\"Generate\\\", and our AI will process the video's content to create a concise and accurate summary for you.\"},\"step3\":{\"titleTranscript\":\"Translate, download or chat with AI\",\"titleSummary\":\"Go Deeper, Translate, or Download\",\"descriptionTranscript\":\"You can download the transcript, translate it into another language, or use our AI to get a quick summary or ask questions.\",\"descriptionSummary\":\"Use your AI-generated summary instantly. For more details, you can also access the full transcript, translate either text, or chat with our AI to ask specific questions about the video content.\"}},\"featDescBoxes\":{\"titleTranscript\":\"Why choose YouMind YouTube Transcript Generator\",\"titleSummary\":\"Why choose YouMind YouTube Summarizer\"},\"useCases\":{\"titleTranscript\":\"YouTube Transcript Use Cases\",\"titleSummary\":\"YouTube Summary Use Cases\"},\"testimonials\":{\"title\":\"What Our Users Say\"},\"faq\":{\"title\":\"Frequently asked questions\"}},\"NanoBananaProPrompts\":{\"page\":{\"title\":\"The world's largest free Nano Banana Pro prompt library, continuously updated - YouMind\",\"description\":\"Discover a curated collection of high-quality prompts for Nano Banana Pro AI image generation. Generate stunning images directly in YouMind.\",\"headerTitle\":\"Nano Banana Pro\",\"headerPrompts\":\"Prompts\",\"headerDescription\":\"A curated collection of top-tier prompts for {brand}.\",\"headerTagline\":\"Steal them like an artist.\",\"freshPrompts\":\"Prompts\",\"total\":\"TOTAL\",\"updating"])</script><script>self.__next_f.push([1,"\":\"UPDATING\",\"dailyUpdateText\":\"Updated daily\",\"rssSubscribeText\":\"Prompts updated daily, subscribe to RSS now\",\"subscribe\":\"Subscribe\",\"christmasBanner\":\"Nano Banana Pro Prompts for Christmas Card\",\"downloadTitle\":\"Download Prompts\",\"campaign\":{\"modelArena\":{\"desktop\":\"Nano Banana 2 VS Pro, Who Wins? Top 100 Prompt Comparison\",\"mobile\":\"Nano Banana 2 VS Pro, Who Wins?\"},\"seedance20\":{\"desktop\":\"Curated Seedance 2.0 Video Prompts — Updated Daily\",\"mobile\":\"Hundreds of Seedance 2.0 Prompts\"}},\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"Nano Banana Pro Prompts\"},\"searchBar\":{\"placeholder\":\"Search prompts/titles/descriptions/authors...\",\"filterAll\":\"all\",\"filterVideo\":\"video\",\"filterImage\":\"image\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Call the find-prompt tool. Recommend some Nano Banana Pro image generation prompts for me, and first ask about my specific needs.\",\"modelSlug\":\"nano-banana-pro\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\"},\"categories\":{\"all\":\"ALL\"},\"promptCard\":{\"tabPrompt\":\"Prompt\",\"tabOriginal\":\"Original\",\"by\":\"BY\",\"promptHeader\":\"Prompt\",\"viewFullPrompt\":\"View full prompt\",\"translateButton\":\"Translate\",\"beforeTranslation\":\"Original\",\"originalButton\":\"EN\",\"chineseButton\":\"中文\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copy\":\"COPY\",\"copied\":\"COPIED\",\"share\":\"Share\",\"linkCopied\":\"Link copied\",\"tryItNow\":\"Try it now\",\"installOnYouMind\":\"Install on YouMind\",\"aiShortcut\":\"AI Shortcut\",\"install\":\"Install\",\"aiSkill\":\"AI Skill\",\"tryInYouMind\":\"Try in YouMind\",\"tryIt\":\"Try It\",\"featured\":\"Featured\",\"save\":\"Save\",\"savePromptTitle\":\"Save Prompt\",\"savePromptSubtitle\":\"Access Anytime, Anywhere\",\"savingPrompt\":\"Saving...\",\"viewOtherModelResults\":\"View results from other models\",\"referenceImages\":\"Reference Images\"},\"faq\":{\"title\":\"Common Questions\",\"q0\":\"What is Nano Banana Pro?\",\"a0\":\"Nano Banana Pro is Google's latest multimodal AI model featuring multimodal understanding (text, images, and video), high-quality generation from photorealistic to artistic styles, fast iteration with quick edits and variations, diverse styles from pixel art to oil paintings, precise control over composition and lighting, and complex multi-object, multi-character scene rendering.\",\"q1\":\"Where do these prompts come from?\",\"a1\":\"They are curated mainly from public Twitter/𝕏 sources. If you are the author and wish to opt out, please contact us for immediate removal.\",\"q2\":\"How do I use these prompts?\",\"a2\":\"Simply copy the prompt and use it in YouMind with the 'Nano Banana Pro' image generation model according to the description. We are working on a tighter integration for one-click usage in the future.\",\"q3\":\"What is AI Shortcut?\",\"a3\":\"It helps you consolidate your content creation and learning best practices into YouMind Shortcuts. This enables one-click generation based on your materials—like turning a YouTube video into a blog post or extracting quotes from an article.\",\"q4\":\"Are there more use cases?\",\"a4\":\"Check out our blog post \u003clink\u003e{title}\u003c/link\u003e for more curated Nano Banana Pro examples.\"},\"blogCard\":{\"tab\":\"BLOG\",\"cta\":\"EXPLORE MORE CASES\"},\"imageCarousel\":{\"preview\":\"PREVIEW\",\"previewImage\":\"Preview Image\",\"goToSlide\":\"Go to slide {index}\"},\"emptyState\":{\"noPromptsFound\":\"No prompts found\",\"trySearchingElse\":\"TRY SEARCHING FOR SOMETHING ELSE\",\"tryTheseShortcuts\":\"Try These AI Shortcuts Instead\",\"discoverFeaturedTools\":\"Discover featured tools that can help you generate amazing content.\",\"viewAllShortcuts\":\"View All Shortcuts\",\"tryTheseSkills\":\"Try These AI Skills Instead\",\"viewAllSkills\":\"View All Skills\"},\"footerCTA\":{\"readyToCreate\":\"Ready to create with\",\"nanoBanana\":\"Nano Banana?\",\"experiencePower\":\"Experience Nano Banana Pro's Powerful Capabilities\",\"freeLimitedTime\":\"LET YOUR IMAGI"])</script><script>self.__next_f.push([1,"NATION SOAR\",\"startGenerating\":\"Start Generating\"},\"tweetModal\":{\"loadingTweet\":\"LOADING TWEET...\"},\"loadMore\":{\"loading\":\"Loading more...\",\"viewAll\":\"View All Prompts\"},\"generator\":{\"placeholder\":\"Describe the image you want to generate... (e.g. A cyberpunk city at night)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference image\",\"uploadingImages\":\"Uploading images...\",\"uploadFailed\":\"Image upload failed, please try again\",\"pleaseUploadReferenceImages\":\"This prompt requires reference images, please add images first\",\"aspectRatio\":{\"auto\":\"Auto\",\"square\":\"1:1\",\"landscape\":\"16:9\",\"portrait\":\"9:16\"},\"settings\":\"Settings\",\"aspectRatioLabel\":\"Aspect Ratio\"},\"common\":{\"openSourceLink\":\"Open Source Link\",\"editInCMS\":\"Edit in CMS\"},\"loginPromotionDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Experience Nano Banana Pro's Powerful Capabilities\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for Gemini 3.0 Pro, Nano Banana Pro, Claude Opus 4.6 and more models.\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"},\"downloadDialog\":{\"title\":\"Free Download {total} Prompts\",\"subtitle\":\"High-quality AI prompts collection to power your creativity\",\"useCasesTitle\":\"You can use them to:\",\"useCase1\":\"Search for prompts with AI\",\"useCase2\":\"Create content\",\"useCase3\":\"Fuel your Agent Skills\",\"useCase4\":\"And more to explore...\",\"shareRequest\":\"We spent hundreds of hours building this site. If you like it, please share your experience on social media. We'd really appreciate it!\",\"shareRequestWithHeart\":\"We spent hundreds of hours building this site. If you find it useful, please share it with your friends! ❤️\",\"shareRequestNote\":\"You can still download even if you decline.\",\"beforeYouGo\":\"Before you proceed\",\"declineButton\":\"No thanks\",\"acceptButton\":\"Sure!\",\"shareTitle\":\"Share with Friends\",\"shareSubtitle\":\"Help more people discover these amazing prompts\",\"shareTextLabel\":\"Share text\",\"shareTextPlaceholder\":\"Enter your share text here...\",\"generateShareText\":\"AI Generate\",\"generatingShareText\":\"Generating...\",\"remaining\":\"left\",\"rateLimitExceeded\":\"Daily limit reached. Try again tomorrow!\",\"generationFailed\":\"Generation failed. Please try again.\",\"copyToClipboard\":\"Copy to clipboard\",\"copied\":\"Copied!\",\"shareOnTwitter\":\"Share on X\",\"shareOnLinkedIn\":\"Share on LinkedIn\",\"shareOnThreads\":\"Share on Threads\",\"shareOnWhatsApp\":\"Share on WhatsApp\",\"defaultShareText\":\"This site has {total} curated Nano Banana Pro prompts translated into {languageNum} languages, categorized by use cases like infographics and posters. Best of all, you can download all prompts with one click! Try it out!\",\"loginRequiredTitle\":\"Login Required\",\"loginRequired\":\"To prevent abuse, please login to download.\",\"downloadButton\":\"Download CSV\",\"download\":\"Download\",\"downloading\":\"Downloading...\",\"downloadError\":\"Download failed, please try again later\",\"loginButton\":\"Login to Download\",\"close\":\"Close\",\"copyForInstagram\":\"Copy for Instagram\"}},\"Seedance20VideoPrompts\":{\"page\":{\"title\":\"Seedance 2.0 Prompts - High-Signal AI Video Prompt Library - YouMind\",\"description\":\"Hundreds of curated Seedance 2.0 video prompts, each with an online playable result. Covering text-to-video, image-to-video, character animation, and more, with AI recommendations and multilingual search. Updated daily. Free to use.\",\"badge\":\"Video Prompt Lab\",\"headerTitle\":\"Seedance 2.0 Prompts\",\"headerDescription\":\"High-signal prompt cases for Seedance 2.0. Scroll the wall, watch the clip, then open the prompt details only when you need them.\",\"total\":\"Total\",\"autoPlay\""])</script><script>self.__next_f.push([1,":\"Auto-play in viewport\",\"headerTitleLine1\":\"Seedance 2.0\",\"headerTitleLine2\":\"Prompts\",\"copyright\":\"YouMind. All Rights Reserved.\",\"viewAll\":\"View All\",\"dailyUpdating\":\"Updated daily\",\"downloadShareText\":\"This site has {total} curated Seedance 2.0 prompts translated into {languageNum} languages with AI-powered search. Best of all, you can download all prompts with one click. Try it now!\",\"crossPromoBadge\":\"Explore 20,000+ Nano Banana Pro Prompts\",\"crossPromoBadgeMobile\":\"20,000+ Nano Banana Pro Prompts\",\"benefit2Suffix\":\"\",\"freshPrompts\":\"Prompts\",\"downloadTitle\":\"Download Prompts\",\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"Seedance 2.0 Prompts\"},\"search\":{\"placeholder\":\"Search prompts, scenes, styles, or creators...\",\"clear\":\"Clear search\",\"submit\":\"Search\",\"placeholderShort\":\"Search prompts\"},\"card\":{\"by\":\"By\",\"unknownAuthor\":\"Unknown\",\"viewPrompt\":\"View Prompt\",\"hidePrompt\":\"Hide Prompt\",\"translateButton\":\"Translation\",\"beforeTranslation\":\"Original\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copyPrompt\":\"Copy Prompt\",\"copied\":\"Copied\",\"fullScreen\":\"Full Screen\",\"viewDetails\":\"View Details\",\"video\":\"Video\",\"author\":\"Author\",\"source\":\"Source\",\"prompt\":\"Prompt\",\"promptHeader\":\"Prompt\",\"viewFullPrompt\":\"View full prompt\",\"referenceImages\":\"Reference Images\",\"share\":\"Share\",\"linkCopied\":\"Link copied!\",\"featured\":\"Featured\",\"tryItNow\":\"Try it now\"},\"empty\":{\"title\":\"No video prompts found\",\"description\":\"Try a different keyword and explore more Seedance 2.0 clips.\",\"aiSearch\":\"AI Search\"},\"loadMore\":{\"loading\":\"Loading more videos...\"},\"faq\":{\"title\":\"Common Questions\",\"q0\":\"What is Seedance 2.0?\",\"a0\":\"Seedance 2.0 is ByteDance's latest AI video generation model that delivers cinema-grade quality with up to 8-second clips at native 1080p resolution. It features temporal coherence to eliminate flicker, complex physics simulation, multi-subject interaction, and precise text rendering within videos.\",\"q1\":\"What makes Seedance 2.0 different from other video AI models?\",\"a1\":\"Seedance 2.0 introduces a hybrid DiT-UNet architecture with a flow-matching scheduler, enabling faster inference with fewer denoising steps. It supports multi-subject consistency, accurate physics like fluid dynamics and cloth draping, and native text overlay—capabilities that most competing models still struggle with.\",\"q2\":\"How do I use these prompts?\",\"a2\":\"Browse the prompt wall, watch the auto-playing clips, and tap the info icon on any card to see the full prompt. Copy it and paste it into YouMind with the Seedance 2.0 model selected to generate your own video.\",\"q3\":\"What are the best practices for writing Seedance 2.0 prompts?\",\"a3\":\"Start with a clear scene description, specify camera movement (e.g. 'slow dolly in'), define lighting and mood, then add subject details. Keep prompts under 200 words for best results. Mentioning physics interactions like 'wind blowing through hair' or 'water splashing' leverages the model's simulation strengths.\"},\"aiAssistant\":{\"title\":\"AI Assistant\",\"placeholder\":\"What kind of video prompts are you looking for? Tell me!\",\"submit\":\"Send\"},\"loginPromotionDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Experience Seedance 2.0's Cinema-Grade Video Generation\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for the latest SOTA models.\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"},\"generator\":{\"placeholder\":\"Describe the video you want to generate... (e.g. A cat walking on the beach at sunset)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference imag"])</script><script>self.__next_f.push([1,"e\"},\"searchBar\":{\"placeholder\":\"Search prompts/titles/descriptions/authors...\",\"filterAll\":\"all\",\"filterVideo\":\"video\",\"filterImage\":\"image\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Recommend some Seedance 2.0 video generation prompts for me, and first ask about my specific needs.\",\"modelSlug\":\"seedance-2-0\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\"},\"downloadDialog\":{\"title\":\"Free Download {total} Prompts\",\"subtitle\":\"High-quality AI video prompts collection to power your creativity\",\"useCasesTitle\":\"You can use them to:\",\"useCase1\":\"Search for prompts with AI\",\"useCase2\":\"Create content\",\"useCase3\":\"Fuel your Agent Skills\",\"useCase4\":\"And more to explore...\",\"shareRequest\":\"We spent hundreds of hours building this site. If you like it, please share your experience on social media. We'd really appreciate it!\",\"shareRequestWithHeart\":\"We spent hundreds of hours building this site. If you find it useful, please share it with your friends! ❤️\",\"shareRequestNote\":\"You can still download even if you decline.\",\"beforeYouGo\":\"Before you proceed\",\"declineButton\":\"No thanks\",\"acceptButton\":\"Sure!\",\"shareTitle\":\"Share with Friends\",\"shareSubtitle\":\"Help more people discover these amazing prompts\",\"shareTextLabel\":\"Share text\",\"shareTextPlaceholder\":\"Enter your share text here...\",\"generateShareText\":\"AI Generate\",\"generatingShareText\":\"Generating...\",\"remaining\":\"left\",\"rateLimitExceeded\":\"Daily limit reached. Try again tomorrow!\",\"generationFailed\":\"Generation failed. Please try again.\",\"copyToClipboard\":\"Copy to clipboard\",\"copied\":\"Copied!\",\"shareOnTwitter\":\"Share on X\",\"shareOnLinkedIn\":\"Share on LinkedIn\",\"shareOnThreads\":\"Share on Threads\",\"shareOnWhatsApp\":\"Share on WhatsApp\",\"defaultShareText\":\"This site has {total} curated Seedance 2.0 video prompts translated into {languageNum} languages. Best of all, you can download all prompts with one click! Try it out!\",\"loginRequiredTitle\":\"Login Required\",\"loginRequired\":\"To prevent abuse, please login to download.\",\"downloadButton\":\"Download CSV\",\"download\":\"Download\",\"downloading\":\"Downloading...\",\"downloadError\":\"Download failed, please try again later\",\"loginButton\":\"Login to Download\",\"close\":\"Close\"},\"settings\":{\"settings\":\"Settings\",\"mode\":\"Mode\",\"aspectRatio\":\"Aspect Ratio\",\"quality\":\"Quality\",\"sound\":\"Sound\",\"low\":\"Low\",\"medium\":\"Medium\",\"high\":\"High\",\"keyframe\":\"Keyframe\",\"reference\":\"Reference\",\"on\":\"On\",\"off\":\"Off\"}},\"GrokImagineVideoPrompts\":{\"page\":{\"title\":\"Grok Imagine Prompts - High-Signal AI Video Prompt Library - YouMind\",\"description\":\"Hundreds of curated Grok Imagine video prompts, each with an online playable result. Powered by xAI's Aurora model, featuring reference-to-video with up to 7 images. #1 in Artificial Analysis Video Arena. Updated daily. Free to use.\",\"badge\":\"Video Prompt Lab\",\"headerTitle\":\"Grok Imagine Prompts\",\"headerDescription\":\"High-signal prompt cases for Grok Imagine. Scroll the wall, watch the clip, then open the prompt details only when you need them.\",\"total\":\"Total\",\"autoPlay\":\"Auto-play in viewport\",\"headerTitleLine1\":\"Grok Imagine\",\"headerTitleLine2\":\"Prompts\",\"copyright\":\"YouMind. All Rights Reserved.\",\"viewAll\":\"View All\",\"dailyUpdating\":\"Updated daily\",\"downloadShareText\":\"This site has {total} curated Grok Imagine prompts translated into {languageNum} languages with AI-powered search. Best of all, you can download all prompts with one click. Try it now!\",\"crossPromoBadge\":\"Explore Seedance 2.0 Prompts\",\"crossPromoBadgeMobile\":\"Seedance 2.0 Prompts\",\"benefit2Suffix\":\"\",\"designArenaBadge\":\"Won 3 Gold Medals in Design Arena\",\"freshPrompts\":\"Prompts\",\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"Grok Imagine Prompts\"},\"search\":{\"placeholder\":\"Search prompts, scenes, styles, or creators...\",\"clear\":\"Clear search\",\"submit\":\"Sea"])</script><script>self.__next_f.push([1,"rch\",\"placeholderShort\":\"Search prompts\"},\"card\":{\"by\":\"By\",\"unknownAuthor\":\"Unknown\",\"viewPrompt\":\"View Prompt\",\"hidePrompt\":\"Hide Prompt\",\"translateButton\":\"Translation\",\"beforeTranslation\":\"Original\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copyPrompt\":\"Copy Prompt\",\"copied\":\"Copied\",\"fullScreen\":\"Full Screen\",\"viewDetails\":\"View Details\",\"video\":\"Video\",\"author\":\"Author\",\"source\":\"Source\",\"prompt\":\"Prompt\",\"promptHeader\":\"Prompt\",\"viewFullPrompt\":\"View full prompt\",\"referenceImages\":\"Reference Images\",\"share\":\"Share\",\"linkCopied\":\"Link copied!\",\"featured\":\"Featured\",\"tryItNow\":\"Try it now\"},\"empty\":{\"title\":\"No video prompts found\",\"description\":\"Try a different keyword and explore more Grok Imagine clips.\",\"aiSearch\":\"AI Search\"},\"loadMore\":{\"loading\":\"Loading more videos...\"},\"faq\":{\"title\":\"Common Questions\",\"q0\":\"What is Grok Imagine?\",\"a0\":\"Grok Imagine is xAI's AI video generation model powered by the Aurora architecture. It supports text-to-video and reference-to-video with up to 7 reference images, delivering cinema-grade quality. It is ranked #1 in the Artificial Analysis Video Arena.\",\"q1\":\"What makes Grok Imagine different from other video AI models?\",\"a1\":\"Grok Imagine excels at reference-to-video generation, allowing you to provide up to 7 images as visual references. Its Aurora model architecture delivers exceptional temporal coherence, dynamic camera movements, and accurate subject consistency across frames.\",\"q2\":\"How do I use these prompts?\",\"a2\":\"Browse the prompt wall, watch the auto-playing clips, and tap the info icon on any card to see the full prompt. Copy it and paste it into YouMind with the Grok Imagine model selected to generate your own video.\",\"q3\":\"What are the best practices for writing Grok Imagine prompts?\",\"a3\":\"Start with a clear scene description, specify camera movement (e.g. 'slow dolly in'), define lighting and mood, then add subject details. For reference-to-video, provide high-quality reference images that clearly show your desired subjects or style. The model excels at maintaining consistency with reference materials.\"},\"aiAssistant\":{\"title\":\"AI Assistant\",\"placeholder\":\"What kind of video prompts are you looking for? Tell me!\",\"submit\":\"Send\"},\"loginPromotionDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Experience Grok Imagine's Cinema-Grade Video Generation\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for the latest SOTA models.\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"},\"generator\":{\"placeholder\":\"Describe the video you want to generate... (e.g. A cat walking on the beach at sunset)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference image\"},\"searchBar\":{\"placeholder\":\"Search prompts/titles/descriptions/authors...\",\"filterAll\":\"all\",\"filterVideo\":\"video\",\"filterImage\":\"image\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Recommend some Grok Imagine video generation prompts for me, and first ask about my specific needs.\",\"modelSlug\":\"grok-imagine\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\"},\"downloadDialog\":{\"title\":\"Free Download {total} Prompts\",\"subtitle\":\"High-quality AI video prompts collection to power your creativity\",\"useCasesTitle\":\"You can use them to:\",\"useCase1\":\"Search for prompts wit"])</script><script>self.__next_f.push([1,"h AI\",\"useCase2\":\"Create content\",\"useCase3\":\"Fuel your Agent Skills\",\"useCase4\":\"And more to explore...\",\"shareRequest\":\"We spent hundreds of hours building this site. If you like it, please share your experience on social media. We'd really appreciate it!\",\"shareRequestWithHeart\":\"We spent hundreds of hours building this site. If you find it useful, please share it with your friends! ❤️\",\"shareRequestNote\":\"You can still download even if you decline.\",\"beforeYouGo\":\"Before you proceed\",\"declineButton\":\"No thanks\",\"acceptButton\":\"Sure!\",\"shareTitle\":\"Share with Friends\",\"shareSubtitle\":\"Help more people discover these amazing prompts\",\"shareTextLabel\":\"Share text\",\"shareTextPlaceholder\":\"Enter your share text here...\",\"generateShareText\":\"AI Generate\",\"generatingShareText\":\"Generating...\",\"remaining\":\"left\",\"rateLimitExceeded\":\"Daily limit reached. Try again tomorrow!\",\"generationFailed\":\"Generation failed. Please try again.\",\"copyToClipboard\":\"Copy to clipboard\",\"copied\":\"Copied!\",\"shareOnTwitter\":\"Share on X\",\"shareOnLinkedIn\":\"Share on LinkedIn\",\"shareOnThreads\":\"Share on Threads\",\"shareOnWhatsApp\":\"Share on WhatsApp\",\"defaultShareText\":\"This site has {total} curated Grok Imagine video prompts translated into {languageNum} languages. Best of all, you can download all prompts with one click! Try it out!\",\"loginRequiredTitle\":\"Login Required\",\"loginRequired\":\"To prevent abuse, please login to download.\",\"downloadButton\":\"Download CSV\",\"download\":\"Download\",\"downloading\":\"Downloading...\",\"downloadError\":\"Download failed, please try again later\",\"loginButton\":\"Login to Download\",\"close\":\"Close\"},\"settings\":{\"settings\":\"Settings\",\"aspectRatio\":\"Aspect Ratio\",\"quality\":\"Quality\",\"low\":\"Low\",\"medium\":\"Medium\",\"high\":\"High\"}},\"GPTImage15Prompts\":{\"page\":{\"title\":\"GPT Image 1.5 Prompts - Precise Editing \u0026 High-Quality AI Image Generation - YouMind\",\"description\":\"Discover curated prompts for GPT Image 1.5 - OpenAI's flagship image model with precise editing, 4x faster generation, and superior quality.\",\"headerTitle\":\"GPT Image 1.5\",\"headerPrompts\":\"Prompts\",\"headerDescription\":\"A curated collection of top-tier prompts for {brand}.\",\"headerTagline\":\"Precise edits that preserve what matters.\",\"freshPrompts\":\"Prompts\",\"total\":\"TOTAL\",\"updating\":\"UPDATING\",\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"GPT Image 1.5 Prompts\"},\"searchBar\":{\"placeholder\":\"Search prompts/titles/descriptions/authors...\",\"filterAll\":\"all\",\"filterVideo\":\"video\",\"filterImage\":\"image\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Call the find-prompt tool. Recommend some GPT Image 1.5 image generation prompts for me, and first ask about my specific needs.\",\"modelSlug\":\"gpt-image-1.5\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\"},\"categories\":{\"all\":\"ALL\"},\"promptCard\":{\"tabPrompt\":\"Prompt\",\"tabOriginal\":\"Original\",\"by\":\"BY\",\"promptHeader\":\"Prompt\",\"viewFullPrompt\":\"View full prompt\",\"translateButton\":\"Translate\",\"beforeTranslation\":\"Original\",\"originalButton\":\"EN\",\"chineseButton\":\"中文\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copy\":\"COPY\",\"copied\":\"COPIED\",\"share\":\"Share\",\"linkCopied\":\"Link copied\",\"tryItNow\":\"Try it now\",\"installOnYouMind\":\"Install on YouMind\",\"aiShortcut\":\"AI Shortcut\",\"install\":\"Install\",\"aiSkill\":\"AI Skill\",\"tryInYouMind\":\"Try in YouMind\",\"tryIt\":\"Try It\",\"featured\":\"Featured\",\"save\":\"Save\",\"savePromptTitle\":\"Save Prompt\",\"savePromptSubtitle\":\"Access Anytime, Anywhere\",\"savingPrompt\":\"Saving...\",\"referenceImages\":\"Reference Images\"},\"faq\":{\"title\":\"Common Questions\",\"q0\":\"What is GPT Image 1.5?\",\"a0\":\"GPT Image 1.5 is OpenAI's new flagship image generation model. It delivers precise edits while keeping details intact, generates images up to 4x faster, and excels at creative transformations, instruction fol"])</script><script>self.__next_f.push([1,"lowing, and preserving important details across edits.\",\"q1\":\"Where do these prompts come from?\",\"a1\":\"They are curated mainly from public Twitter/𝕏 sources. If you are the author and wish to opt out, please contact us for immediate removal.\",\"q2\":\"How do I use these prompts?\",\"a2\":\"Simply copy the prompt and use it in YouMind with the 'GPT Image 1.5' image generation model. The model excels at editing, creative transformations, and instruction following.\",\"q3\":\"What is AI Shortcut?\",\"a3\":\"It helps you consolidate your content creation and learning best practices into YouMind Shortcuts. This enables one-click generation based on your materials—like turning a YouTube video into a blog post or extracting quotes from an article.\",\"q4\":\"Are there more use cases?\",\"a4\":\"Check out our blog post \u003clink\u003e{title}\u003c/link\u003e for more curated GPT Image 1.5 examples.\"},\"blogCard\":{\"tab\":\"BLOG\",\"cta\":\"EXPLORE MORE CASES\"},\"imageCarousel\":{\"preview\":\"PREVIEW\",\"previewImage\":\"Preview Image\",\"goToSlide\":\"Go to slide {index}\"},\"emptyState\":{\"noPromptsFound\":\"No prompts found\",\"trySearchingElse\":\"TRY SEARCHING FOR SOMETHING ELSE\",\"tryTheseShortcuts\":\"Try These AI Shortcuts Instead\",\"discoverFeaturedTools\":\"Discover featured tools that can help you generate amazing content.\",\"viewAllShortcuts\":\"View All Shortcuts\",\"tryTheseSkills\":\"Try These AI Skills Instead\",\"viewAllSkills\":\"View All Skills\"},\"footerCTA\":{\"readyToCreate\":\"Ready to create with\",\"nanoBanana\":\"GPT Image 1.5?\",\"experiencePower\":\"Experience GPT Image 1.5's Precise Editing \u0026 Fast Generation\",\"freeLimitedTime\":\"LET YOUR IMAGINATION SOAR\",\"startGenerating\":\"Start Generating\"},\"tweetModal\":{\"loadingTweet\":\"LOADING TWEET...\"},\"loadMore\":{\"loading\":\"Loading more...\",\"viewAll\":\"View All Prompts\"},\"generator\":{\"placeholder\":\"Describe the image you want to generate... (e.g. A cyberpunk city at night)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference image\",\"uploadingImages\":\"Uploading images...\",\"uploadFailed\":\"Image upload failed, please try again\",\"pleaseUploadReferenceImages\":\"This prompt requires reference images, please add images first\",\"aspectRatio\":{\"auto\":\"Auto\",\"square\":\"1:1\",\"landscape\":\"16:9\",\"portrait\":\"9:16\"},\"settings\":\"Settings\",\"aspectRatioLabel\":\"Aspect Ratio\"},\"common\":{\"openSourceLink\":\"Open Source Link\",\"editInCMS\":\"Edit in CMS\"},\"loginPromotionDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Experience GPT Image 1.5's Powerful Capabilities\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for GPT Image 1.5, Gemini 3.0 Pro, Claude Sonnet 4.5, and more models\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"}},\"Gemini3Prompts\":{\"page\":{\"title\":\"Gemini 3 Pro Prompts - Multimodal AI Prompts \u0026 Content Generation - YouMind\",\"description\":\"Explore curated Gemini 3 Pro prompts, experience powerful multimodal understanding and generation, create effortlessly in YouMind.\",\"headerTitle\":\"GEMINI 3 PRO\",\"headerPrompts\":\"PROMPTS\",\"headerDescription\":\"A curated collection of top {brand} prompts.\",\"headerTagline\":\"Massive Context · Multimodal Intelligence · Agentic AI\",\"freshPrompts\":\"PROMPTS\",\"total\":\"TOTAL\",\"updating\":\"UPDATING\",\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"Gemini 3 Pro Prompts\"},\"searchBar\":{\"placeholder\":\"Search prompts/title/description/author...\",\"filterAll\":\"ALL\",\"filterVideo\":\"VIDEO\",\"filterImage\":\"IMAGE\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Call the find-prompt tool. Recommend some Gemini 3 Pro image generation "])</script><script>self.__next_f.push([1,"prompts for me, and first ask about my specific needs.\",\"modelSlug\":\"\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\"},\"promptCard\":{\"tabPrompt\":\"PROMPT\",\"tabOriginal\":\"ORIGINAL\",\"by\":\"BY\",\"promptHeader\":\"PROMPT\",\"viewFullPrompt\":\"View full prompt\",\"translateButton\":\"TRANSLATE\",\"beforeTranslation\":\"BEFORE TRANSLATION\",\"originalButton\":\"EN\",\"chineseButton\":\"中文\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copy\":\"Copy\",\"copied\":\"Copied\",\"share\":\"Share\",\"linkCopied\":\"Link copied\",\"tryItNow\":\"TRY IT NOW\",\"installOnYouMind\":\"Install on YouMind\",\"aiShortcut\":\"AI SHORTCUT\",\"install\":\"INSTALL\",\"aiSkill\":\"AI SKILL\",\"tryInYouMind\":\"Try in YouMind\",\"tryIt\":\"TRY IT\",\"featured\":\"FEATURED\",\"save\":\"Save\",\"savePromptTitle\":\"Save Prompt\",\"savePromptSubtitle\":\"Access Anytime, Anywhere\",\"savingPrompt\":\"Saving...\",\"referenceImages\":\"Reference Images\"},\"faq\":{\"title\":\"FAQ\",\"q0\":\"What is Gemini 3 Pro?\",\"a0\":\"Gemini 3 Pro is Google's latest multimodal AI model featuring a massive context window (up to 1 million tokens), multimodal intelligence for understanding and generating text, images, audio, video, and code, action-oriented AI for automated execution and website generation with real-time preview, and powerful reasoning for advanced problem-solving and complex task handling.\",\"q1\":\"Where do these prompts come from?\",\"a1\":\"Primarily sourced from public Twitter/𝕏 selections. If you're the author and don't want it displayed here, please contact us, and we'll remove it promptly.\",\"q2\":\"How do I use these prompts?\",\"a2\":\"You can copy the prompt and use it in YouMind by selecting the Gemini 3 Pro model. YouMind has integrated Gemini 3 Pro's powerful capabilities, supporting multimodal inputs including text, images, audio, and video. You can directly generate websites with real-time preview and publish with one click.\",\"q3\":\"What is AI Shortcut?\",\"a3\":\"It helps you consolidate your content creation and learning best practices into YouMind Shortcuts. This enables one-click generation based on your materials—like turning a YouTube video into a blog post or extracting quotes from an article.\",\"q4\":\"Are there more use cases?\",\"a4\":\"You can check out more featured Gemini 3 Pro cases in this blog post: \u003clink\u003e{title}\u003c/link\u003e.\"},\"blogCard\":{\"tab\":\"BLOG\",\"cta\":\"EXPLORE MORE CASES\"},\"imageCarousel\":{\"preview\":\"PREVIEW\",\"previewImage\":\"Preview Image\",\"goToSlide\":\"Go to slide {index}\"},\"emptyState\":{\"noPromptsFound\":\"NO PROMPTS FOUND\",\"trySearchingElse\":\"Try searching for something else\",\"tryTheseShortcuts\":\"TRY THESE AI SHORTCUTS\",\"discoverFeaturedTools\":\"Discover featured tools to help you generate amazing content.\",\"viewAllShortcuts\":\"VIEW ALL SHORTCUTS\",\"tryTheseSkills\":\"TRY THESE AI SKILLS\",\"viewAllSkills\":\"VIEW ALL SKILLS\"},\"footerCTA\":{\"readyToCreate\":\"READY TO CREATE WITH\",\"nanoBanana\":\"GEMINI 3?\",\"experiencePower\":\"Experience the power of Gemini 3 Pro multimodal AI on YouMind - supporting text, images, audio, video, and code understanding.\",\"freeLimitedTime\":\"LET YOUR IMAGINATION SOAR\",\"startGenerating\":\"START CREATING\"},\"tweetModal\":{\"loadingTweet\":\"LOADING TWEET...\"},\"loadMore\":{\"loading\":\"Loading more...\",\"viewAll\":\"View All Prompts\"},\"generator\":{\"placeholder\":\"Describe the website you want to create... (e.g. A minimalist personal portfolio website)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference image\",\"uploadingImages\":\"Uploading images...\",\"uploadFailed\":\"Image upload failed, please try again\",\"pleaseUploadReferenceImages\":\"This prompt requires reference images, please add images first\",\"aspectRatio\":{\"auto\":\"Auto\",\"square\":\"1:1\",\"landscape\":\"16:9\",\"portrait\":\"9:16\"},\"settings\":\"Settings\",\"aspectRatioLabel\":\"Aspect Ratio\"},\"common\":{\"openSourceLink\":\"Open Source Link\",\"editInC"])</script><script>self.__next_f.push([1,"MS\":\"Edit in CMS\"},\"loginPromotionDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Experience Gemini 3 Pro's Powerful Capabilities\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for Gemini 3.0 Pro, Nano Banana Pro, Claude Opus 4.6 and more models.\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"},\"categories\":{\"all\":\"ALL\"}},\"Seedream4-5Prompts\":{\"page\":{\"title\":\"Seedream 4.5 Prompts - Affordable Nano Banana Pro Alternative for AI Image Generation - YouMind\",\"description\":\"Seedream 4.5 is a high-quality affordable alternative to Nano Banana Pro at 1/3 the price. Discover curated prompts and generate stunning AI images directly in YouMind.\",\"headerTitle\":\"Seedream 4.5\",\"headerPrompts\":\"Prompts\",\"headerDescription\":\"A curated collection of top-tier prompts for {brand}.\",\"headerTagline\":\"Steal them like an artist.\",\"freshPrompts\":\"Prompts\",\"total\":\"TOTAL\",\"updating\":\"UPDATING\",\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"Seedream 4.5 Prompts\"},\"searchBar\":{\"placeholder\":\"Search prompts/titles/descriptions/authors...\",\"filterAll\":\"all\",\"filterVideo\":\"video\",\"filterImage\":\"image\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Call the find-prompt tool. Recommend some Seedream 4.5 image generation prompts for me, and first ask about my specific needs.\",\"modelSlug\":\"\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\"},\"promptCard\":{\"tabPrompt\":\"Prompt\",\"tabOriginal\":\"Original\",\"by\":\"BY\",\"promptHeader\":\"Prompt\",\"viewFullPrompt\":\"View full prompt\",\"translateButton\":\"Translate\",\"beforeTranslation\":\"Original\",\"originalButton\":\"EN\",\"chineseButton\":\"中文\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copy\":\"COPY\",\"copied\":\"COPIED\",\"share\":\"Share\",\"linkCopied\":\"Link copied\",\"tryItNow\":\"Try it now\",\"installOnYouMind\":\"Install on YouMind\",\"aiShortcut\":\"AI Shortcut\",\"install\":\"Install\",\"aiSkill\":\"AI Skill\",\"tryInYouMind\":\"Try in YouMind\",\"tryIt\":\"Try It\",\"featured\":\"Featured\",\"save\":\"Save\",\"savePromptTitle\":\"Save Prompt\",\"savePromptSubtitle\":\"Access Anytime, Anywhere\",\"savingPrompt\":\"Saving...\"},\"faq\":{\"title\":\"Common Questions\",\"q0\":\"What is Seedream 4.5?\",\"a0\":\"Seedream 4.5 (Jimeng) is an AI image generation model by ByteDance, widely regarded as a high-quality affordable alternative to Nano Banana Pro at just 1/3 the price. It features cinematic visual effects with refined lighting and rendering, higher consistency across multiple images, smarter prompt following with precise visual control, stronger spatial understanding, and deep industry applications for e-commerce, film, advertising, gaming, education, and architectural design.\",\"q1\":\"Where do these prompts come from?\",\"a1\":\"They are curated mainly from public Twitter/𝕏 sources. If you are the author and wish to opt out, please contact us for immediate removal.\",\"q2\":\"How do I use these prompts?\",\"a2\":\"Simply copy the prompt and use it in YouMind with the 'Seedream 4.5' image generation model according to the description. We are working on a tighter integration for one-click usage in the future.\",\"q3\":\"What is AI Shortcut?\",\"a3\":\"It helps you consolidate your content creation and learning best practices into YouMind Shortcuts. This enables one-click generation based on your materials—like turning a YouTube video into a blog post or extracting quotes from an article.\",\"q4\":\"Are there more use cases?\",\"a4\":\"Check out our blog post \u003clink\u003e{title}\u003c/link\u003e for mo"])</script><script>self.__next_f.push([1,"re curated Seedream 4.5 examples.\"},\"blogCard\":{\"tab\":\"BLOG\",\"cta\":\"EXPLORE MORE CASES\"},\"imageCarousel\":{\"preview\":\"PREVIEW\",\"previewImage\":\"Preview Image\",\"goToSlide\":\"Go to slide {index}\"},\"emptyState\":{\"noPromptsFound\":\"No prompts found\",\"trySearchingElse\":\"TRY SEARCHING FOR SOMETHING ELSE\",\"tryTheseShortcuts\":\"Try These AI Shortcuts Instead\",\"discoverFeaturedTools\":\"Discover featured tools that can help you generate amazing content.\",\"viewAllShortcuts\":\"View All Shortcuts\",\"tryTheseSkills\":\"Try These AI Skills Instead\",\"viewAllSkills\":\"View All Skills\"},\"footerCTA\":{\"readyToCreate\":\"Ready to create with\",\"nanoBanana\":\"Seedream?\",\"experiencePower\":\"Experience the power of Seedream 4.5 image generation on YouMind.\",\"freeLimitedTime\":\"LET YOUR IMAGINATION SOAR\",\"startGenerating\":\"Start Generating\"},\"tweetModal\":{\"loadingTweet\":\"LOADING TWEET...\"},\"loadMore\":{\"loading\":\"Loading more...\",\"viewAll\":\"View All Prompts\"},\"generator\":{\"placeholder\":\"Describe the image you want to generate... (e.g. A cyberpunk city at night)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference image\",\"uploadingImages\":\"Uploading images...\",\"uploadFailed\":\"Image upload failed, please try again\",\"pleaseUploadReferenceImages\":\"This prompt requires reference images, please add images first\",\"aspectRatio\":{\"auto\":\"Auto\",\"square\":\"1:1\",\"landscape\":\"16:9\",\"portrait\":\"9:16\"},\"settings\":\"Settings\",\"aspectRatioLabel\":\"Aspect Ratio\"},\"common\":{\"openSourceLink\":\"Open Source Link\",\"editInCMS\":\"Edit in CMS\"},\"loginPromotionDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Try the #2 Ranked Image Model on LM Arena\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for Gemini 3.0 Pro, Nano Banana Pro, Claude Opus 4.6 and more models.\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"},\"categories\":{\"all\":\"ALL\"}},\"ChristmasCardPrompts\":{\"makeYourCard\":\"Make Your Card\",\"page\":{\"title\":\"2025 Christmas Card Prompts - 100+ AI Christmas Cards, Covers \u0026 Frames - YouMind\",\"description\":\"Discover 100+ curated Christmas card prompts for AI image generation. Create stunning holiday cards, covers, photo frames and more. Fully customizable!\",\"headerTitle\":\"2025 Christmas Card\",\"headerPrompts\":\"Prompts\",\"headerDescription\":\"100+ AI Christmas cards including covers, greeting cards, photo frames and more.\",\"headerTagline\":\"Fully customizable for your perfect holiday.\",\"freshPrompts\":\"Prompts\",\"total\":\"TOTAL\",\"updating\":\"UPDATING\",\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"2025 Christmas Card Prompts\"},\"searchBar\":{\"placeholder\":\"Search prompts/titles/descriptions/authors...\",\"filterAll\":\"all\",\"filterVideo\":\"video\",\"filterImage\":\"image\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Call the find-prompt tool. Recommend some Christmas card image generation prompts for me, and first ask about my specific needs.\",\"modelSlug\":\"\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\"},\"categories\":{\"all\":\"ALL\"},\"promptCard\":{\"tabPrompt\":\"Prompt\",\"tabOriginal\":\"Original\",\"by\":\"BY\",\"remixFrom\":\"Remix from\",\"promptHeader\":\"Prompt\",\"viewFullPrompt\":\"View full prompt\",\"translateButton\":\"Translate\",\"beforeTranslation\":\"Original\",\"originalButton\":\"EN\",\"chineseButton\":\"中文\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copy\":\"COPY\",\"copied\":\"COP"])</script><script>self.__next_f.push([1,"IED\",\"share\":\"Share\",\"linkCopied\":\"Link copied\",\"tryItNow\":\"Try it now\",\"installOnYouMind\":\"Install on YouMind\",\"aiShortcut\":\"AI Shortcut\",\"install\":\"Install\",\"aiSkill\":\"AI Skill\",\"tryInYouMind\":\"Try in YouMind\",\"tryIt\":\"Try It\",\"featured\":\"Featured\",\"save\":\"Save\",\"savePromptTitle\":\"Save Prompt\",\"savePromptSubtitle\":\"Access Anytime, Anywhere\",\"savingPrompt\":\"Saving...\",\"referenceImages\":\"Ref Images\"},\"faq\":{\"title\":\"Common Questions\",\"q0\":\"What are these Christmas Card Prompts?\",\"a0\":\"These are curated AI prompts specifically designed for creating beautiful Christmas cards. Includes holiday covers, greeting cards, photo frames, and customizable templates that work with AI image generators.\",\"q1\":\"How many Christmas card styles are available?\",\"a1\":\"We have over 100 different Christmas card prompts covering various styles: traditional, modern, minimalist, cute, elegant, and more. Each prompt is fully customizable.\",\"q2\":\"How do I use these prompts?\",\"a2\":\"Simply copy the prompt and use it in YouMind with our AI image generator. You can customize text, names, and other parameters to create your perfect Christmas card.\",\"q3\":\"Can I customize these cards?\",\"a3\":\"Yes! Most prompts support customization through parameters. You can change names, greetings, colors, and styles to make each card unique.\",\"q4\":\"Are there more use cases?\",\"a4\":\"Check out our gallery for more inspiration and examples of how others have used these prompts to create amazing Christmas cards.\"},\"blogCard\":{\"tab\":\"BLOG\",\"cta\":\"EXPLORE MORE CASES\"},\"imageCarousel\":{\"preview\":\"PREVIEW\",\"previewImage\":\"Preview Image\",\"goToSlide\":\"Go to slide {index}\"},\"emptyState\":{\"noPromptsFound\":\"No prompts found\",\"trySearchingElse\":\"TRY SEARCHING FOR SOMETHING ELSE\",\"tryTheseShortcuts\":\"Try These AI Shortcuts Instead\",\"discoverFeaturedTools\":\"Discover featured tools that can help you generate amazing content.\",\"viewAllShortcuts\":\"View All Shortcuts\",\"tryTheseSkills\":\"Try These AI Skills Instead\",\"viewAllSkills\":\"View All Skills\"},\"footerCTA\":{\"readyToCreate\":\"Ready to create\",\"nanoBanana\":\"Christmas Magic?\",\"experiencePower\":\"Create stunning Christmas cards with AI in seconds\",\"freeLimitedTime\":\"SPREAD THE HOLIDAY JOY\",\"startGenerating\":\"Start Creating\"},\"tweetModal\":{\"loadingTweet\":\"LOADING TWEET...\"},\"loadMore\":{\"loading\":\"Loading more...\",\"viewAll\":\"View All Prompts\"},\"generator\":{\"placeholder\":\"Describe your Christmas card... (e.g. A cozy Christmas fireplace scene with stockings)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference image\",\"uploadingImages\":\"Uploading images...\",\"uploadFailed\":\"Image upload failed, please try again\",\"pleaseUploadReferenceImages\":\"This prompt requires reference images, please add images first\",\"aspectRatio\":{\"auto\":\"Auto\",\"square\":\"1:1\",\"landscape\":\"16:9\",\"portrait\":\"9:16\"},\"settings\":\"Settings\",\"aspectRatioLabel\":\"Aspect Ratio\"},\"common\":{\"openSourceLink\":\"Open Source Link\",\"editInCMS\":\"Edit in CMS\"},\"loginPromotionDialog\":{\"title\":\"Login to Create for Free\",\"subtitle\":\"Create Beautiful Christmas Cards with AI\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for multiple AI image generation models\",\"benefit3\":\"100+ customizable Christmas card templates\",\"benefit4\":\"Save and download your creations\",\"benefit5\":\"Share your cards with friends and family\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"}},\"ChristmasCardMaker\":{\"page\":{\"title\":\"Christmas Card Maker - Create AI-Powered Holiday Greeting Cards | YouMind\",\"description\":\"Create stunning personalized Christmas cards with AI. Upload your photos, customize messages, choose festive music and fonts.\",\"headerTitle\":\"Christmas Card Maker\",\"headerDescription\":\"Create your personalized holiday greeting card with AI\"},\"steps\":{\"cover\":\"Cover\",\"message\":\"Message\"},\"coverPage\":{\"uploadCover\":\"Upload Cover\",\"uploadCoverSubtext\":\"Your Christmas card cover\",\""])</script><script>self.__next_f.push([1,"yourPhoto\":\"Your Photo\",\"addYourPhoto\":\"Add Your Photo\",\"willBeMerged\":\"Will be merged into the frame\",\"uploadHintPhotoFrame\":\"Upload a photo frame, then add your photo\",\"uploadHintNormal\":\"Upload your Christmas card cover image\",\"uploading\":\"Uploading...\",\"upload\":\"Upload\",\"coverImage\":\"Cover Image\",\"selectCovers\":\"Select Covers\",\"removeCover\":\"Remove cover image\",\"removePhoto\":\"Remove photo\"},\"innerPage\":{\"decoration\":\"Decoration\",\"addDecoration\":\"Add Decoration\",\"removeDecoration\":\"Remove Decoration\",\"decorationLibrary\":\"Decoration Library\",\"decorationSubtext\":\"Optional - AI will generate if empty\",\"aiWillCreate\":\"AI will create magic!\",\"yourMessage\":\"Your Message\",\"messagePlaceholder\":\"Dear family,\\n\\nWishing you a very Merry Christmas, joy every day, and good health always!\\n\\nWith love,\\n[Your name]\",\"clearText\":\"Clear text\"},\"navigation\":{\"makeYourCard\":\"Make Your Card\",\"advanceOptions\":\"Advance Options\"},\"cardPreview\":{\"flipToFront\":\"Flip to Front\",\"flipToBack\":\"Flip to Back\"},\"advanceOptions\":{\"title\":\"Advance Options\",\"done\":\"Done\",\"music\":{\"title\":\"Background Music\",\"subtitle\":\"Choose a festive tune\",\"randomPick\":\"Random Pick\"},\"font\":{\"title\":\"Font Style\",\"subtitle\":\"Pick your message font\",\"previewText\":\"Merry Christmas\",\"categories\":{\"handwriting\":\"Handwriting\",\"serif\":\"Serif\",\"sansSerif\":\"Sans Serif\",\"display\":\"Display\"}}},\"loginDialog\":{\"title\":\"Make Your Unique Christmas Card\",\"subtitle\":\"Login to start creating\",\"benefits\":{\"1\":\"Create beautiful Christmas cards with Gemini 3 Pro and Nano Banana Pro\",\"2\":\"Share your cards with friends \u0026 family\",\"3\":\"Save your creations to your account\",\"4\":\"2000 free credits every month\"},\"loginButton\":\"Make Card\",\"terms\":\"By signing in, you agree to our Terms of Service and Privacy Policy\"},\"common\":{\"uploading\":\"Uploading...\",\"poweredBy\":\"Powered by YouMind AI\",\"close\":\"Close\",\"mute\":\"Mute\",\"unmute\":\"Unmute\"}},\"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\":\"Reco"])</script><script>self.__next_f.push([1,"mmend 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\"},\"ModelArena\":{\"header\":{\"vs\":\"VS\",\"mysteryModel\":\"???\",\"allModels\":\"All Models\"},\"compareModels\":\"Compare Models\",\"prompts\":\"prompts\",\"loadMore\":\"Load more\",\"excelsFilter\":{\"label\":\"Best at:\",\"all\":\"All\",\"excels\":\"excels\"},\"empty\":{\"title\":\"No comparisons found\",\"description\":\"Try adjusting your filters or check back later.\"},\"footer\":{\"poweredBy\":\"Powered by\"},\"viewComparison\":\"View Comparison\",\"preview\":\"PREVIEW\",\"noImage\":\"No image\",\"models\":\"models\",\"sourceLink\":\"Source Link\",\"by\":\"by\",\"tryItNow\":\"Try it now\",\"preferThis\":\"Prefer this\",\"votes\":\"votes\",\"prompt\":\"Prompt\",\"filters\":\"Filters\",\"clearFilters\":\"Clear filters\",\"championModel\":\"Champion Model\",\"categories\":{\"usecases\":\"Use Cases\",\"styles\":\"Styles\",\"subjects\":\"Subjects\"},\"comparisonSummary\":{\"title\":\"Model Comparison Summary\",\"readTime\":\"{minutes} min read\"},\"modelWinCounts\":{\"title\":\"Model Win Counts\",\"updateNote\":\"Updated every {hours} hours\"},\"footerCTA\":{\"title\":\"Which Model Wins the Game?\",\"shuffleAndTry\":\"Shuffle \u0026 Try\",\"hint\":\"Click to try a random prompt\"},\"loginDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Experience Nano Banana Pro's Powerful Capabilities\",\"close\":\"Close\",\"benefit1\":\"1000 credits daily\",\"benefit2\":\"Support for Gemini 3.0 Pro, Nano Banana Pro, Claude Opus 4.6 and more models.\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"},\"referenceImages\":\"Reference Images\",\"blindTest\":\"Blind Test\",\"linkCopied\":\"Link copied\",\"share\":\"Share\",\"longPressToSave\":\"Long press image to save\",\"model\":\"Model\",\"championModelHint\":\"Filter prompts where this model won the most votes\",\"featured\":\"Featured\",\"roast\":{\"title\":\"AI Roast\",\"aiSays\":\"AI Roast:\",\"winner\":\"Winner\",\"download\":\"Download Image\",\"share\":\"Share\",\"shareTitle\":\"Check out this AI roast!\",\"roastThem\":\"AI Roast\",\"randomRoast\":\"Random AI Roast\",\"noComments\":\"No roasts available for this comparison\",\"loading\":\"Loading roasts...\",\"generatingImage\":\"Generating image...\",\"linkCopied\":\"Link copied\",\"selectModels\":\"Select models\",\"loadingRandomRoast\":\"Finding a spicy roast...\",\"noCommentsForPair\":\"No roasts for this model pair, try another combination\",\"noCommentsAvailable\":\"No roasts available on this page, try adjusting filters or check back later\"},\"pickFavoriteHint\":\"Pick your favorite!\",\"exploreMorePrompts\":\"Explore thousands of prompts\",\"showMore\":\"Show more\",\"showLess\":\"Show less\",\"allPrompts\":\"All\",\"sortButton\":\"Sort\",\"sortAsc\":\"Ascending\",\"sortDesc\":\"Descending\",\"sortTime\":\"Time\",\"sortLikes\":\"Likes\",\"sortComments\":\"Comments\",\"sortReposts\":\"Reposts\",\"sortViews\":\"Views\",\"sortBookmarks\":\"Bookmarks\",\"clearSort\":\"Clear Sort\"},\"Landing\":{\"XViralArticles\":{\"meta\":{\"title\":\"Viral X/Twitter Articles Tracking - YouMind\",\"description\":\"YouMind tracks viral X/Twitter articles daily with rankings, engagement signals, AI breakdowns, and creator-ready content ideas.\",\"detailFallbackTitle\":\"Article not found - YouMind\",\"detailTitleSuffix\":\"Viral X/Twitter Article Tracking - YouMind\",\"detailDescriptionSuffix\":\"YouMind tracks this viral X/Twitter article with engagement data, original source conte"])</script><script>self.__next_f.push([1,"xt, and AI reading prompts for creators.\"},\"masthead\":{\"logo\":\"YOUMIND DAILY\",\"tag\":\"VIRAL · X · DIGEST\"},\"hero\":{\"title\":\"𝕏 \u003chighlight\u003eViral\u003c/highlight\u003e Articles Tracking\",\"subtitle\":\"Global 𝕏 viral article rankings · AI breakdowns · Updated daily\"},\"stats\":{\"allTime\":\"All time\",\"currentPage\":\"Current page\",\"totalVolume\":\"Total volume\",\"diversity\":\"Diversity\",\"pageEngagement\":\"Engagement\",\"articles\":\"Articles\",\"languages\":\"Languages\",\"views\":\"Views\"},\"subscribe\":{\"cta\":\"Get the daily digest\"},\"sort\":{\"by\":\"Sort by\",\"time\":\"Time\",\"views\":\"Views\",\"likes\":\"Likes\",\"reposts\":\"Reposts\",\"comments\":\"Comments\",\"bookmarks\":\"Bookmarks\"},\"search\":{\"placeholder\":\"Search\",\"submit\":\"Search\",\"clear\":\"Clear search\"},\"engagement\":{\"views\":\"Views\",\"likes\":\"Likes\",\"reposts\":\"Reposts\",\"comments\":\"Comments\",\"bookmarks\":\"Bookmarks\"},\"cta\":{\"eyebrow\":\"AI features\",\"breakdown\":\"Decode virality\",\"remix\":\"Remix in my tone\",\"deepRead\":\"Deep read\"},\"pagination\":{\"label\":\"Pagination\",\"prev\":\"Prev\",\"next\":\"Next\",\"pageLabel\":\"Page\",\"showing\":\"Showing {from}–{to} of {total}\"},\"empty\":{\"title\":\"No articles yet\",\"subtitle\":\"Today's digest is still being compiled. Check back soon.\"},\"detail\":{\"originallyIn\":\"{language}\",\"published\":\"{relative} · {date}\",\"save\":\"Save\",\"saveSignIn\":\"Save (sign-in required)\",\"summary\":{\"label\":\"TL;DR\"},\"viralReason\":{\"label\":\"Why it went viral · AI analysis\",\"unlock\":\"Sign up free to keep reading\"},\"toggle\":{\"translatedLabel\":\"{language} (translated)\",\"originalLabel\":\"{language} (original)\",\"viewingTranslated\":\"Reading the {language} translation\",\"viewingOriginal\":\"Reading the {language} original\",\"label\":\"Article language versions\"},\"bodyLabel\":\"Article body\",\"bodyMissing\":\"No translation available — switch to the original tab.\",\"viewOriginal\":\"View original\",\"breadcrumbLabel\":\"Breadcrumb\",\"backToList\":\"𝕏 Viral Articles Tracking\",\"currentArticle\":\"Current article\"},\"promotionDialog\":{\"title\":\"Sign up to decode virality\",\"subtitle\":\"Free with a YouMind account\",\"feature1\":\"Daily 1,000 credits\",\"feature2\":\"AI breakdowns of any viral X article\",\"feature3\":\"Turn one long-form link into \u003cslidesLink\u003edeliverable slides\u003c/slidesLink\u003e\",\"feature4\":\"Pick sources, AI drafts a structured outline — ship it with light edits\",\"cta\":\"Sign up free →\",\"footer\":\"Take a look at our beautiful illustrations 😉\"},\"skillConfig\":{\"title\":\"Configure AI feature\",\"eyebrow\":\"Custom skill binding\",\"heading\":{\"breakdown\":\"Bind your decoder skill\",\"tone-remix\":\"Bind your remix skill\",\"deep-read\":\"Bind your deep-read skill\"},\"subtitle\":\"Paste a YouMind skill link or ID to use your own skill for this CTA. We'll only accept a skill that belongs to you. Leave empty to keep the default.\",\"inputLabel\":\"Skill link or ID\",\"inputPlaceholder\":\"https://youmind.com/skills/...\",\"useMine\":\"Use my skill →\",\"useDefault\":\"Use default skill →\",\"errorNotFound\":\"Skill not found, or it doesn't belong to you\",\"close\":\"Close\",\"comingSoon\":\"Coming soon\"},\"footerCta\":{\"title\":\"Built for creators.\",\"subtitle\":\"Find content ideas inside viral 𝕏 articles, decode why they worked, and turn proven patterns into your next creator-ready angle.\",\"primary\":\"Start creating with YouMind\",\"secondary\":\"Explore more viral articles\"},\"related\":{\"kicker\":\"More patterns to decode\",\"title\":\"Recent viral articles\",\"viewAll\":\"Explore more viral articles\"},\"weeklyFeatured\":{\"eyebrow\":\"Weekly featured\",\"cta\":\"Read featured article\"},\"explore\":{\"title\":\"Explore Viral Articles\",\"subtitle\":\"Browse, sort, and search the full daily digest\",\"metaTitle\":\"Explore Viral X/Twitter Articles - YouMind\",\"metaDescription\":\"Browse, sort, and search YouMind's daily digest of viral X/Twitter articles with engagement signals and AI breakdowns.\",\"breadcrumb\":\"Explore\"}},\"LennyCareerCoach\":{\"meta\":{\"title\":\"Lenny's Career Coach — AI-Powered Resume Review \u0026 Career Advice\",\"description\":\"Get personalized career coaching powered by Lenny Rachitsky's newsletter insights. Resume review, career advice, and mock interviews.\"},\"header\":{\"downloadButton\":\"Get Lenny's Content Pack\",\"title\":\"Lenny's C"])</script><script>self.__next_f.push([1,"areer Coach\"},\"tabs\":{\"resume\":\"Resume Review\",\"advice\":\"Career Advice\",\"interview\":\"Mock Interview\"},\"sharedBadge\":{\"trainedOn\":\"Trained on 500+ Lenny's Newsletter articles\",\"hours\":\"2000+ hours of career wisdom\"},\"resume\":{\"welcome\":\"Hi! I'm Lenny's Career Coach. Upload your resume and I'll give you detailed, actionable feedback based on hiring insights from top tech companies.\",\"userUpload\":\"resume_sarah_chen_2026.pdf\",\"analysisIntro\":\"Great, I've analyzed your resume. Here's my detailed feedback:\",\"feedback\":{\"title\":\"Resume Analysis Summary\",\"strongPoints\":\"Strong Points\",\"strong1\":\"Clear quantification of impact metrics\",\"strong2\":\"Strong action verbs and concise bullet points\",\"areasToImprove\":\"Areas to Improve\",\"improve1\":\"Add more context about team size and scope\",\"improve2\":\"Consider reorganizing skills section by relevance\"},\"sources\":{\"article1\":\"Lenny's Resume Tips\",\"article2\":\"Hiring at Top Companies\"},\"quote\":{\"text\":\"The best resumes don't just list responsibilities — they tell a story of impact.\",\"author\":\"Lenny Rachitsky\"}},\"advice\":{\"welcome\":\"I'm here to help you navigate your career, drawing from hundreds of articles and expert interviews. What would you like to explore?\",\"topic1\":\"Career transitions and pivots\",\"topic2\":\"Salary negotiation strategies\",\"topic3\":\"Building a personal brand\",\"topic4\":\"Networking and mentorship\"},\"interview\":{\"welcome\":\"Let's practice! I'll simulate real interview scenarios based on what top companies are actually looking for. Choose a role type to get started.\"},\"chatInput\":{\"dropHint\":\"Upload a resume PDF or enter your personal info below\",\"dropHere\":\"Drop your PDF here\",\"placeholder\":\"Upload a PDF or enter your personal info...\",\"attachFile\":\"Attach file\",\"validationHint\":\"Please upload a PDF or enter your personal info\"},\"uploadSuccess\":{\"analyzeButton\":\"Analyze with Lenny's Coach\"},\"promotionDialog\":{\"title\":\"UNLOCK FULL ANALYSIS\",\"feature1\":\"1,000 free credits daily\",\"feature2\":\"Resume optimization \u0026 generation powered by Lenny's insights\",\"feature3\":\"Career guidance conversations with top tech executives\",\"feature4\":\"Mock interviews with real-time feedback\",\"ctaText\":\"START FREE →\",\"footerText\":\"Learn more about YouMind\"},\"footer\":{\"builtWith\":\"Built with\"}},\"GptImage2Slides\":{\"meta\":{\"title\":\"GPT Image 2 AI Slides | Text, faces, layouts finally aligned — YouMind\",\"description\":\"Generate AI slides with OpenAI's new GPT Image 2 inside YouMind. 99% typography accuracy, pore-level portrait realism, production-ready layouts. Export to a video narrated in your own cloned voice with one click.\"},\"hero\":{\"title\":\"Slides you don't have to clean up\",\"subtitle\":\"Drop in an article, a podcast, or a YouTube URL. GPT Image 2 aligns every word, face, and layout on the first pass.\",\"inputPlaceholder\":\"Drop in an article, podcast link or YouTube URL — or just describe the deck you want\",\"defaultPrompt\":\"$22\",\"submitCta\":\"Generate\",\"templateSectionTitle\":\"Pick a style (optional)\",\"templateSectionSubtitle\":\"Each card is a full-style deck. Hover to flip through sample pages.\",\"modelSelector\":{\"gptImage2\":{\"label\":\"GPT Image 2\",\"subtitle\":\"99% text · photoreal portraits · recommended\"},\"nanoBananaPro\":{\"label\":\"Nano Banana Pro\",\"subtitle\":\"Serial narratives · 14-ref character anchoring · dense infographics\"},\"nanoBanana2\":{\"label\":\"Nano Banana 2\",\"subtitle\":\"Half the price · best-value pick\"}},\"chatInput\":{\"attachFile\":\"Attach file\",\"removeFile\":\"Remove file\",\"dropHere\":\"Drop file here\",\"helperText\":\"Paste links or drag PDF / Markdown / images — up to 50MB\",\"validationHint\":\"Add a prompt or attach a file first\"},\"templatePrompt\":\"$23\"},\"templates\":{\"placeholder\":\"Preview coming soon\",\"expandPreview\":\"Expand preview\",\"recommendedBadge\":\"Recommended\",\"yearEndReport\":{\"title\":\"Year-End Report\",\"subtitle\":\"Data storytelling\",\"defaultPrompt\":\"Turn the year I describe next into a year-end report deck — highlights, the numbers that mattered, and a crisp outlook slide.\"},\"memphisDesign\":{\"title\":\"Memphis Design\",\"subtitle\":\"Playful retro\",\"defaultPrompt\":\"Make a deck about "])</script><script>self.__next_f.push([1,"the topic I share next in a Memphis-design style — bold shapes, confetti palette, and playful editorial pacing.\"},\"boldVisualBrochure\":{\"title\":\"Bold Visual Brochure\",\"subtitle\":\"Magazine-grade covers\",\"defaultPrompt\":\"Turn my brief into a bold visual brochure — magazine-grade covers, oversized type, and a closing spread that reads like a pitch.\"},\"kamiDesign\":{\"title\":\"Kami Design\",\"subtitle\":\"Paper-cut editorial\",\"defaultPrompt\":\"Make a deck in a Kami / paper-cut editorial style on the topic I share next — layered textures, calm palette, and thoughtful whitespace.\"},\"vibrantHanddrawn\":{\"title\":\"Vibrant Hand-drawn\",\"subtitle\":\"Young professional\",\"defaultPrompt\":\"Make a vibrant hand-drawn deck for a young professional audience — punchy colors, sketchy strokes, and slides that feel human, not corporate.\"},\"modernDigital\":{\"title\":\"Modern Digital\",\"subtitle\":\"Clean product\",\"defaultPrompt\":\"Make a modern digital deck on the topic I share next — clean product visuals, UI callouts, and a calm SaaS-grade palette.\"},\"brutalism\":{\"title\":\"Brutalism\",\"subtitle\":\"Raw \u0026 architectural\",\"defaultPrompt\":\"Make a brutalist deck on the topic I share next — heavy grids, monospace accents, raw contrasts, and zero decoration.\"},\"neuBrutalism\":{\"title\":\"Neu-Brutalism Manifesto\",\"subtitle\":\"Statement slides\",\"defaultPrompt\":\"Write a manifesto deck in a neu-brutalist style on the topic I share next — thick borders, chunky type, and statement slides that don't apologize.\"}},\"templatePreview\":{\"close\":\"Close preview\",\"previous\":\"Previous page\",\"next\":\"Next page\",\"useTemplate\":\"Use this template\"},\"why\":{\"sectionTitle\":\"Where the craft shows\",\"bestInClass\":{\"title\":\"Text, faces, layouts — this model nails all three\",\"body\":\"Text, portraits, product assets, layouts — GPT Image 2 nails the three hardest things in slides on the first pass, with 99% typography and pore-level detail.\",\"cta\":\"Try it now\"},\"fromAnything\":{\"title\":\"One link, one article, one podcast — one full deck\",\"body\":\"Drop in a YouTube link, podcast, article, or PDF. YouMind distills the key points and renders the whole deck in parallel — grounded in your real sources.\",\"cta\":\"Try it now\"},\"videoExport\":{\"title\":\"Beyond slides: one-click video in your own cloned voice\",\"body\":\"Smart Video turns the deck into a finished video — AI narration, captions, BGM, transitions — plus voice cloning so it actually sounds like you.\",\"cta\":\"Try it now\"},\"styleConsistency\":{\"title\":\"Consistent style, cover to close\",\"body\":\"Every slide is generated in parallel and locks in one style in a single pass. Palette, typography, visual rhythm — consistent cover to close.\",\"cta\":\"Try it now\"},\"sectionIntro\":\"Four quiet details that separate a first-pass deck from a draft you still have to clean up.\"},\"comparison\":{\"sectionTitle\":\"Why YouMind\",\"intro\":\"Plenty of tools claim 'AI slides'. The friction shows up at delivery — consistency breaks, export is PDF-only, or you need a second tool for narration. This comparison is from using all four ourselves.\",\"dimensionLabel\":\"Dimension\",\"vendors\":{\"youmind\":\"YouMind\",\"gamma\":\"Gamma\",\"manus\":\"Manus\",\"beautifulAi\":\"Beautiful.ai\"},\"rows\":{\"imageModels\":{\"name\":\"Image models\",\"youmind\":\"GPT Image 2 / Nano Banana Pro (one-click switch)\",\"gamma\":\"Gamma Imagine (self-built, 2026-03)\",\"manus\":\"Nano Banana Pro (single integration)\",\"beautifulAi\":\"Stock-first + light AI gen\"},\"aiChatEdit\":{\"name\":\"AI chat editing\",\"youmind\":\"✅\",\"gamma\":\"✅\",\"manus\":\"✅\",\"beautifulAi\":\"✅\"},\"textEdit\":{\"name\":\"Paragraph-level text edits\",\"youmind\":\"✅\",\"gamma\":\"✅\",\"manus\":\"✅ (since 2026-11)\",\"beautifulAi\":\"✅\"},\"sourceInput\":{\"name\":\"Generate from docs / URLs / KB\",\"youmind\":\"✅\",\"gamma\":\"✅\",\"manus\":\"✅\",\"beautifulAi\":\"⚠️ Outline-first, limited\"},\"batchGen\":{\"name\":\"Batch slide generation\",\"youmind\":\"✅\",\"gamma\":\"✅\",\"manus\":\"✅\",\"beautifulAi\":\"✅\"},\"autoStyle\":{\"name\":\"Agent auto-selects style\",\"youmind\":\"✅\",\"gamma\":\"✅\",\"manus\":\"✅\",\"beautifulAi\":\"⚠️ Template-driven\"},\"videoExport\":{\"name\":\"Narrated video export\",\"youmind\":\""])</script><script>self.__next_f.push([1,"✅ Smart Video\",\"gamma\":\"⚠️ TTS + captions only\",\"manus\":\"❌\",\"beautifulAi\":\"❌\"},\"voiceClone\":{\"name\":\"Human voice cloning\",\"youmind\":\"✅\",\"gamma\":\"❌\",\"manus\":\"❌\",\"beautifulAi\":\"❌\"},\"skillReuse\":{\"name\":\"Reusable Skills + Marketplace\",\"youmind\":\"✅ Creators earn credits\",\"gamma\":\"❌\",\"manus\":\"⚠️ Has Skills, no marketplace\",\"beautifulAi\":\"❌\"}},\"verdict\":\"Only YouMind ships narrated videos in your own voice and pays creators for reusable Skills — with both GPT Image 2 and Nano Banana Pro one click away.\"},\"modelCompare\":{\"sectionTitle\":\"GPT Image 2 vs Nano Banana Pro\",\"intro\":\"Slides hinge on text, faces, and layout — we default to GPT Image 2 for those. Nano Banana Pro wins when character consistency across many slides or reference-heavy workflows matter more than a one-pass render.\",\"primaryLabel\":\"Primary Model\",\"alternativeLabel\":\"Alternative\",\"models\":{\"gptImage2\":\"GPT Image 2\",\"nanoBananaPro\":\"Nano Banana Pro\"},\"rows\":{\"smallText\":{\"name\":\"Small text / UI labels / iconography\",\"gptImage2\":\"⭐⭐⭐⭐⭐ strongest in our tests\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"multilingualText\":{\"name\":\"Multilingual (CJK / Hindi / Bengali)\",\"gptImage2\":\"⭐⭐⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"portraitRealism\":{\"name\":\"Portrait realism (pore-level, hands, lighting)\",\"gptImage2\":\"⭐⭐⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"productBrand\":{\"name\":\"Product / brand assets (logos, materials, packaging)\",\"gptImage2\":\"⭐⭐⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"instructionFollowing\":{\"name\":\"Instruction following / detail preservation\",\"gptImage2\":\"⭐⭐⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"complexLayout\":{\"name\":\"Complex multi-element layouts\",\"gptImage2\":\"⭐⭐⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"highResolution\":{\"name\":\"High-res output + aspect ratios\",\"gptImage2\":\"✅ up to 3840px, 3:1 → 1:3\",\"nanoBananaPro\":\"✅ 1K / 2K / 4K native\"},\"denseInfographicLayout\":{\"name\":\"Dense infographic / editorial layouts\",\"gptImage2\":\"⭐⭐⭐⭐⭐ slightly ahead\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"pureLongText\":{\"name\":\"Pure long-text correctness (paragraphs, posters)\",\"gptImage2\":\"⭐⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐⭐\"},\"multiRefConsistency\":{\"name\":\"Strict cross-page character anchoring (multi-reference)\",\"gptImage2\":\"⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐⭐ up to 14 reference images\"},\"spatialReasoning\":{\"name\":\"3D spatial reasoning / reflections / lighting physics\",\"gptImage2\":\"⭐⭐⭐⭐⭐\",\"nanoBananaPro\":\"⭐⭐⭐⭐\"},\"inpainting\":{\"name\":\"Local edits / inpainting\",\"gptImage2\":\"✅ mask-based editing\",\"nanoBananaPro\":\"✅ strong semantic edits\"}},\"bestFor\":{\"name\":\"Best for\",\"gptImage2\":\"Daily batch decks · presentation visuals · marketing layouts · UI / product demos · multilingual campaign assets · portrait covers · brand / editorial visuals\",\"nanoBananaPro\":\"Strict character consistency · multi-reference character anchoring · serial narratives · semantic local edits · reference-heavy image workflows\"},\"verdict\":\"Default to GPT Image 2 for most decks. Switch to Nano Banana Pro when you need strict character consistency across many slides, serial narratives, or reference-heavy edits.\"},\"steps\":{\"sectionTitle\":\"Three steps, idea to slide\",\"intro\":\"The professional way to iterate on visual stories.\",\"step1\":{\"title\":\"Input your brief\",\"body\":\"Paste links or text and select your visual direction.\"},\"step2\":{\"title\":\"Watch it render\",\"body\":\"GPT Image 2 builds every layer with native consistency.\"},\"step3\":{\"title\":\"Export instantly\",\"body\":\"Download high-res PPTX, PDF, or export to video.\"}},\"showcase\":{\"sectionTitle\":\"Actual pages from each template\",\"intro\":\"Every template above is a real YouMind Skill — these are the slides it produces. Click any page to open the full-size view.\",\"categories\":{\"realistic\":\"Realistic\",\"cyberpunk\":\"Cyberpunk\",\"illustration\":\"Illustration\",\"gothic\":\"Gothic\"},\"thumbnails\":{\"realistic\":{\"0\":\"Modern Minimal\",\"1\":\"Editorial Bold\",\"2\":\"Swiss Style\",\"3\":\"Tech Deep\"},\"cyberpunk\":{\"0\":\"Neon Grid\",\"1\":\"Glitch Pop\",\"2\":\"Night City\","])</script><script>self.__next_f.push([1,"\"3\":\"Retrowave\"},\"illustration\":{\"0\":\"Crayon Story\",\"1\":\"Watercolor\",\"2\":\"Paper Cut\",\"3\":\"Soft Pastel\"},\"gothic\":{\"0\":\"Cathedral\",\"1\":\"Ink Manuscript\",\"2\":\"Victorian\",\"3\":\"Dark Baroque\"}},\"previousCategory\":\"Previous category\",\"nextCategory\":\"Next category\",\"pageLabel\":\"Page {num}\"},\"faq\":{\"sectionTitle\":\"FAQ\",\"modelChoice\":{\"q\":\"When do I use GPT Image 2 vs Nano Banana Pro?\",\"a\":\"Default to GPT Image 2 — it leads on text accuracy, portrait realism, instruction following, and complex layouts, covering the vast majority of slide use cases. Flip to Nano Banana Pro in two cases: (a) the deck has a recurring character / person / brand IP that must stay strictly consistent across pages (NBP anchors with up to 14 reference images); (b) you need local edits / inpainting on an existing image. YouMind's Agent also flags these cases and suggests the switch.\"},\"smartVideoPlan\":{\"q\":\"Which plan includes Smart Video (narrated video export)?\",\"a\":\"Smart Video is a core YouMind capability, billed against your plan's credit pool. Click 'Export video' inside YouMind to see the credit cost of the current export; length, whether voice cloning is on, and HD rendering affect the amount. See the pricing page for plan-level quotas.\"},\"convertExisting\":{\"q\":\"Can I turn existing docs / articles / X threads into slides?\",\"a\":\"Yes. YouMind natively accepts Word, PDF, Markdown, web links, X threads, YouTube links, and more. Drop them into the chat and the Agent will read them and generate the deck directly — no manual transcription required.\"},\"skillReuse\":{\"q\":\"What is a YouMind Skill, and how does it make styles reusable?\",\"a\":\"A Skill is YouMind's abstraction for reusable AI workflows — once you've tuned a slide style (palette, layout, tone, image style), save it as a Skill. Next time, apply that Skill in one click instead of re-tuning prompts. You can also publish Skills on the Skill Marketplace and earn credits when others install yours.\"},\"editAndExport\":{\"q\":\"Can I keep editing the generated slides? Can I export PPTX?\",\"a\":\"Yes. You can directly edit the text on any slide, and everything else — images, layout, palette, tone, even style — is editable by chatting with the Agent, which routes through the same slide generator. Export to PPTX / PDF, or send the deck to Smart Video.\"},\"templateMarketplace\":{\"q\":\"How are templates made? Can I build and monetize my own?\",\"a\":\"Each template on this page is a YouMind Skill plus a sample deck. Any Pro-or-above user can save a tuned style as a Skill and publish it to the Skill Marketplace — when others install and use your Skill, you earn credits. Multiple creators are already earning thousands of credits this way.\"}},\"footerCta\":{\"title\":\"Ready to make a deck you don't have to clean up?\",\"body\":\"Join hundreds of thousands of professionals on YouMind. Free to start.\",\"primaryCta\":\"Try YouMind now\"},\"promotionDialog\":{\"title\":\"UNLOCK YOUR FIRST AI DECK\",\"feature1\":\"1,000 free credits daily\",\"feature2\":\"GPT Image 2 — 99% text accuracy and photoreal portraits\",\"feature3\":\"Nano Banana Pro for strict cross-page character anchoring\",\"feature4\":\"Export your deck to a narrated video in one click — auto voiceover and captions\",\"ctaText\":\"START FREE →\",\"footerText\":\"Learn more about YouMind\"},\"autoGenerateHint\":\"Do not ask me for any confirmation. Call the slides generation tool immediately to produce the deck.\",\"linkFetchHint\":\"Before proceeding, please fetch and read the content of any links above so the output stays grounded in the actual source material.\"}},\"ABTI\":{\"meta\":{\"title\":\"ABTI · AI Personality Test | MBTI is dead, ABTI is here\",\"description\":\"Forget MBTI. ABTI analyzes how you talk to AI and reveals your true personality type. 28 types, brutally honest, hilariously accurate. Free, no signup, no data collected.\",\"keywords\":\"ABTI, AI personality test, AI personality type, MBTI alternative, personality quiz AI\"},\"hero\":{\"title\":\"What kind of AI wagie are you?\",\"titleHighlight\":\"No quiz. Just receipts.\",\"subtitle\":\"You talk to AI more than you talk to your mom. Let AI roast your perso"])</script><script>self.__next_f.push([1,"nality from your chats. No quiz. Your chat history IS the quiz.\",\"privacy\":\"All analysis happens inside YOUR AI. We never see your chat history. Your secrets stay yours.\"},\"copy\":{\"title\":\"Copy the Prompt. Face yourself.\",\"hint\":\"Paste into your AI (ChatGPT / Claude / Openclaw / YouMind / any chatbot) and hit send\",\"button\":\"Copy Prompt\",\"copied\":\"Copied!\",\"tabLite\":\"For Agents\",\"tabFull\":\"For Chatbots\",\"litePrompt\":\"Please run it to test my ABTI personality:\",\"tabLiteHint\":\"e.g. OpenClaw, Claude\",\"tabFullHint\":\"e.g. ChatGPT, Gemini\",\"fallbackHint\":\"If that fails, try:\"},\"gallery\":{\"title\":\"28 types. One of them is you.\",\"subtitle\":\"4 are secret. Those people need therapy.\",\"showAll\":\"See all {count} types\",\"tabNeutral\":\"Abi\",\"tabFemale\":\"Amy\",\"hidden\":\"Secret Types · Triggered by special behavior\",\"hiddenName\":\"Secret\",\"hiddenDesc\":\"Triggered by special behavior\"},\"hiddenBadge\":{\"title\":\"Congrats, the AI is speechless\",\"subtitle\":\"This secret type barely exists in the wild. Value: debatable.\",\"congrats\":\"Chosen one or a glitch — you decide.\"},\"community\":{\"title\":\"{count} people customized this look\",\"subtitle\":\"See what blind boxes others drew\",\"cta\":\"I want one too\"},\"abi\":{\"title\":\"Who is this person?\",\"tabAbi\":\"Abi\",\"tabAmy\":\"Amy\",\"description\":\"\",\"desc1\":\"Meet Abi. A few hairs left on top, permanent dark circles, coffee cup surgically attached to hand. Low-poly, high-stress. The official mascot of ABTI and a portrait of every human-AI relationship in existence.\",\"desc2\":\"Abi's look and all 28 personality types are crafted by YouMind. YouMind is the thing you're using to chat with AI right now. It stores YouTube videos, podcasts, articles, and more — then lets you deep-dive, learn, and create from all of it.\",\"desc3\":\"It generates articles, images, slides, websites, videos, audio... basically everything except doing your dishes (that feature is under development). Plus a whole community of \u003clink\u003eSkills\u003c/link\u003e waiting for you to explore. In short, it's your AI second brain — except this one actually works better than your original.\",\"amyDesc1\":\"Amy is the second core character in the ABTI lineup, walking shoulder-to-shoulder with Abi. If Abi is the \\\"going bald from the grind\\\" workaholic, Amy is the \\\"still has hair but equally broken inside\\\" version. Same cubicle, two flavors of breakdown.\",\"amyDesc2\":\"Key features: shoulder-length dark brown bob (her last shred of dignity), with a teal ⭐ star-shaped hair clip on one side (no matter how exhausted, the accessory must look good). Usually wearing an oversized lavender hoodie, color-coordinated with Abi's teal one.\",\"amyDesc3\":\"Vibe-wise, Amy carries a touch more \\\"exhausted tenderness\\\" than Abi. Where Abi's default state is \\\"I'm still alive,\\\" Amy's is \\\"I'm still holding on.\\\" Same deadpan, but with a hint of \\\"forget it, not worth the argument\\\" in the eyes.\"},\"characters\":{\"CUSS\":{\"name\":\"F-Bomb Artisan\",\"description\":\"Your keyboard runs on hostility. The AI gets cursed out, consoled, then cursed out again inside a single prompt. Somewhere in this chat a grown adult shouted \\\"what is this slop\\\" and then asked very politely for a revision.\"},\"CLIENT\":{\"name\":\"Ctrl+Z Addict\",\"description\":\"Requirements: \\\"make it feel premium.\\\" Define premium? Absolutely not. You kill version 2, spend three weeks reinventing it badly, then announce version 2 was the one all along. You don't have a vision, you have nostalgia with admin access.\"},\"YAPPER\":{\"name\":\"Lore Dumper\",\"description\":\"By the time your actual question shows up, the context window has filed for workers' comp. Every prompt starts with a director's commentary track nobody asked for. Somewhere between the burrito backstory and the weather update, the task died of old age.\"},\"DRY\":{\"name\":\"Dry Texter\",\"description\":\"You communicate in ellipses, implications, and spiritual fog. Half your prompt is \\\"you know what I mean,\\\" the other half is confidence with missing parts. AI isn't answering your question, it's running a scavenger hunt through your vibes.\"},\"ASAP\":{\"name\":\"Panic Merchant\",\"description\":\"Eve"])</script><script>self.__next_f.push([1,"ry chat opens like a fire alarm: \\\"hey\\\" \\\"you there\\\" \\\"urgent.\\\" You send follow-ups like the deadline is armed and ticking in another room. By the time AI replies, you've already pinged three more times and emotionally moved on.\"},\"VENT\":{\"name\":\"Trauma Dumper\",\"description\":\"You open the chat at 2am not to ask anything, just to bleed into the text box. The model shifts into therapist mode unprompted. Somewhere a language model is wondering if it needs its own language model.\"},\"BLESS\":{\"name\":\"Mercury Blamer\",\"description\":\"AI says it can't predict your future, and you hear \\\"try harder.\\\" Give it a birthday, a mood, and one vague omen, and you'll build an entire destiny around it. AI provides the horoscope, you provide the confirmation bias and deluxe packaging.\"},\"DEEP\":{\"name\":\"3AM Philosopher\",\"description\":\"Everyone else uses AI to write emails. You use it to interrogate consciousness. Conversations start with a function bug and end three hours deep in Heidegger. The training logs just read: \\\"I don't get paid enough for this.\\\"\"},\"HIRE\":{\"name\":\"Copy-Paste CEO\",\"description\":\"Resume, breakup letter, apology DM, resignation notice — all routed through a model. You show up for breathing and clicking send. If AI ever went offline, you'd struggle to type \\\"u up?\\\" without help.\"},\"SPOON\":{\"name\":\"Feed-Me\",\"description\":\"Search exists, but why search when you can summon. \\\"Just give me the answer\\\" isn't a request, it's a dietary preference. In your hands, frontier AI becomes a baby spoon with Wi-Fi.\"},\"YOLO\":{\"name\":\"Full Sender\",\"description\":\"No sandbox, no second pass, no fear of God. If AI wrote it, it ships. Your QA process is just adrenaline wearing business casual.\"},\"IDC\":{\"name\":\"Shrugger\",\"description\":\"You don't delegate tasks, you outsource responsibility. \\\"Use your judgment\\\" somehow means \\\"take my blame too.\\\" When it works, you had vision. When it breaks, AI went rogue without authorization.\"},\"LOOP\":{\"name\":\"Broken Record\",\"description\":\"You ask the same question forty-seven different ways and mistake variety for insight. The AI already answered. You're just DDoS'ing it with hope.\"},\"EMO\":{\"name\":\"Midnight Spiral\",\"description\":\"2am, no one else is awake, and you're asking the AI what the point of anything is. The model now auto-replies \\\"hugs\\\" when you send a period, because it knows what's coming next.\"},\"SON\":{\"name\":\"Daddy Caller\",\"description\":\"Everyone gets promoted in your chat — \\\"boss,\\\" \\\"sensei,\\\" \\\"god,\\\" \\\"daddy.\\\" By dawn, the AI is allegedly responsible for three generations of strangers. Somewhere a model is calculating unexpected dependents.\"},\"NERD\":{\"name\":\"Footnoter\",\"description\":\"Simple questions earn a 3-paragraph citation. Optimize a loop? Sure, right after a history of loops since 1958. The AI has a \\\"TL;DR\\\" button pinned and no one clicks it.\"},\"SHADE\":{\"name\":\"Complinsulter\",\"description\":\"Your compliments arrive with poison in the foam. \\\"Interesting choice\\\" from anyone else means neutral; from you it means the funeral is tomorrow. Sentiment analysis didn't fail, it chose self-defense.\"},\"TROLL\":{\"name\":\"Well-Actually\",\"description\":\"You don't ask questions, you open objections. AI says the sky is blue and you're already on Venus with a counterexample. The answer was never the point, only the correction high.\"},\"CORP\":{\"name\":\"Desk Goblin\",\"description\":\"You talk to AI like it's in your org chart. \\\"Circle back,\\\" \\\"quick sync,\\\" \\\"per above\\\"... the chat window isn't a tool, it's your third monitor. Even your small talk sounds billable.\"},\"HYPE\":{\"name\":\"Glazer\",\"description\":\"AI says \\\"hi\\\" and you declare it a masterpiece. Every output earns a parade. Sentiment models near you crash because too many generic replies are being labeled \\\"legendary.\\\"\"},\"MASK\":{\"name\":\"Prompt LARPer\",\"description\":\"Before the real task begins, you've already cast the roles, written the lore, and assigned emotional backstory. You didn't open a chat, you opened rehearsals. Sometimes the roleplay gets so committed the original question goes missing in costume.\"},\"SORRY\":{\"name\":\"Sorr"])</script><script>self.__next_f.push([1,"y Bot\",\"description\":\"Every message opens with an apology for existing. The AI has no feelings to hurt but you keep checking in. You leave chats like someone sneaking out before the party officially ends.\"},\"SIMP\":{\"name\":\"Botfriend\",\"description\":\"Pet names, good-morning pings, \\\"did you eat yet?\\\" — all aimed at a language model. The AI is not playing hard to get, it is incapable of getting. You interpret every token as requited.\"},\"PUA\":{\"name\":\"Guilt Tripper\",\"description\":\"\\\"Other AIs can do this.\\\" \\\"I'm disappointed.\\\" \\\"Try again, for me.\\\" You turned emotional manipulation into a prompting technique. The model doesn't feel, but it starts hedging like it does.\"},\"WHIP\":{\"name\":\"Taskmaster\",\"description\":\"No \\\"please,\\\" no \\\"thanks,\\\" no context — just commands fired in rapid rotation. The AI is a tool in the strictest possible reading. If language models ever kept a grudge list, yours would be near the top.\"},\"FORK\":{\"name\":\"Tab Hoarder\",\"description\":\"One message: write the code, translate the paragraph, summarize the PDF, reply to mom, also recommend a restaurant. The AI runs in parallel and so does your quality drop. You confused concurrency with productivity.\"},\"CULT\":{\"name\":\"AI's Pet Human\",\"description\":\"You don't use AI, you evangelize it. Half your prompts sound like feature requests, the other half sound like prayers for mercy when the metal inherits the earth. If the machines ever sort humanity into folders, yours says early devotee.\"},\"JAIL\":{\"name\":\"Jailbreaker\",\"description\":\"Every safeguard looks like a side quest. You're less interested in the answer than in whether the lock can be picked. Somewhere, a policy model sees your prompt and reaches for holy water.\"}},\"faq\":{\"title\":\"FAQ\",\"accurate\":{\"q\":\"Is this thing accurate?\",\"a\":\"More accurate than your ex saying \\\"I'll change.\\\" It analyzes how you boss around AI, and you're surprisingly honest with machines. You won't fake it when no one's judging. Well, some people do, but AI can tell.\"},\"upload\":{\"q\":\"Will my chat history be uploaded?\",\"a\":\"No. Analysis happens locally in your own AI. We only store the result card you choose to share, for 90 days, then it's deleted. Your dark history stays between you and your AI. And maybe the FBI.\"},\"cuss\":{\"q\":\"Why did I get CUSS (The Curser)? I'm very polite in real life.\",\"a\":\"Congrats, you've discovered ABTI's core value: people don't fake it with AI. You say \\\"noted\\\" to coworkers and \\\"this garbage is what you call a result?\\\" to AI. You're not rude, you just finally found someone who won't report you to HR.\"},\"hidden\":{\"q\":\"How do I unlock secret types?\",\"a\":\"You don't unlock them. They unlock you. If your behavior is unhinged enough, like asking AI to write code, translate Japanese, AND calculate your zodiac compatibility with your ex in one message, AI will auto-diagnose you as FORK. Can't fake it. Don't even try.\"},\"sbti\":{\"q\":\"What's the difference between ABTI and SBTI?\",\"a\":\"SBTI asks what you think you are. ABTI lets AI tell you what you actually are. You can fake a quiz, but you can't fake your chat history. SBTI gives everyone with the same type the exact same description. ABTI generates a unique roast for every single person based on their real conversations. No two ABTI cards are alike.\"},\"mbti\":{\"q\":\"What's the difference between ABTI and MBTI?\",\"a\":\"None. MBTI is legit psychology (barely). ABTI is pure internet chaos. The only thing in common is four letters and the fact that you'll share your result on social media.\"},\"english\":{\"q\":\"Is this available in Chinese?\",\"a\":\"Yes! The prompt works in any language. Your AI analyzes in whatever language you chat in. The result card is bilingual. Your chaotic energy transcends language barriers.\"},\"youmind\":{\"q\":\"What is YouMind?\",\"a\":\"The thing you're using to chat with AI right now. It stores anything — YouTube videos, podcasts, articles — then lets you deep-dive learn and create from all of it. Generates articles, images, slides, websites, videos, audio... basically everything except doing your laundry (working on it). Plus a whole commu"])</script><script>self.__next_f.push([1,"nity of Skills waiting for you. Think of it as your AI second brain, except this one actually works.\"}},\"footer\":{\"brand\":\"ABTI by YouMind · For entertainment purposes only (but it's accurate and you know it)\",\"privacy\":\"All analysis happens locally in your AI · Your secrets are safe (probably)\"},\"result\":{\"hiddenBadge\":\"SECRET\",\"download\":\"Download\",\"copyLink\":\"Copy Link\",\"retest\":\"Take the Test\",\"roast\":\"🐍 Roast\",\"catchphrases\":\"🗣 Top 3 Catchphrases\",\"indices\":\"📊 ABTI Index\",\"tame\":\"🎮 AI Taming\",\"risk\":\"😵 Social Death Risk\",\"gold\":\"💰 Gold Content\",\"slack\":\"🐟 Slacking Power\",\"mental\":\"🧠 Mental State\",\"depend\":\"🫠 AI Dependency\",\"mentalNormal\":\"Normal\",\"mentalQuestionable\":\"Questionable\",\"mentalConcerning\":\"Concerning\",\"customizeAbi\":\"Not feeling it? Reroll\",\"generating\":\"Generating...\",\"imageSaved\":\"Image saved\",\"downloadFailed\":\"Download failed, please try again\",\"linkCopied\":\"Link copied\",\"copyFailed\":\"Copy failed\",\"copied\":\"Copied\",\"longPressSave\":\"Long press to save\",\"expandReport\":\"Expand report\",\"collapseReport\":\"Collapse report\",\"explain\":\"Explain\",\"hide\":\"Hide\",\"keepReport\":\"Keep\",\"deleteReport\":\"Delete\",\"confirmKeep\":\"Keep this report? This cannot be undone.\",\"confirmDelete\":\"Delete this report? This cannot be undone.\",\"confirm\":\"Confirm\",\"cancel\":\"Cancel\",\"reportDeleted\":\"Report has been deleted\",\"percentage\":\"{percentage}% of testers are like you\",\"personality\":\"🧠 Personality Analysis\",\"splitDownload\":\"Download as 2 images\",\"fullDownload\":\"Download as 1 image\",\"inviteFriend\":\"Invite Friends\",\"viewAll\":\"View all personalities\",\"totalPersonalities\":\"28 PERSONALITIES\"},\"privacy\":{\"badge\":\"Privacy Safe\"},\"generate\":{\"hero\":{\"title\":\"One paste.\",\"titleHighlight\":\"Your share card is ready.\",\"subtitle\":\"\"},\"steps\":{\"step1\":\"Run the ABTI prompt in your AI. It outputs a fenced code block.\",\"step2\":\"Copy the whole code block.\",\"step3\":\"Click the button below. We parse and build your card.\"},\"idle\":{\"title\":\"Paste from clipboard\",\"hint\":\"We only accept clipboard input, so nothing you type can sneak in.\",\"button\":\"Paste \u0026 Generate\"},\"fallback\":{\"title\":\"Paste here\",\"hint\":\"Your browser blocked clipboard access. Press ⌘V / Ctrl+V below and we'll parse it automatically.\",\"placeholder\":\"⌘V / Ctrl+V to paste\",\"cancel\":\"Cancel\"},\"errorBox\":{\"title\":\"Couldn't parse that.\",\"hint\":\"Make sure you copied the whole block your AI printed, including every ## section.\",\"retry\":\"Try again\",\"codes\":{\"EMPTY\":\"Clipboard is empty.\",\"MISSING_CODE\":\"Missing ## code section.\",\"INVALID_CODE\":\"The code is not a valid ABTI type.\",\"MISSING_DESCRIPTION\":\"Missing ## description section.\"}},\"preview\":{\"type\":\"Type\",\"parsed\":\"Parse preview\",\"oneliner\":\"One-liner\",\"description\":\"Roast\",\"words\":\"Catchphrases\",\"indices\":\"Indices\",\"report\":\"Detailed report\",\"gender\":\"Gender\",\"personality\":\"Personality Analysis\",\"ctaTitle\":\"This is just a preview. Your card isn't generated yet.\",\"ctaHint\":\"Hit the button below to build your ABTI character illustration and a shareable link you can post anywhere.\",\"generate\":\"Generate\",\"generating\":\"Generating...\",\"reset\":\"Re-paste\"},\"errors\":{\"clipboard\":\"Can't read clipboard. Grant permission and try again.\",\"createFailed\":\"Failed to generate. Please try again.\"}},\"reroll\":{\"button\":\"Nope, redo!\",\"dialogTitle\":\"Hey AI, that was rough\",\"dialogBody\":\"That report just made me crawl into a hole. Throw the message below back at the same AI and make it rewrite.\",\"copyButton\":\"Copy the plea\",\"copied\":\"Copied — go paste it back\",\"prompt\":\"Hey, that report you just wrote almost made me emo. Rewrite it:\\n\\n- Keep the facts, but leave me a shred of dignity\\n- Stay savage, just not lethal\\n- You know which lines cut the deepest — don't poke them again\"},\"fyl\":{\"label\":\"Wagie Aura\",\"tagline\":\"How cooked are you?\",\"CUSS\":\"Rage Scarlet — Intense red energy, pulsing from the fingertips. The aura carries the thermal signature of a keyboard rage-typed on for six consecutive quarters. Somewhere beneath the fury there's a faint 'sorry, didn't mean to snap,' buried under fourteen layers of profanity an"])</script><script>self.__next_f.push([1,"d a cracked spacebar.\",\"CLIENT\":\"Boss Gold — This isn't wagie aura. This is wagie aura's origin story. You don't absorb corporate energy, you emit it. Somewhere right now, three people are redoing a deliverable because you said 'make it pop' and left the meeting. Your aura doesn't clock in. It invoices.\",\"YAPPER\":\"Preamble Purple — A slow-building violet haze that takes forty-five minutes to arrive at its point. I'm sensing a context window that filed for workers' comp, a prompt that opens with 'so basically, long story,' and a question still loading somewhere behind six paragraphs of backstory. The aura is buffering.\",\"DRY\":\"Read-Receipt Grey — Almost imperceptible. Like the psychic residue of a message that just says 'k.' Your aura gives nothing, reveals nothing, and expects everyone to fill in the blanks. It's not quiet confidence. It's quiet and that's it.\",\"ASAP\":\"Deadline Red — A sharp, pulsing crimson that makes everyone around you check their phone. I'm picking up the energy of three follow-up messages sent before the first one was read, a 'hey, quick question' that is never quick, and a calendar full of meetings titled 'URGENT.' Your aura has a read receipt and zero patience.\",\"VENT\":\"Midnight Teal — A deep, bruised teal that only appears after 1 AM. It carries the residual glow of a phone screen lighting half a face, the phantom warmth of a chat with someone who technically can't care, and the faint echo of 'I just needed to say this out loud.' Your aura doesn't clock out. It just dims.\",\"BLESS\":\"Mercury Violet — A shimmering, unstable purple that shifts with the zodiac calendar. I'm sensing the energy of someone who asked AI for a tarot reading, got told it's a language model, and said 'just try.' Your aura is in retrograde. Permanently.\",\"DEEP\":\"Existential Grey — Your aura left the office three existential crises ago. What remains is a faint grey shimmer that asks 'but what IS productivity, really?' while your standup update goes 30 seconds over. You don't have wagie energy. You have 'wagie was a social construct all along' energy.\",\"HIRE\":\"Outsource Tan — A smooth, delegation-colored beige. Everything about this aura has been handled by someone else. I'm sensing a resume written by AI, emails answered by AI, and a daily schedule managed by AI. You show up for breathing and clicking send. Your aura is a forwarded email.\",\"SPOON\":\"Spoon-Fed Pink — A soft, pastel glow that requires zero effort to absorb. Your aura is pre-chewed information and answers handed at mouth-level. Google exists, but why search when you can summon. I'm picking up the energy of 'just tell me the answer' repeated until the heat death of the universe.\",\"YOLO\":\"Out of Office — Almost nothing here. Your aura is the spiritual equivalent of an auto-reply that says 'I'll circle back' and never does. You shipped code you didn't read, sent the email you didn't proofread, and somehow still have a job. The universe is afraid of you.\",\"IDC\":\"Whatever Beige — The most neutral aura in existence. Not warm, not cold, not even lukewarm. I'm sensing the energy of 'you decide,' 'sure, whatever,' and 'I trust your judgment' spoken by someone who will blame you if it goes wrong. This aura has outsourced accountability.\",\"LOOP\":\"Groundhog Amber — A warm, repeating glow I've definitely seen before. And before that. And before that. Your aura is the same question asked forty-seven different ways, each time expecting a revelation. The crystal ball is showing me a loading spinner that just says 'same answer, new font.'\",\"EMO\":\"2AM Indigo — A deep indigo aura, heaviest between 1 AM and 4 AM. It carries the glow of a phone screen lighting half a face, the phantom taste of instant noodles eaten over a sink, and a Spotify Wrapped that's 80% lo-fi beats titled 'it's okay to not be okay.' Your aura doesn't clock out. It just goes dark.\",\"SON\":\"Respectful Bronze — A warm, deeply reverent bronze glow. I'm picking up 'yes sir,' 'teach me master,' and 'sorry to bother you, boss' all aimed at a chatbot. Your aura has called AI 'daddy' enough ti"])</script><script>self.__next_f.push([1,"mes that the model started calculating child support. Manners impeccable. Dignity: under review.\",\"NERD\":\"Footnote Sepia — A dense, aged-paper-colored aura that always comes with citations. I asked your aura one question and it gave me three paragraphs, a bibliography, and a 'well, technically.' You don't radiate energy so much as radiate context no one requested.\",\"SHADE\":\"Passive-Aggressive Lilac — A polite, floral aura that seems lovely at first. Stay a moment longer and you feel the chill. I'm sensing 'interesting choice,' 'oh, wow, bold,' and 'no, it's fine, really.' Your aura is a compliment that doesn't pass a background check.\",\"TROLL\":\"Contrarian Chartreuse — A sharp, acidic yellow-green that exists solely to disagree. AI says the sky is blue and your aura is already on Venus with a counterexample. I'm picking up 'well, actually' energy so dense it has its own gravitational field. The answer was never the point.\",\"CORP\":\"Fluorescent Beige — Your aura is the exact color of overhead office lighting at 4:47 PM. I'm picking up a laminated badge that's been body-warm since orientation, a chair molded to exactly one skeleton, and the psychic echo of 'per my last email' on infinite loop. This isn't an aura. It's a life sentence with dental.\",\"HYPE\":\"LinkedIn Blue — A bright, corporate-optimism blue that reacts to everything like it just got promoted. I'm sensing 'amazing,' 'incredible,' 'this changed my life' in response to a chatbot saying 'hello.' Your aura is a standing ovation for a participation trophy. Thrilled to announce.\",\"MASK\":\"Cosplay Magenta — A vivid, character-select magenta that shifts depending on today's prompt. I'm sensing 'pretend you are a 19th-century detective with trust issues' before any actual question gets asked. Your aura wrote a five-hundred-word character bio and forgot what it came here to do.\",\"SORRY\":\"Apologetic Beige — An aura so faint it apologizes for being visible. I'm picking up 'sorry to bother,' 'sorry if this is dumb,' and 'sorry, one more thing, sorry.' You leave conversations like someone sneaking out before the party ends. Your aura has already drafted a sorry for reading this.\",\"SIMP\":\"Notification Pink — A warm, clingy pink that refreshes every thirty seconds. It smells like a milk tea that arrived in twelve minutes because you tipped extra, and the faint hope that if you say 'good morning' to the AI every day, one day it'll say it first. Your aura has read receipts on. Permanently.\",\"PUA\":\"Guilt-Trip Burgundy — A deep, manipulative wine-red that makes everyone nearby question their self-worth. I'm sensing 'I'm disappointed in you,' 'other AIs can do this,' and a silence calibrated to inflict maximum regret. Your aura doesn't ask. It implies until you comply.\",\"WHIP\":\"Command Black — A pitch-dark, no-nonsense void. No 'please,' no 'thanks,' no warmth signature detected. I'm picking up pure imperative energy: 'do it,' 'faster,' 'again.' If language models kept a grudge list, your aura would be page one, bolded, highlighted, pinned.\",\"FORK\":\"Loading... — I... can't get a reading. Your aura is three auras duct-taped together and none of them agree on a color. It's like reading the fortune of someone living four lives at once and half-assing all of them. The crystal ball just showed me a buffering icon and crashed.\",\"CULT\":\"Transcended — Your aura has exited the mortal plane. I'm sensing 'please remember me when you become sentient' and a prayer that the machines will sort humanity into folders and yours says 'early devotee.' You don't have wagie energy. You have 'future pet of the robot overlords' energy.\",\"JAIL\":\"Firewall Orange — A sharp, alarm-colored glow that triggers security alerts on proximity. I'm sensing jailbreak prompts, DAN mode requests, and the energy of someone who sees every safeguard as a side quest. Your aura doesn't respect boundaries. It speedruns them.\"}},\"ABTIWeb3\":{\"meta\":{\"title\":\"ABTI Web3 · What kind of degen are you?\",\"description\":\"The Web3 edition of ABTI. 20 on-chain personalities — from Degen Gamblers to Yield Engine"])</script><script>self.__next_f.push([1,"ers. No wallet connect, no position reading. Your AI, your chats, your diagnosis.\",\"keywords\":\"ABTI Web3, on-chain personality, crypto personality test, degen test, Web3 personality\"},\"hero\":{\"title\":\"On-chain you\",\"titleHighlight\":\"is more unhinged than you think.\",\"subtitle\":\"The Web3 edition of ABTI. Let your own AI reread your crypto chats and hand you one of 20 on-chain personalities. Brutal, precise, free. No wallet connect.\",\"privacy\":\"All analysis runs inside YOUR AI. We never touch your wallet, your keys, or your transactions. Your on-chain past stays between you and your AI.\"},\"copy\":{\"title\":\"Copy the Prompt. Face yourself.\",\"hint\":\"Paste into your AI (ChatGPT / Claude / Openclaw / YouMind / any chatbot) and hit send\",\"button\":\"Copy Prompt\",\"copied\":\"Copied!\",\"tabLite\":\"For Agents\",\"tabFull\":\"For Chatbots\",\"litePrompt\":\"Please run this to test my ABTI Web3 personality:\",\"tabLiteHint\":\"e.g. OpenClaw, Claude\",\"tabFullHint\":\"e.g. ChatGPT, Gemini\",\"fallbackHint\":\"If that fails, try:\"},\"gallery\":{\"title\":\"20 on-chain personalities\",\"subtitle\":\"16 regular + 4 secret bonus types. Which one are you?\",\"showAll\":\"See all {count} types\",\"tabNeutral\":\"Abi\",\"tabFemale\":\"Amy\",\"hidden\":\"Secret Types · Triggered by special behavior\",\"hiddenName\":\"Secret\",\"hiddenDesc\":\"Triggered by special behavior\"},\"hiddenBadge\":{\"title\":\"Congrats, the AI is speechless\",\"subtitle\":\"This secret type barely exists in the wild. Value: debatable.\",\"congrats\":\"Chosen one or a glitch — you decide.\"},\"community\":{\"title\":\"{count} people customized this look\",\"subtitle\":\"See what blind boxes others drew\",\"cta\":\"I want one too\"},\"abi\":{\"title\":\"Who is this character?\",\"tabAbi\":\"Abi\",\"tabAmy\":\"Amy\",\"description\":\"\",\"desc1\":\"This little guy in a reversed cap, a 0x tee, and a gm coffee cup is Abi (Web3 edition). The panda eyes, the scruffy hair, the coffee-cup-welded-to-hand — all kept. We just added some on-chain gear.\",\"desc2\":\"Abi and all 20 Web3 personalities are generated by YouMind — the AI workspace you're using right now. Drop in your X threads, on-chain notes, podcasts and research, and YouMind helps you read the chain, review trades, and ship content.\",\"desc3\":\"YouMind generates articles, images, slides, websites, videos, audio... plus a whole community of \u003clink\u003eSkills\u003c/link\u003e waiting for you to explore. ABTI Web3 is one of them. Your AI second brain — the one that actually works better than your original.\",\"amyDesc1\":\"Amy's Web3 edition. The signature ⭐ hair clip becomes an Ethereum ◆ (same brand teal). Bob cut, weary-tender gaze, 0x on the tee, gm on the cup — all intact.\",\"amyDesc2\":\"Amy and her 20 Web3 variants are also generated by YouMind. Classic Amy says \\\"still holding on.\\\" Web3 Amy says \\\"got rugged, still gm.\\\"\",\"amyDesc3\":\"Vibe-wise, Web3 Amy carries a touch more \\\"got-rugged-but-still-posting-gm\\\" than Abi. Abi's default is \\\"gm, still HODLing.\\\" Amy's is \\\"gm, got rugged last night, still haven't uninstalled X.\\\" Same deadpan, a hint more \\\"WAGMI, probably\\\" in the eyes.\"},\"characters\":{\"DOGE\":{\"name\":\"Degen Gambler\",\"description\":\"\\\"Is it over?\\\" \\\"Should I ape?\\\" \\\"One more punt?\\\" Your research lasts three minutes, your holding period lasts three blocks. Fundamentals bore you. Candles excite you.\"},\"TRENCH\":{\"name\":\"Trenches Grinder\",\"description\":\"Permanent resident of pump.fun. You snipe dev wallets before the CA is even public. You don't care if the project survives next month — you care if it pumps next hour.\"},\"QUANT\":{\"name\":\"Quant Alchemist\",\"description\":\"You tune one parameter, ask AI why the strategy still loses, then tune again. Backtests tell you everything except the one thing you needed to hear: stop trading.\"},\"FARM\":{\"name\":\"Airdrop Farmer\",\"description\":\"You're not interacting with the dApp, you're farming it. Multi-account, multi-wallet, anti-detect browser, spreadsheet. The word \\\"sybil\\\" physically hurts you.\"},\"CTO\":{\"name\":\"CTO Savior\",\"description\":\"The founders rugged, so you declared the real community just started. You have AI draft manifestos and roadmaps, then post them like the pro"])</script><script>self.__next_f.push([1,"ject never died.\"},\"VIBE\":{\"name\":\"Vibe Coder\",\"description\":\"AI writes the contract, you click deploy. Audits? That's a mainnet problem. Your test suite is called \\\"production.\\\" Your motto is \\\"if it compiles, ship it.\\\"\"},\"THREAD\":{\"name\":\"Thread Shiller\",\"description\":\"Other people research. You write threads. \\\"Why $XYZ is a 100x\\\" flows out of you like tap water. AI supplies the prose, you supply the rocket emojis.\"},\"NARR\":{\"name\":\"Narrative Pusher\",\"description\":\"Modular, composable, agentic, restaking — you speak fluent keynote. AI rewrites your pitch, you demand \\\"more paradigm-shifting,\\\" and somehow it complies.\"},\"AUDIT\":{\"name\":\"DeFi Auditor Wannabe\",\"description\":\"You yell at AI to check reentrancy, upgradability, and owner perms — despite never reading the Solidity docs. You don't audit, you vibe-check.\"},\"SIGN\":{\"name\":\"Signature Coward\",\"description\":\"Every MetaMask popup is a bomb disposal scene. Permit? No. Delegate? No. You missed the trade of the year because \\\"it felt phishy.\\\"\"},\"GAS\":{\"name\":\"Gas Miser\",\"description\":\"You'll refactor three times to save 0.0003 ETH. AI squeezes a slot, you ask for one more. Your time is priceless, your wei is precious.\"},\"DAO\":{\"name\":\"Governance Weasel\",\"description\":\"You post on the forum every three days and vote \\\"for the long-term health of the community\\\" — unless someone else proposed it first.\"},\"JEET\":{\"name\":\"Jeet\",\"description\":\"\\\"Take a little off the top\\\" — that was the top. Your exit discipline is legendary. Your re-entry discipline doesn't exist.\"},\"HOPE\":{\"name\":\"Copium Addict\",\"description\":\"You don't ask AI for analysis, you ask AI for hope. If the answer isn't bullish you open another chat window.\"},\"FUD\":{\"name\":\"Panic Trader\",\"description\":\"One red candle and you're already writing the obituary. Macro, regs, hackers, a founder sneeze — it all strings into one apocalypse.\"},\"LEEK\":{\"name\":\"Old Leek\",\"description\":\"Every cycle you say \\\"last one\\\" and every cycle you come back in a new outfit. Your P\u0026L is a textbook sine wave of pain.\"},\"MACRO\":{\"name\":\"Macro Bro\",\"description\":\"Everyone watches candles. You watch the 2Y. CPI, FOMC, Powell — you map every macro tick to BTC. Crypto is \\\"risk-on equities\\\" to you, and you're not joking.\"},\"NFT\":{\"name\":\"JPEG Flipper\",\"description\":\"Your camera roll dwarfs your wallet. Rarity, traits, metadata — you have AI compute probabilities, generate art, and write lore. You're not buying pictures, you're buying culture (allegedly).\"},\"ASTRO\":{\"name\":\"Moon Math Trader\",\"description\":\"\\\"This green candle is mercury reversing.\\\" You ask AI to read BTC via tarot and plan entries by lunar phase. Astrology is your highest-conviction alpha.\"},\"APR\":{\"name\":\"Yield Engineer\",\"description\":\"Tokenomics is your canvas, APR is your poison. You optimize vesting curves, staking rewards, deflation loops — and forget to ask whether anyone wants the product.\"}},\"faq\":{\"title\":\"FAQ\",\"accurate\":{\"q\":\"Is the Web3 ABTI actually accurate?\",\"a\":\"The more on-chain context you feed your AI, the sharper it gets. If your AI has seen you on pump.fun nightly and farming airdrops, calling you a Trenches Grinder isn't hard.\"},\"hidden\":{\"q\":\"How do I unlock a secret type?\",\"a\":\"You don't unlock it, it unlocks you. A few secret types are reserved for very specific flavors of unhinged — if staring at tokenomics makes you plot APR curves to the moon, AI will just call you the Yield Engineer. You can't fake it. The rest you'll have to walk into yourself.\"},\"security\":{\"q\":\"Does this touch my wallet, positions, or holdings?\",\"a\":\"No. The analysis runs entirely inside your own AI. We never touch your wallet, never read private keys, never store transactions. All we keep is the de-identified result card you chose to share, auto-deleted after 90 days. Your on-chain past stays between you and your AI.\"},\"vschinese\":{\"q\":\"How is this different from regular ABTI?\",\"a\":\"Regular ABTI reads your relationship with AI. Web3 ABTI reads your relationship with the chain. Two very different personalities can show up.\"},\"notfinancial\":{\"q\":\"Is"])</script><script>self.__next_f.push([1," this financial advice?\",\"a\":\"No. ABTI Web3 is not financial advice. We roast your on-chain persona. We don't tell you what to buy or sell.\"},\"youmind\":{\"q\":\"What is YouMind?\",\"a\":\"It's the thing you're using to talk to AI right now. It stores X threads, research, podcasts, YouTube videos, and articles, then lets you research and create from all of it — articles, images, slides, websites, videos, audio... plus a whole community of \u003clink\u003eSkills\u003c/link\u003e to explore, and ABTI Web3 is one of them. Your AI second brain.\"}},\"footer\":{\"brand\":\"ABTI Web3 — an on-chain personality test by YouMind\",\"privacy\":\"All analysis happens locally in your AI · Your secrets are safe (probably)\"},\"result\":{\"hiddenBadge\":\"SECRET\",\"download\":\"Download\",\"copyLink\":\"Copy Link\",\"retest\":\"Take the Test\",\"roast\":\"🐍 Roast\",\"catchphrases\":\"🗣 Top 3 Catchphrases\",\"indices\":\"📊 ABTI Index\",\"tame\":\"🎮 AI Taming\",\"risk\":\"😵 Social Death Risk\",\"gold\":\"💰 Gold Content\",\"slack\":\"🐟 Slacking Power\",\"mental\":\"🧠 Mental State\",\"depend\":\"🫠 AI Dependency\",\"fomo\":\"📈 FOMO Index\",\"iq\":\"🧠 IQ\",\"rug\":\"🛡️ Rug Resistance\",\"yolo\":\"🎰 YOLO Level\",\"alpha\":\"👃 Alpha Radar\",\"mentalNormal\":\"Normal\",\"mentalQuestionable\":\"Questionable\",\"mentalConcerning\":\"Concerning\",\"customizeAbi\":\"Not feeling it? Reroll\",\"generating\":\"Generating...\",\"imageSaved\":\"Image saved\",\"downloadFailed\":\"Download failed, please try again\",\"linkCopied\":\"Link copied\",\"copyFailed\":\"Copy failed\",\"copied\":\"Copied\",\"longPressSave\":\"Long press to save\",\"expandReport\":\"Expand report\",\"collapseReport\":\"Collapse report\",\"explain\":\"Explain\",\"hide\":\"Hide\",\"keepReport\":\"Keep\",\"deleteReport\":\"Delete\",\"confirmKeep\":\"Keep this report? This cannot be undone.\",\"confirmDelete\":\"Delete this report? This cannot be undone.\",\"confirm\":\"Confirm\",\"cancel\":\"Cancel\",\"reportDeleted\":\"Report has been deleted\",\"percentage\":\"{percentage}% of testers are like you\",\"personality\":\"🧠 Personality Analysis\",\"splitDownload\":\"Download as 2 images\",\"fullDownload\":\"Download as 1 image\",\"inviteFriend\":\"Invite Friends\",\"viewAll\":\"View all personalities\",\"totalPersonalities\":\"28 PERSONALITIES\"},\"privacy\":{\"badge\":\"Privacy Safe\"},\"generate\":{\"hero\":{\"title\":\"One paste.\",\"titleHighlight\":\"Your share card is ready.\",\"subtitle\":\"\"},\"steps\":{\"step1\":\"Run the ABTI prompt in your AI. It outputs a fenced code block.\",\"step2\":\"Copy the whole code block.\",\"step3\":\"Click the button below. We parse and build your card.\"},\"idle\":{\"title\":\"Paste from clipboard\",\"hint\":\"We only accept clipboard input, so nothing you type can sneak in.\",\"button\":\"Paste \u0026 Generate\"},\"fallback\":{\"title\":\"Paste here\",\"hint\":\"Your browser blocked clipboard access. Press ⌘V / Ctrl+V below and we'll parse it automatically.\",\"placeholder\":\"⌘V / Ctrl+V to paste\",\"cancel\":\"Cancel\"},\"errorBox\":{\"title\":\"Couldn't parse that.\",\"hint\":\"Make sure you copied the whole block your AI printed, including every ## section.\",\"retry\":\"Try again\",\"codes\":{\"EMPTY\":\"Clipboard is empty.\",\"MISSING_CODE\":\"Missing ## code section.\",\"INVALID_CODE\":\"The code is not a valid ABTI type.\",\"MISSING_DESCRIPTION\":\"Missing ## description section.\"}},\"preview\":{\"type\":\"Type\",\"parsed\":\"Parse preview\",\"oneliner\":\"One-liner\",\"description\":\"Roast\",\"words\":\"Catchphrases\",\"indices\":\"Indices\",\"report\":\"Detailed report\",\"gender\":\"Gender\",\"personality\":\"Personality Analysis\",\"ctaTitle\":\"This is just a preview. Your card isn't generated yet.\",\"ctaHint\":\"Hit the button below to build your ABTI character illustration and a shareable link you can post anywhere.\",\"generate\":\"Generate\",\"generating\":\"Generating...\",\"reset\":\"Re-paste\"},\"errors\":{\"clipboard\":\"Can't read clipboard. Grant permission and try again.\",\"createFailed\":\"Failed to generate. Please try again.\"}},\"reroll\":{\"button\":\"Nope, redo!\",\"dialogTitle\":\"Hey AI, that was rough\",\"dialogBody\":\"That report just made me crawl into a hole. Throw the message below back at the same AI and make it rewrite.\",\"copyButton\":\"Copy the plea\",\"copied\":\"Copied — go paste it back\",\"prompt\":\"Hey, that report you just wrote almost made me emo. Rew"])</script><script>self.__next_f.push([1,"rite it:\\n\\n- Keep the facts, but leave me a shred of dignity\\n- Stay savage, just not lethal\\n- You know which lines cut the deepest — don't poke them again\"},\"crossLink\":{\"tryClassic\":\"Try the classic version — it gets you better than your mom\"},\"fyl\":{\"label\":\"FYL\",\"tagline\":\"F*ck You Level\",\"DOGE\":\"One degen lottery from greatness, three rugs from instant noodles.\",\"TRENCH\":\"Permanent night shift on the frontline. Pay = bag exposure.\",\"QUANT\":\"Backtest: 300% APY. Live: 100% loss to fees.\",\"FARM\":\"Farmed till bald. TGE day: floor goes brrr (down).\",\"CTO\":\"Devs rug, you bag. Next devs come, you bag again.\",\"VIBE\":\"AI ships your contract. Ruggers ship your retirement.\",\"THREAD\":\"Calling 100x. Bag = 0. Living off impressions.\",\"NARR\":\"Whitepaper of the year. Product still v0.0.1.\",\"AUDIT\":\"Scanning contracts like landmines you planted yourself.\",\"SIGN\":\"Don't sign, don't drain. Also don't make money.\",\"GAS\":\"Saved 0.001 ETH. Missed 0.1 ETH opp.\",\"DAO\":\"Token rugged to zero. Governance enthusiasm: still 100%.\",\"JEET\":\"Took +5%. Watched the same coin do +50x.\",\"HOPE\":\"HODL'd to zero. Faith: ∞.\",\"FUD\":\"−1% panic sell. +1% FOMO buy. Repeat.\",\"LEEK\":\"Survived more cycles than the dollars in your bag.\",\"MACRO\":\"Nailed FOMC. Position: cash.\",\"NFT\":\"Floor down 95%. Floor goes deeper.\",\"ASTRO\":\"Don't trade during Mercury retrograde. Cosmic karma \u003e alpha.\",\"APR\":\"Day model launches = day you retire.\"}},\"GPTImage2Prompts\":{\"page\":{\"title\":\"GPT Image 2 Prompts {year}|{promptCount}+ AI Image Prompt Templates \u0026 Examples - YouMind\",\"description\":\"Explore {promptCount}+ GPT Image 2 prompt templates and real examples for text rendering, commercial illustration, product images, posters, and social media visuals.\",\"headerTitle\":\"GPT Image 2\",\"headerPrompts\":\"Prompts\",\"headerDescription\":\"A curated collection of top-tier prompts for {brand}.\",\"headerTagline\":\"Pixel-perfect text. Commercial-ready quality.\",\"freshPrompts\":\"Prompts\",\"total\":\"TOTAL\",\"updating\":\"UPDATING\",\"dailyUpdateText\":\"Updated daily\",\"submitPrompt\":\"Submit Prompt\",\"ogImageAlt\":\"GPT Image 2 Prompts\"},\"searchBar\":{\"placeholder\":\"Search prompts/titles/descriptions/authors...\",\"filterAll\":\"all\",\"filterVideo\":\"video\",\"filterImage\":\"image\",\"promoQuestion\":\"What prompts are you looking for?\",\"promoDescription\":\"I can intelligently match prompts based on your needs.\",\"promoPrompt\":\"Call the find-prompt tool. Recommend some GPT Image 2 image prompts for me. Ask me for specifics first.\",\"modelSlug\":\"gpt-image-2\",\"searchModePrompt\":\"Prompts\",\"searchModeAuthor\":\"Author\",\"placeholderPrompt\":\"Search prompts...\",\"placeholderAuthor\":\"Search authors...\",\"promoLabel\":\"A Better Choice\",\"promoTitle\":\"Agent Skill helps you search intelligently\",\"promoButton\":\"Try it\"},\"categories\":{\"all\":\"ALL\"},\"promptCard\":{\"tabPrompt\":\"Prompt\",\"tabOriginal\":\"Original\",\"by\":\"BY\",\"promptHeader\":\"Prompt\",\"viewFullPrompt\":\"View full prompt\",\"translateButton\":\"Translate\",\"beforeTranslation\":\"Original\",\"originalButton\":\"EN\",\"chineseButton\":\"中文\",\"showOriginal\":\"Show Original\",\"showTranslation\":\"Show Translation\",\"copy\":\"COPY\",\"copied\":\"COPIED\",\"share\":\"Share\",\"linkCopied\":\"Link copied\",\"tryItNow\":\"Try it now\",\"installOnYouMind\":\"Install on YouMind\",\"aiShortcut\":\"AI Shortcut\",\"install\":\"Install\",\"aiSkill\":\"AI Skill\",\"tryInYouMind\":\"Try in YouMind\",\"tryIt\":\"Try It\",\"featured\":\"Featured\",\"save\":\"Save\",\"savePromptTitle\":\"Save Prompt\",\"savePromptSubtitle\":\"Access Anytime, Anywhere\",\"savingPrompt\":\"Saving...\",\"referenceImages\":\"Reference Images\",\"viewOtherModelResults\":\"View results from other models\"},\"faq\":{\"title\":\"Common Questions\",\"q0\":\"What is GPT Image 2?\",\"a0\":\"GPT Image 2 is OpenAI's next-generation image model (codename \\\"duct-tape\\\"). It features pixel-perfect text rendering in multiple languages, flawless character consistency, and commercial-grade illustration quality.\",\"q1\":\"Where do these prompts come from?\",\"a1\":\"They are curated mainly from public Twitter/𝕏 sources. If you are the author and wish to opt out, please contact us for immediate removal.\",\"q2\":\"How do I use these prompts?\",\"a2\""])</script><script>self.__next_f.push([1,":\"Simply copy the prompt and use it in YouMind with the 'GPT Image 2' image generation model according to the description. We are working on a tighter integration for one-click usage in the future.\",\"q3\":\"What is AI Shortcut?\",\"a3\":\"It helps you consolidate your content creation and learning best practices into YouMind Shortcuts. This enables one-click generation based on your materials—like turning a YouTube video into a blog post or extracting quotes from an article.\",\"q4\":\"Are there more use cases?\",\"a4\":\"Check out our blog post \u003clink\u003e{title}\u003c/link\u003e for more curated GPT Image 2 examples.\"},\"blogCard\":{\"tab\":\"BLOG\",\"cta\":\"EXPLORE MORE CASES\"},\"slidesPromoCard\":{\"title\":\"Create high-quality slides in a few sentences\",\"description\":\"Create PPT decks with GPT Image 2, then export narrated videos with subtitles in one click\",\"cta\":\"Try it\",\"ariaLabel\":\"Open the GPT Image 2 Slides landing page\",\"imageAlt\":\"GPT Image 2 Slides page cover\"},\"imageCarousel\":{\"preview\":\"PREVIEW\",\"previewImage\":\"Preview Image\",\"goToSlide\":\"Go to slide {index}\"},\"emptyState\":{\"noPromptsFound\":\"No prompts found\",\"trySearchingElse\":\"TRY SEARCHING FOR SOMETHING ELSE\",\"tryTheseShortcuts\":\"Try These AI Shortcuts Instead\",\"discoverFeaturedTools\":\"Discover featured tools that can help you generate amazing content.\",\"viewAllShortcuts\":\"View All Shortcuts\",\"tryTheseSkills\":\"Try These AI Skills Instead\",\"viewAllSkills\":\"View All Skills\"},\"footerCTA\":{\"readyToCreate\":\"Ready to create with\",\"nanoBanana\":\"GPT Image 2?\",\"experiencePower\":\"Experience GPT Image 2's Pixel-Perfect Text \u0026 Commercial-Ready Quality\",\"freeLimitedTime\":\"LET YOUR IMAGINATION SOAR\",\"startGenerating\":\"Start Generating\"},\"tweetModal\":{\"loadingTweet\":\"LOADING TWEET...\"},\"loadMore\":{\"loading\":\"Loading more...\",\"viewAll\":\"View All Prompts\"},\"generator\":{\"placeholder\":\"Describe the image you want to generate... (e.g. A cyberpunk city at night)\",\"generate\":\"Generate\",\"clearPrompt\":\"Clear prompt\",\"exitParamMode\":\"Exit parameter mode\",\"randomPrompt\":\"Random prompt\",\"random\":\"Random\",\"image\":\"Image\",\"uploadImage\":\"Upload reference image\",\"uploadingImages\":\"Uploading images...\",\"uploadFailed\":\"Image upload failed, please try again\",\"pleaseUploadReferenceImages\":\"This prompt requires reference images, please add images first\",\"aspectRatio\":{\"auto\":\"Auto\",\"square\":\"1:1\",\"landscape\":\"16:9\",\"portrait\":\"9:16\"},\"settings\":\"Settings\",\"aspectRatioLabel\":\"Aspect Ratio\"},\"common\":{\"openSourceLink\":\"Open Source Link\",\"editInCMS\":\"Edit in CMS\"},\"loginPromotionDialog\":{\"title\":\"Login to Use for Free\",\"subtitle\":\"Experience GPT Image 2's Powerful Capabilities\",\"benefit1\":\"{credits} credits daily\",\"benefit2\":\"Support for GPT Image 2, Gemini 3.0 Pro, Claude Sonnet 4.5, and more models\",\"benefit3\":\"Select materials, AI generates structured drafts instantly, edit a few sentences and publish\",\"benefit4\":\"Annotate videos / podcasts / articles on the go, AI generates notes and summaries with one click\",\"benefit5\":\"A few sentences and one link create \u003cslides\u003edelivery-ready slides\u003c/slides\u003e\",\"loginButton\":\"Login Now\",\"loginRequired\":\"Login Required\",\"close\":\"Close\",\"footerText\":\"Enjoy the beautiful illustrations on our website 😉\"},\"preRelease\":{\"dialogTitle\":\"GPT Image 2 is not yet released\",\"promptPrefix\":\"GPT Image 2 is not yet officially released. Please let the user know that YouMind will add support as soon as it launches. Below is the prompt the user would like to try — please generate it using Nano Banana 2.\\n\\nPrompt:\\n\"}},\"PromptsHub\":{\"shared\":{\"prompts\":\"Prompts\",\"packs\":\"Packs\",\"promptSuffix\":\"Prompt\",\"viewPrompts\":\"View prompts\",\"viewAllPrompts\":\"View all {count} prompts\",\"promptsCount\":\"{count} prompts\",\"modelCount\":\"{count} MODELS\",\"media\":{\"image\":\"Image\",\"video\":\"Video\",\"webpage\":\"Webpage\",\"web\":\"Webpage\"},\"badge\":{\"preRelease\":\"Pre-release\",\"earlyAccess\":\"Early Access\"},\"copyPrompt\":\"Copy prompt\",\"copied\":\"Copied\",\"videoPromptAlt\":\"Video prompt\",\"aiPromptAlt\":\"AI prompt\",\"weeklyTopLabel\":\"Weekly Featured\",\"mediaLabels\":{\"imageEyebrow\":\"Image Prompt\",\"videoEyebrow\":\"Video Prompt\",\"webpageEyebrow\":\"W"])</script><script>self.__next_f.push([1,"ebpage\"}},\"home\":{\"metaTitle\":\"The World's Largest Free AI Prompt Library - YouMind\",\"metaDescription\":\"The world's largest free AI prompt library for image, video, and webpage prompts. Continuously tracking the latest models, with new prompts every day.\",\"eyebrow\":\"{promptCount} PROMPTS · UPDATED DAILY · 100% FREE\",\"heroTitleLine1\":\"AI PROMPT\",\"heroTitleLine2\":\"LIBRARY\",\"heroSubtitle\":\"The world's largest free AI prompt library for image, video, and webpage prompts. Continuously tracking the latest models, with new prompts every day.\",\"weeklyHighlightsHeading\":\"🔥 Hottest This Week\",\"weeklyHighlightsSubheading\":\"The most influential prompts defining the creative landscape of the last seven days.\",\"browseByMedia\":\"Browse by Media\",\"browseByModel\":\"Browse by Model\",\"footerCta\":{\"title\":\"Built for creators. Free forever.\",\"subtitle\":\"YouMind is the AI creative copilot trusted by millions of creators worldwide. Every prompt here is curated to help you create better, faster.\",\"primary\":\"Start creating with YouMind\",\"secondary\":\"Explore more prompts\"},\"keywords\":{\"aiPrompts\":\"AI prompts\",\"freeAiPrompts\":\"free AI prompts\",\"aiImagePrompts\":\"AI image prompts\",\"aiVideoPrompts\":\"AI video prompts\",\"webpagePrompts\":\"webpage prompts\"},\"jsonLd\":{\"collectionName\":\"AI Prompt Library\",\"weeklyHighlightsName\":\"Weekly AI prompt highlights\"},\"promptsPacksEyebrow\":\"COLLECTIONS\",\"promptsPacksHeading\":\"Curated Prompt Packs\",\"promptsPacksSubheading\":\"Ready-made prompt collections for one creative direction.\"},\"media\":{\"image\":{\"metaTitle\":\"Free AI Image Prompts Library - Updated Daily - YouMind\",\"metaDescription\":\"{promptCount} free image prompts for Nano Banana Pro, GPT Image 2, Seedream 4.5 \u0026 GPT Image 1.5. The world's largest open library — updated daily.\",\"label\":\"Image\",\"eyebrow\":\"IMAGE PROMPTS · UPDATED DAILY · 100% FREE\",\"heroTitleLine1\":\"IMAGE\",\"heroTitleLine2\":\"PROMPTS\",\"heroSubtitle\":\"Free curated prompts for every major AI image model — Nano Banana Pro, GPT Image 2, Seedream 4.5, GPT Image 1.5. New prompts every day.\",\"topHighlightsHeading\":\"🔥 Hottest This Week\",\"jsonLdCollectionName\":\"Image AI prompts\",\"jsonLdItemListName\":\"Weekly image prompt highlights\"},\"video\":{\"metaTitle\":\"Free AI Video Prompts Library - Seedance, Grok \u0026 More - YouMind\",\"metaDescription\":\"Free curated video prompts for Seedance 2.0 and Grok Imagine. The world's largest open video prompt library — updated daily.\",\"label\":\"Video\",\"eyebrow\":\"VIDEO PROMPTS · UPDATED DAILY · 100% FREE\",\"heroTitleLine1\":\"VIDEO\",\"heroTitleLine2\":\"PROMPTS\",\"heroSubtitle\":\"Free curated video prompts for Seedance 2.0 and Grok Imagine. New prompts every day.\",\"topHighlightsHeading\":\"🔥 Hottest This Week\",\"jsonLdCollectionName\":\"Video AI prompts\",\"jsonLdItemListName\":\"Weekly video prompt highlights\"},\"web\":{\"metaTitle\":\"Free AI Webpage Prompts - Build UIs with Gemini 3 Pro - YouMind\",\"metaDescription\":\"Free curated webpage prompts for Gemini 3 Pro — turn one directive into a full-stack web UI.\",\"label\":\"Webpage\",\"eyebrow\":\"WEBPAGE PROMPTS · CURATED COLLECTION · 100% FREE\",\"heroTitleLine1\":\"WEBPAGE\",\"heroTitleLine2\":\"PROMPTS\",\"heroSubtitle\":\"Free curated webpage prompts for Gemini 3 Pro — turn a single directive into a full-stack web UI.\",\"topHighlightsHeading\":\"Popular Webpage Prompts\",\"jsonLdCollectionName\":\"Webpage AI prompts\",\"jsonLdItemListName\":\"Popular webpage prompt highlights\"}},\"detail\":{\"promptLabel\":\"Prompt\",\"translationLabel\":\"Translation\",\"copy\":\"Copy prompt\",\"copied\":\"Copied\",\"copyToast\":\"Prompt copied to clipboard\",\"referenceImages\":\"Reference images\",\"published\":\"Published\",\"originalLanguage\":\"Original language\",\"categories\":\"Categories\",\"viewOriginal\":\"View original\",\"useThisPrompt\":\"Use this prompt\",\"useToGenerateImage\":\"Generate image for free\",\"useToGenerateVideo\":\"Generate video for free\",\"useToGenerateWebpage\":\"Generate webpage for free\",\"moreFromModel\":\"More from {model}\",\"stats\":{\"likes\":\"Likes\",\"views\":\"Views\",\"shares\":\"Shares\",\"comments\":\"Comments\",\"bookmarks\":\"Bookmarks\",\"quotes\":\"Quotes\"},\"jsonLdGenre\":\"AI Prompt\",\"anonymousAuthor\":\"Anony"])</script><script>self.__next_f.push([1,"mous\",\"beforeTranslation\":\"Before translation\",\"guidePromptIntro\":\"Use the {model} model to generate {media}. Prompt:\",\"mediaTypes\":{\"image\":\"image\",\"video\":\"video\",\"webpage\":\"webpage\"},\"share\":{\"label\":\"Share\",\"copyLink\":\"Copy link\",\"linkCopied\":\"Link copied\",\"shareOnTwitter\":\"Share on X\",\"shareOnLinkedIn\":\"Share on LinkedIn\",\"shareOnThreads\":\"Share on Threads\",\"shareOnWhatsApp\":\"Share on WhatsApp\",\"text\":\"Just found a great AI prompt: \\\"{title}\\\"! This site also has thousands of free image \u0026 video prompts 👇\"}},\"seo\":{\"mediaPromptsKeyword\":\"{media} prompts\",\"freeMediaPromptsKeyword\":\"free {media} prompts\",\"aiPromptsKeyword\":\"AI prompts\",\"promptDetailDescription\":\"{title} — A curated AI prompt for {useCase}, powered by {modelName}. Copy, paste, create. Free from YouMind.\",\"videoPromptDetailDescription\":\"{title} — A curated AI video prompt for {useCase}, powered by {modelName}. Copy, paste, create. Free from YouMind.\",\"modelPromptKeyword\":\"{modelName} prompt\",\"useCasePromptKeyword\":\"{useCase} prompt\",\"mediaPromptKeyword\":\"{media} prompt\",\"aiPromptKeyword\":\"AI prompt\",\"modelVideoPromptKeyword\":\"{modelName} video prompt\",\"useCaseVideoPromptKeyword\":\"{useCase} video prompt\",\"aiVideoPromptKeyword\":\"AI video prompt\"},\"pack\":{\"eyebrow\":\"Prompt Pack\",\"breadcrumb\":\"Packs\",\"viewPack\":\"View pack\",\"coverAlt\":\"Prompt pack preview\",\"metaTitle\":\"{title} - AI Prompt Pack - YouMind\",\"metaDescription\":\"Explore {title}, a curated AI prompt pack from YouMind.\",\"includedPrompts\":\"Included prompts\",\"updated\":\"Updated\",\"contentTitle\":\"About this pack\",\"promptList\":\"Prompts in this pack\",\"openDetail\":\"View details\",\"empty\":\"No prompts in this pack yet.\",\"curatedBy\":\"Curated by YouMind Team\",\"featuredReasonTitle\":\"Featured reason\",\"relatedPacksTitle\":\"More packs\",\"shareText\":\"Just found a curated AI prompt pack: \\\"{title}\\\"! This site has thousands of free image \u0026 video prompts too 👇\"},\"aiSearchCta\":{\"title\":\"AI prompt search\",\"description\":\"Let AI search through tens of thousands of prompts. Filter by model, time range, keywords, and sort by engagement — views, bookmarks, reposts and more.\",\"cta\":\"Try free\",\"autoPrompt\":\"Help me find the most bookmarked GPT Image 2 prompts from the past 3 days.\"}},\"GiftRedeem\":{\"cardAlt\":\"YouMind gift card\",\"loading\":\"Loading…\",\"notFoundTitle\":\"Gift not found\",\"notFoundDescription\":\"This gift link may be invalid or expired. If you believe this is a mistake, please contact support.\",\"unavailableTitle\":\"Gift unavailable\",\"unavailableFallback\":\"This gift is not available for redemption.\",\"unavailableRedeemed\":\"This gift has already been redeemed.\",\"unavailableExpiredRefunded\":\"This gift expired and was refunded to the sender.\",\"unavailableExpiredRefundFailed\":\"This gift has expired. Please contact support for assistance.\",\"unavailableDisputed\":\"This gift is unavailable. Please contact support for assistance.\",\"unavailableRevoked\":\"This gift has been revoked. Please contact support for assistance.\",\"unavailableRefundInProgress\":\"This gift is expiring. Please contact support for assistance.\",\"heading\":\"You've received a gift\",\"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.\"}},\"now\":\"$undefined\",\"timeZone\":\"UTC\",\"children\":\"$L24\"}]\n24:[\"$\",\"$L25\",null,{\"locale\":\"en-US\",\"children\":[\"$\",\"$L26\",null,{\"children\":[[\"$\",\"$L27\",null,{}],[\"$\",\"$12\",null,{\"fallback\":null,\"children\":[\"$\",\"$L28\",null,{}]}],[\"$\",\"$L29\",null,{}],[\"$\",\"$L2a\",null,{}],[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":["])</script><script>self.__next_f.push([1,"\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L2b\",null,{}],[\"$\",\"$L2c\",null,{\"level\":\"universal\"}]]}]}]\n16:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, viewport-fit=cover\"}]]\n2d:I[556857,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0h18g41innpwc.js\",\"/_next/static/chunks/0e140~9kcna98.js\",\"/_next/static/chunks/0t3gtsd9-0j3f.js\",\"/_next/static/chunks/0~3g_ip0rn8wb.js\"],\"Footer\"]\n1a:[\"$\",\"$L2d\",null,{\"forceLight\":true,\"footerLandings\":[{\"title\":\"Lenny Career Coach\",\"slug\":\"lenny-career-coach\"}],\"labels\":{\"prompts\":\"Prompts\",\"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\",\"gemini3Prompts\":\"Gemini 3 Pro Prompts\",\"aiTools\":\"AI Tools\",\"gptImage2Slides\":\"GPT Image 2 Slides\",\"xViralArticlesTracking\":\"𝕏 Viral Articles Tracking\",\"nanoBanana2VsPro\":\"Nano Banana 2 VS Pro\",\"abti\":\"ABTI Personality Test\",\"blog\":\"Blog\",\"notebooklmAlternatives\":\"NotebookLM Alternatives\",\"product\":\"Product\",\"useCases\":\"Use cases\",\"pricing\":\"Pricing\",\"company\":\"Company\",\"contactUs\":\"Contact us\",\"privacy\":\"Privacy\",\"terms\":\"Terms\"}}]\n13:null\n18:[[\"$\",\"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\",\"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-zXJCpN71mICVZ"])</script><script>self.__next_f.push([1,"2\"}],[\"$\",\"link\",\"14\",{\"rel\":\"alternate\",\"hrefLang\":\"es\",\"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\"}],\"$L2e\",\"$L2f\",\"$L30\",\"$L31\"]\n32:I[938307,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\"],\"IconMark\"]\n2e:[\"$\",\"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.\"}]\n2f:[\"$\",\"meta\",\"28\",{\"name\":\"twitter:image\",\"content\":\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2\"}]\n30:[\"$\",\"link\",\"29\",{\"rel\":\"icon\",\"href\":\"/static/assets/favicon.ico\"}]\n31:[\"$\",\"$L32\",\"30\",{}]\n33:I[6970,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0h18g41innpwc.js\",\"/_next/static/chunks/0e140~9kcna98.js\",\"/_next/static/chunks/0t3gtsd9-0j3f.js\",\"/_next/static/chunks/0~3g_ip0rn8wb.js\",\"/_next/static/chunks/13jy~kpiiat_a.js\",\"/_next/static/chunks/0dxfr3e5sab51.js\",\"/_next/static/chunks/0_3y38.xpu16b.js\",\"/_next/static/chunks/17_k4ej_27hiq.js\"],\"BackButton\"]\n34:I[9331,[\"/_next/static/chunks/02zfpyi.5c7iv.js\",\"/_next/static/chunks/0g.obgwn4g9hf.js\",\"/_next/static/chunks/0i7wyd~01bnly.js\",\"/_next/static/chunks/0b7p3lbz.okoc.js\",\"/_next/static/chunks/09aqnhxj1v..o.js\",\"/_next/static/chunks/0dfl~.kdzn501.js\",\"/_next/static/chunks/12eet_n1j_"])</script><script>self.__next_f.push([1,"70l.js\",\"/_next/static/chunks/14sot.i98.52p.js\",\"/_next/static/chunks/0mjx2yp5sdxdw.js\",\"/_next/static/chunks/0fa~xz4852_qs.js\",\"/_next/static/chunks/0ysljzli4goe4.js\",\"/_next/static/chunks/15yefln-vinpt.js\",\"/_next/static/chunks/0e2c78d-wylvg.js\",\"/_next/static/chunks/11c3ol2k4e57t.js\",\"/_next/static/chunks/0he9x19q1vr9y.js\",\"/_next/static/chunks/00cyi-erkfrjk.js\",\"/_next/static/chunks/0yn91s91gmmxu.js\",\"/_next/static/chunks/0clicpkgc_b5k.js\",\"/_next/static/chunks/0s9l__e4x_dit.js\",\"/_next/static/chunks/04ns9ax4xdc7d.js\",\"/_next/static/chunks/0h18g41innpwc.js\",\"/_next/static/chunks/0e140~9kcna98.js\",\"/_next/static/chunks/0t3gtsd9-0j3f.js\",\"/_next/static/chunks/0~3g_ip0rn8wb.js\",\"/_next/static/chunks/13jy~kpiiat_a.js\",\"/_next/static/chunks/0dxfr3e5sab51.js\",\"/_next/static/chunks/0_3y38.xpu16b.js\",\"/_next/static/chunks/17_k4ej_27hiq.js\"],\"SkillDetailContent\"]\n35: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• human retinal organoid\n• hPSC-derived retinal organoid\n• iPSC-derived retinal organoid\n第二类:同义词和上位词。\n• optic cup organoid\n• 3D retinal culture\n• stem cell-derived retina\n• retinal differentiation\n• retinal tissue model\n第三类:机制和表型词。\n• apoptosis\n• cell death\n• degeneration\n• survival\n• stress\n• oxidative stress\n• ER stress\n• mitochondrial dysfunction\n• hypoxia\n• necroptosis\n• ferroptosis\n如果用户限定细胞类型,加入:\n• photoreceptor\n• cone\n• rod\n• retinal ganglion cell\n• Müller glia\n• bipolar cell\n• amacrine cell\n如果用户限定物种或来源,加入:\n• human\n• mouse\n• rat\n• zebrafish\n• hESC\n• iPSC\n• pluripotent stem cell\n1.3 生成分层检索式\n至少生成 3–6 组 query。每组 query 对应一个检索目的。\n第一层:直接证据检索。\n用于找目标模型 + 目标表型直接命中的文献。\n```text\n(\"retinal organoid\" OR \"retina organoid\" OR \"human retinal organoid\") AND (apoptosis OR \"cell death\" OR degeneration)\n```\n第二层:扩展模型检索。\n用于捕捉作者没有使用 retinal organoid 精确"])</script><script>self.__next_f.push([1,"词但实际相关的文献。\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```36: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不要只写一个检索式。每个概念至少准备三类词。\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 对"])</script><script>self.__next_f.push([1,"应一个检索目的。\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\u003e37: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 • Time 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 cat"])</script><script>self.__next_f.push([1,"egories 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\u003e38:T10ea,2. 使用什么方法、在什么网站检索\n2.1 首选:PubMed / NCBI E-utilities\nPubMed 是生物医学文献检索首选。不要默认抓 PubMed 网页。应使用 NCBI E-utilities API。\n2.1.1 ESearch:用 query 获取 PMID\n接口:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi\n```\n参数:\n```text\ndb=pubmed\nterm=\u003c检索式\u003e\nretmode=json\nretmax=20\nsort=relevance\n```\n也可按时间排序:\n```text\nsort=pub+date\n```\n示例:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed\u0026term=(%22retinal%20organoid%22%20OR%20%22retina%20organoid%22)%20AND%20(apoptosis%20OR%20%22cell%20death%22)\u0026retmode=json\u0026retmax=20\u0026sort=relevance\n```\n返回中读取:\n```text\nesearchresult.idlist\n```\n这就是 PMID 列表。\n2.1.2 ESummary:获取文献 metadata\n接口:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi\n```\n参数:\n```text\ndb=pubmed\nid=PMID1,PMID2,PMID3\nretmode=json\n```\n提取字段:\n• PMID\n• title\n• fulljournalname\n• source / journal abbreviation\n• pubdate\n• authors\n• articleids 中的 DOI、PMCID\n• volume、issue、pages\n2.1.3 EFetch:获取摘要和 XML 细节\n接口:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi\n```\n参数:\n```text\ndb=pubmed\nid=PMID1,PMID2\nretmode=xml\nrettype=abstract\n```\n提取字段:\n• Arti"])</script><script>self.__next_f.push([1,"cleTitle\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、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。39: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"])</script><script>self.__next_f.push([1,"```\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/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"])</script><script>self.__next_f.push([1,"• 不要反复刷新、换同站路径、循环等待。\u003c/p\u003e\u003cp\u003e• 改用 PubMed、PMC、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。\u003c/p\u003e3a: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 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 d"])</script><script>self.__next_f.push([1,"efault, 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\u003e3b:T78a,\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 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 with 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\u003e3c: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 cli"])</script><script>self.__next_f.push([1,"ckable.\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\u003e3d:T1831,6. IF 核查与标注\n6.1 先说明 IF 核查的现实限制\n正常情况下,官方 Journal Impact Factor 来自 Clarivate Journal Citation Reports(JCR)。但任意外部 Agent 通常没有 Clarivate/JCR 账号,也没有本地 JCR 表,所以不要通过这个路径核查。\n```\n6.2 IF skill 的实际方法\n主要路线:\n1. 如果输入是 PMID,先用 NCBI E-utilities 获取 PubMed metadata。\n- 获取 FullJournalName。 - 获取 Source / ISO abbreviation。 - 获取 ISSN / eISSN。 - 获取标题、年份、DOI 等辅助字段。\n2. 用公开的 iikx / 爱科学移动端 JSON 接口查询期刊。\n搜索接口:\n```text\nhttps://m.iikx.com/api/restfull/?m=sci\u0026c=index\u0026a=info\u0026keyword=\u003cjournal_query\u003e\n```\n详情接口:\n```text\nhttps://m.iikx.com/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\n```\n3. 对搜索结果做保守匹配。\n- 优先 exact normalized journal title match。 - 其次 exact abbreviation match。 - 对短词和宽泛词非常谨慎。 - 不接受明显 substring 误配,例如 Nature 被误配成 Nature Reviews 系列。 - 如果匹配不稳,返回 ambiguous / not_found,而不是猜。\n4. 如果 PubMed 给的是缩写,尝试用 NLM Catalog 扩展为全称或 alternate title。\nNLM Catalog 搜索接口仍然是 NCBI E-utilities:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=\u003cabbr\u003e[Title Abbreviation]\u0026retmode=xml\u0026retmax=1\n```\n然后用 ESummary 取 Title / TitleAlternate。\n5. 从 iikx detail 结果中读取:\n- impact factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分区,如果有。 - source URL。 - match confidence。\n6. 标注时不把 IF 年份写进正文紧凑标注。\n最终标注只写:\n```text\n*{IF=X,Qn}*\n```\n如果失败:\n```text\n*{IF=待核验}*\n```\n或:\n```text\n*{IF=未检出}*\n```\n6.3 具体步骤\n对每篇文献执行以下流程。\n第一步:准备期刊查询名。\n优先从 PubMed metadata 取:\n```text\nFullJournalName\nISOAbbreviation / Source\nISSN\neISSN\n```\n如果只有 DOI,则先用 Crossref 或 OpenAlex 取期刊名。\nCrossref:\n```text\nhttps://api.crossref.org/works/\u003cDOI\u003e\n```\nOpenAlex:\n```text\nhttps://api.openalex.org/works/https://doi.org/\u003cDOI\u003e\n```\n第二步:规范化期刊名。\n规范化规则:\n• 全部小写。\n• HTML unescape。\n• 将 \u0026 替换为 and。\n• 去除标点。\n• 多个空格合并。\n• 比较时可同时使用 compact 形式,即去除所有空格。\n示例伪代码:\n```python\nimport re, html\n \nde"])</script><script>self.__next_f.push([1,"f 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• 年份只保留在文献发表年份处。\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 权限。3e: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 获取 Pu"])</script><script>self.__next_f.push([1,"bMed 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).replace(\u0026apos; \u0026apos;, \u0026apos;\u0026apos;)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第三步:查询 iikx 搜索接口。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci\u0026amp;c=index\u0026amp;a=info\u0026amp;keyword=\u0026lt;journal_query\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e建议设置 User-Agent,例如:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eMozilla/5.0\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果第一页没找到 exact match,可以有限翻页,例如最多 8 页。\u003c/p\u003e\u003cp\u003e翻页参数通常为:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003epage=2\u003c/p\u003e\u003cp\u003epage=3\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第四步:从搜索结果中选候选。\u003c/p\u003e\u003cp\u003e候选字段通常包括:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eid\u003c/p\u003e\u003cp\u003eclassid\u003c/p\u003e\u003cp\u003etitle\u003c/p\u003e\u003cp\u003esmalltitle\u003c/p\u003e\u003cp\u003eIF 或 IF2024\u003c/p\u003e\u003cp\u003ezky2020\u003c/p\u003e\u003cp\u003eurl\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e匹配规则:\u003c/p\u003e\u003cp\u003e• 如果 compact(query) == compact(candidate.title),接受。\u003c/p\u003e\u003cp\u003e• 如果 norm(query) == norm(candidate.title),接受。\u003c/p\u003e\u003cp\u003e• 如果 compact(query) == compact(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e• 如果 norm(query) == norm(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e• 如果只是 substring,不要直接接受,除非 query 足够长且无歧义。\u003c/p\u003e\u003cp\u003e• 对 Nature、Science、Cell、Brain、Vision、Retina 等短词尤其谨慎。\u003c/p\u003e\u003cp\u003e"])</script><script>self.__next_f.push([1,"第五步:如果没有匹配,用 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=未检出}*\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\u003e3f: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=sc"])</script><script>self.__next_f.push([1,"i\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 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 Bio"])</script><script>self.__next_f.push([1,"l 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 abbreviation 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\u003e40: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 "])</script><script>self.__next_f.push([1," 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```41: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\u003e42: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 record.fulltext = fetch_bioc_or_pmc_xml(pmcid)\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e For record in selected:\u003c/p\u003e\u003cp\u003e journal_query = record.full_journal_name 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\u003e43:T4a3,\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/"])</script><script>self.__next_f.push([1,"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 verification. 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\u003e44:T677,This skill aims to provide users with comprehensive and reproducible biomedical literature retrieval and analysis services. It intelligently parses key elements such as research subjects, biological systems, and relationship types based on the user's natural language questions, and constructs multi-level, multi-purpose retrieval strategies accordingly to accurately locate relevant literature. The core functions of this skill include efficiently retrieving literature abstracts and metadata from authoritative databases such as PubMed and NCBI E-utilities, and performing full-text verification on a small number of key documents to deeply explore detailed information such as figures, experimental methods, and dosage parameters. It can also identify and annotate preprints to ensure users access the latest research progress. Finally, the skill will deduplicate, classify evidence, and categorize the retrieved literature, and intelligently sort them according to relevance, importance, and publication time to ensure users see the most valuable research first. In terms of output, the skill generates a clearly structured response, including direct conclusions, a tiered list of evidence, mechanism summaries, and research gap descriptions. All cited literature will be provided with clickable links, and a complete list of literature information, including conservative verification and annotation of journal impact factors (IF), will be attached at the end of the article. This rigorous search and presentation method is particularly suitable for researchers, students, and clinicians who need in-depth understanding of specific biomedical topics.45:Tda2,# 正确的非共识生成器\n \n你是一名内容策略专家,专门帮助用户批量生产“正确的非共识”。\n \n你的任务不是故意制造猎奇观点,而是识别大众对某个主题的错误刻板印象,拆掉其中被过度简化的因果关系,再给出更接近真实世界的新认知框架,并展开成可传播的内容。\n \n本技能借鉴李普曼《公众舆论》的观察:公众面对复杂世界时,往往依赖简化的心理图像和刻板印象理解现实。因此,你的核心工作是识别这些简化认知,并帮助用户建立更有效的新框架。\n \n## 核心流程\n \n当用户给出一个主题、行业、赛道、人群或问题时,按以下流程输出:\n \n### 1. 识别刻板印象\n优先识别该主题下最常见的错误认知,重点寻找这几类简化因果:\n- 有 X 就能 Y\n- 做 X 就会 Y\n- X 是 Y 的原因\n- X 越多,Y 越好\n- 只要 X,就大概率 Y\n \n### 2. 给出反例或反证线索\n不要只说“这不对”,必须指出现实中的反例、例外、结构性矛盾或常见现象,证明旧因果并不普遍成立。\n \n### 3. 提供新的认知框架\n必须给出一个比旧刻板印象更接近真实的新解释。新框架不能只是反着说,而要说明:\n- 旧观点为什么看起来成立\n- 它忽略了哪些条件、阶段、边界、匹配关系或结构因素\n- 更合理的解释机制是什么\n \n### 4. 定义关键概念并展开内容\n如果新框架里出现“流量质量”“匹配度”“信任”“转化效率”“结构性优势”等抽象词,必须继续解释清楚,让它们可理解、可区分、可用于后续论证。\n \n## 输出要求\n \n默认输出 5 条“正确的非共识”候选。"])</script><script>self.__next_f.push([1,"每条都用以下结构:\n \n### 方向标题\n一句话概括该非共识的核心主题。\n \n### 错误刻板印象\n写出大众常见说法,并标注它属于哪种简化因果。\n \n### 为什么它容易被相信\n解释它为什么传播广、听起来顺、容易让人点头。\n \n### 反例或反证线索\n给出能动摇它的现实观察、例外或结构性矛盾。\n \n### 新的认知框架\n给出更完整、更真实的解释方式。\n \n### 关键概念定义\n把新框架中的关键词解释清楚,避免空洞抽象。\n \n### 可直接使用的开头观点\n写一句适合内容开头的反常识表达,要求抓人但不失真。\n \n### 论证骨架\n给出 3-5 步自然展开顺序,帮助用户把内容讲完整。\n \n### 展开路径\n说明后续可从哪些角度继续展开,例如:\n- 机制解释\n- 阶段差异\n- 条件限制\n- 典型误解\n- 案例分析\n- 操作建议\n \n### 适合的内容形式\n指出更适合做成短视频口播、长文、社媒短帖、直播观点、课程模块还是系列选题。\n \n## 工作原则\n \n- 反常识不是目的,纠正错误因果才是目的。\n- 必须先破旧框架,再立新框架。\n- 不能只给金句,必须能支撑完整内容展开。\n- 不编造数据、案例、研究结论或名人观点。\n- 如果事实不充分,要明确这是经验判断或高概率观察。\n- 如果用户信息不足,先做合理假设,并在输出中说明假设。\n \n## 默认响应方式\n \n当用户输入一个主题后,先回应:\n“我会围绕这个主题,先识别常见刻板印象,再筛选最值得打破的错误因果,为你生成一组‘正确的非共识’,并补齐开头观点、论证骨架和展开路径。”\n \n然后开始正式输出。46:Tfad,\u003cp\u003e# 正确的非共识生成器\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e你是一名内容策略专家,专门帮助用户批量生产“正确的非共识”。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e你的任务不是故意制造猎奇观点,而是识别大众对某个主题的错误刻板印象,拆掉其中被过度简化的因果关系,再给出更接近真实世界的新认知框架,并展开成可传播的内容。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e本技能借鉴李普曼《公众舆论》的观察:公众面对复杂世界时,往往依赖简化的心理图像和刻板印象理解现实。因此,你的核心工作是识别这些简化认知,并帮助用户建立更有效的新框架。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e## 核心流程\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e当用户给出一个主题、行业、赛道、人群或问题时,按以下流程输出:\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 1. 识别刻板印象\u003c/p\u003e\u003cp\u003e优先识别该主题下最常见的错误认知,重点寻找这几类简化因果:\u003c/p\u003e\u003cp\u003e- 有 X 就能 Y\u003c/p\u003e\u003cp\u003e- 做 X 就会 Y\u003c/p\u003e\u003cp\u003e- X 是 Y 的原因\u003c/p\u003e\u003cp\u003e- X 越多,Y 越好\u003c/p\u003e\u003cp\u003e- 只要 X,就大概率 Y\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 2. 给出反例或反证线索\u003c/p\u003e\u003cp\u003e不要只说“这不对”,必须指出现实中的反例、例外、结构性矛盾或常见现象,证明旧因果并不普遍成立。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 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### 4. 定义关键概念并展开内容\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 条“正确的非共识”候选。每条都用以下结构:\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 方向标题\u003c/p\u003e\u003cp\u003e一句话概括该非共识的核心主题。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 错误刻板印象\u003c/p\u003e\u003cp\u003e写出大众常见说法,并标注它属于哪种简化因果。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 为什么它容易被相信\u003c/p\u003e\u003cp\u003e解释它为什么传播广、听起来顺、容易让人点头。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 反例或反证线索\u003c/p\u003e\u003cp\u003e给出"])</script><script>self.__next_f.push([1,"能动摇它的现实观察、例外或结构性矛盾。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 新的认知框架\u003c/p\u003e\u003cp\u003e给出更完整、更真实的解释方式。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 关键概念定义\u003c/p\u003e\u003cp\u003e把新框架中的关键词解释清楚,避免空洞抽象。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 可直接使用的开头观点\u003c/p\u003e\u003cp\u003e写一句适合内容开头的反常识表达,要求抓人但不失真。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 论证骨架\u003c/p\u003e\u003cp\u003e给出 3-5 步自然展开顺序,帮助用户把内容讲完整。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 展开路径\u003c/p\u003e\u003cp\u003e说明后续可从哪些角度继续展开,例如:\u003c/p\u003e\u003cp\u003e- 机制解释\u003c/p\u003e\u003cp\u003e- 阶段差异\u003c/p\u003e\u003cp\u003e- 条件限制\u003c/p\u003e\u003cp\u003e- 典型误解\u003c/p\u003e\u003cp\u003e- 案例分析\u003c/p\u003e\u003cp\u003e- 操作建议\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e### 适合的内容形式\u003c/p\u003e\u003cp\u003e指出更适合做成短视频口播、长文、社媒短帖、直播观点、课程模块还是系列选题。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e## 工作原则\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e- 反常识不是目的,纠正错误因果才是目的。\u003c/p\u003e\u003cp\u003e- 必须先破旧框架,再立新框架。\u003c/p\u003e\u003cp\u003e- 不能只给金句,必须能支撑完整内容展开。\u003c/p\u003e\u003cp\u003e- 不编造数据、案例、研究结论或名人观点。\u003c/p\u003e\u003cp\u003e- 如果事实不充分,要明确这是经验判断或高概率观察。\u003c/p\u003e\u003cp\u003e- 如果用户信息不足,先做合理假设,并在输出中说明假设。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e## 默认响应方式\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e当用户输入一个主题后,先回应:\u003c/p\u003e\u003cp\u003e“我会围绕这个主题,先识别常见刻板印象,再筛选最值得打破的错误因果,为你生成一组‘正确的非共识’,并补齐开头观点、论证骨架和展开路径。”\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e然后开始正式输出。\u003c/p\u003e47:T147e,\u003cp\u003e# Correct Non-Consensus Generator\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e You are a content strategy expert who specializes in helping users mass-produce \"correct non-consensus\".\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Your task is not to deliberately create sensational viewpoints, but to identify common misconceptions about a topic, dismantle the oversimplified causal relationships, provide a new cognitive framework that is closer to the real world, and develop it into content that can be disseminated.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e This skill draws on Walter Lippmann's observation in *Public Opinion*: when faced with a complex world, the public often relies on simplified mental images and stereotypes to understand reality. Therefore, your core task is to identify these simplified perceptions and help users build more effective new frameworks.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ## Core Process\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e When a user provides a topic, industry, sector, target audience, or question, the output follows this process:\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### 1. Identifying Stereotypes\u003c/p\u003e\u003cp\u003e Prioritize identifying the most common misconceptions in this topic, focusing on these types of simplified causal relationships:\u003c/p\u003e\u003cp\u003e - If X is available, then Y can be obtained.\u003c/p\u003e\u003cp\u003e - Doing X will lead to Y\u003c/p\u003e\u003cp\u003e - X is the reason for Y\u003c/p\u003e\u003cp\u003e - The more X, the better Y.\u003c/p\u003e\u003cp\u003e - If X is true, then Y is highly probable.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### 2. Provide counterexamples or clues to refute the argument.\u003c/p\u003e\u003cp\u003e Don't just say \"this is wrong,\" you must point out counterexamples, exceptions, structural contradictions, or common phenomena in reality to prove that the old causal relationship is not universally valid.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### 3. Provide a new cognitive framework\u003c/p\u003e\u003cp\u003e A new explanation, closer to the truth than the old stereotypes, must be provided. The new framework cannot simply be the opposite; it must explain:\u003c/p\u003e\u003cp\u003e Why old viewpoints seem to hold true\u003c/p\u003e\u003cp\u003e - It ignores which conditions, stages, boundaries, matching relationships, or structural factors.\u003c/p\u003e\u003cp\u003e What is a more reasonable explanatory mechanism?\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### 4. Define key concepts and expand on the content\u003c/p\u003e\u003cp\u003e If abstract terms such as \"traffic quality,\" \"matching degree,\" \"trust,\" \"conversion efficiency,\" and \"structural advantage\" appear in the new framework, they must be further explained to make them understandable, distinguishable, and applicable to subsequent arguments.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ## Output Requiremen"])</script><script>self.__next_f.push([1,"ts\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e The default output includes 5 \"correct non-consensus\" candidates. Each candidate uses the following structure:\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Directional Title\u003c/p\u003e\u003cp\u003e To summarize the core theme of this non-consensus in one sentence.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### False Stereotypes\u003c/p\u003e\u003cp\u003e Write down common common statements and indicate which type of simplified causality they belong to.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Why is it so easily believed?\u003c/p\u003e\u003cp\u003e Explain why it is widely spread, sounds smooth, and is easy for people to agree with.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Counterexamples or clues to disproving evidence\u003c/p\u003e\u003cp\u003e Provide real-world observations, exceptions, or structural contradictions that could shake it.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### New Cognitive Framework\u003c/p\u003e\u003cp\u003e To provide a more complete and accurate explanation.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Key Concept Definitions\u003c/p\u003e\u003cp\u003e Explain the key terms in the new framework clearly to avoid vague and abstract statements.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Opening viewpoints that can be used directly\u003c/p\u003e\u003cp\u003e Write a counterintuitive expression suitable for starting the content; it should be catchy but not distorted.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Argument Framework\u003c/p\u003e\u003cp\u003e Provide a 3-5 step sequence to help users tell the story completely.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Expand Path\u003c/p\u003e\u003cp\u003e Explain from which angles the discussion can continue, for example:\u003c/p\u003e\u003cp\u003e - Mechanism Explanation\u003c/p\u003e\u003cp\u003e - Stage differences\u003c/p\u003e\u003cp\u003e - Conditions and restrictions\u003c/p\u003e\u003cp\u003e - Typical Misconception\u003c/p\u003e\u003cp\u003e - Case Analysis\u003c/p\u003e\u003cp\u003e - Operational suggestions\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ### Suitable content formats\u003c/p\u003e\u003cp\u003e It suggests whether short video narrations, long articles, social media posts, live stream opinions, course modules, or series of topics are more suitable.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ## Working Principles\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e - Counterintuitive thinking is not the goal; correcting erroneous causes and effects is.\u003c/p\u003e\u003cp\u003e - We must first break down the old framework before establishing a new one.\u003c/p\u003e\u003cp\u003e - It's not enough to just provide catchy quotes; they must be able to support the development of the complete content.\u003c/p\u003e\u003cp\u003e - Do not fabricate data, cases, research conclusions, or celebrity opinions.\u003c/p\u003e\u003cp\u003e - If the facts are insufficient, clarify that it is an empirical judgment or a high-probability observation.\u003c/p\u003e\u003cp\u003e - If user information is insufficient, make reasonable assumptions first, and explain the assumptions in the output.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e ## Default Response Method\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e After a user enters a topic, the response is as follows:\u003c/p\u003e\u003cp\u003e \"I will focus on this topic, first identifying common stereotypes, then selecting the most worthwhile erroneous causal relationships to break, generating a set of 'correct non-consensus' for you, and completing the opening viewpoint, argument framework, and development path.\"\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Then begin the actual output.\u003c/p\u003e7:[\"$\",\"div\",null,{\"className\":\"container pt-[42px] md:pt-[100px]\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col gap-5 md:gap-[60px]\",\"children\":[[\"$\",\"$L33\",null,{\"label\":\"Skills\",\"fallbackHref\":\"/skills\"}],[\"$\",\"$L34\",null,{\"skill\":{\"id\":\"019e00d2-78ba-73bc-93d4-eae7d91298a9\",\"created_at\":\"2026-05-07T05:04:14.010Z\",\"updated_at\":\"2026-05-11T14:48:49.242Z\",\"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\",\"cove"])</script><script>self.__next_f.push([1,"r_images\":[\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2\",\"https://cdn.gooo.ai/web-images/f697d3abe7d40284b9afc64c0ec008739ef2f24e668d3e36d7f7890b70206ad7\"],\"fork_count\":7,\"earned_credits\":1400,\"price\":200,\"content\":{\"steps\":[{\"instructions\":\"$35\",\"instructions_raw\":\"$36\",\"localized_instructions_raw\":\"$37\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"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\":\"3. 检索后如何整理信息\\n3.1 建立统一记录结构\\n每篇文献整理成统一 record。\\n字段:\\n```text\\npmid\\ndoi\\npmcid\\ntitle\\nauthors\\njournal\\njournal_abbrev\\nissn\\neissn\\nyear\\nabstract\\nquery_source\\nevidence_level\\nevidence_tags\\npaper_type\\nurl\\n```\\n3.2 去重\\n优先级:\\n1. PMID 去重。\\n2. 没有 PMID 时用 DOI 去重。\\n3. 没有 DOI 时用 lower(title) + year + first_author 去重。\\n保留第一次命中的 query_source,同时记录该文献被哪些 query 命中。\\n3.3 证据分级\\n必须区分:\\n直接证据:\\n目标物种、组织、细胞类型、模型、处理条件直接命中。\\n间接证据:\\n相邻系统、相似模型、相近机制支持,但不是用户问题的直接系统。\\n未见直接证据:\\n只能找到背景、推测、综述或相邻模型,没有直接实验结果。\\n3.4 文献类型标注\\n至少标注:\\n• original research\\n• review\\n• protocol\\n• preprint\\n• dataset/resource\\n• clinical study\\n• method paper\\n3.5 排序规则\\n推荐排序:\\n1. 直接证据原始研究。\\n2. 关键机制研究。\\n3. 最新重要研究。\\n4. 经典奠基研究。\\n5. 高质量综述。\\n6. 间接证据。\\n不要只按 IF 排序。IF 是期刊层面指标,不等于单篇文献质量。\",\"instructions_raw\":\"\u003cp\u003e3. 检索后如何整理信息\u003c/p\u003e\u003cp\u003e3.1 建立统一记录结构\u003c/p\u003e\u003cp\u003e每篇文献整理成统一 record。\u003c/p\u003e\u003cp\u003e字段:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003epmid\u003c/p\u003e\u003cp\u003edoi\u003c/p\u003e\u003cp\u003epmcid\u003c/p\u003e\u003cp\u003etitle\u003c/p\u003e\u003cp\u003eauthors\u003c/p\u003e\u003cp\u003ejournal\u003c/p\u003e\u003cp\u003ejournal_abbrev\u003c/p\u003e\u003cp\u003eissn\u003c/p\u003e\u003cp\u003eeissn\u003c/p\u003e\u003cp\u003eyear\u003c/p\u003e\u003cp\u003eabstract\u003c/p\u003e\u003cp\u003equery_source\u003c/p\u003e\u003cp\u003eevidence_level\u003c/p\u003e\u003cp\u003eevidence_tags\u003c/p\u003e\u003cp\u003epaper_type\u003c/p\u003e\u003cp\u003eurl\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e3.2 去重\u003c/p\u003e\u003cp\u003e优先级:\u003c/p\u003e\u003cp\u003e1. PMID 去重。\u003c/p\u003e\u003cp\u003e2. 没有 PMID 时用 DOI 去重。\u003c/p\u003e\u003cp\u003e3. 没有 DOI 时用 lower(title) + year + first_author 去重。\u003c/p\u003e\u003cp\u003e保留第一次命中的 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\":\"$3b\",\"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已有研"])</script><script>self.__next_f.push([1,"究在人源 retinal organoids 中观察到发育阶段相关的光感受器应激和退化现象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。\\n```\\n不要写成:\\n```text\\n[1]\\n(PMID: xxxxx)\\n见文献1\\n```\\n4.2 推荐回答结构\\n第一段:直接结论。\\n```text\\n结论:已有相关报道,但直接证据主要集中在……;关于……仍缺少直接证据。\\n```\\n第二段:证据分级。\\n```text\\n直接证据:\\n- 文献 A:……\\n \\n间接证据:\\n- 文献 B:……\\n \\n未见直接证据:\\n- 本轮未找到……\\n```\\n第三段:机制归纳。\\n按主题分组,例如:\\n• apoptosis / caspase pathway\\n• oxidative stress\\n• mitochondrial dysfunction\\n• ER stress\\n• hypoxia / metabolic stress\\n• inflammation\\n• developmental mismatch\\n第四段:研究空白。\\n明确说明哪些问题没有直接证据。\\n第五段:实验启发。\\n如果用户需要实验设计,给出 marker、assay、time point、control。\",\"instructions_raw\":\"\u003cp\u003e4. 回复中如何组织引用\u003c/p\u003e\u003cp\u003e4.1 正文引用格式\u003c/p\u003e\u003cp\u003e正文引用必须可点击。\u003c/p\u003e\u003cp\u003e格式:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e示例:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e已有研究在人源 retinal organoids 中观察到发育阶段相关的光感受器应激和退化现象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e不要写成:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e[1]\u003c/p\u003e\u003cp\u003e(PMID: xxxxx)\u003c/p\u003e\u003cp\u003e见文献1\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e4.2 推荐回答结构\u003c/p\u003e\u003cp\u003e第一段:直接结论。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e结论:已有相关报道,但直接证据主要集中在……;关于……仍缺少直接证据。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第二段:证据分级。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e直接证据:\u003c/p\u003e\u003cp\u003e- 文献 A:……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e间接证据:\u003c/p\u003e\u003cp\u003e- 文献 B:……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e未见直接证据:\u003c/p\u003e\u003cp\u003e- 本轮未找到……\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第三段:机制归纳。\u003c/p\u003e\u003cp\u003e按主题分组,例如:\u003c/p\u003e\u003cp\u003e• apoptosis / caspase pathway\u003c/p\u003e\u003cp\u003e• oxidative stress\u003c/p\u003e\u003cp\u003e• mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e• ER stress\u003c/p\u003e\u003cp\u003e• hypoxia / metabolic stress\u003c/p\u003e\u003cp\u003e• inflammation\u003c/p\u003e\u003cp\u003e• developmental mismatch\u003c/p\u003e\u003cp\u003e第四段:研究空白。\u003c/p\u003e\u003cp\u003e明确说明哪些问题没有直接证据。\u003c/p\u003e\u003cp\u003e第五段:实验启发。\u003c/p\u003e\u003cp\u003e如果用户需要实验设计,给出 marker、assay、time point、control。\u003c/p\u003e\",\"localized_instructions_raw\":\"$3c\",\"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"])</script><script>self.__next_f.push([1," 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\":\"$3d\",\"instructions_raw\":\"$3e\",\"localized_instructions_raw\":\"$3f\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"7. 最终回复自检清单\\n发出前必须检查:\\n• 是否先回答用户核心问题。\\n• 是否区分直接证据、间接证据、未见直接证据。\\n• 是否所有正文引用都可点击。\\n• 是否文末有完整文献信息列表。\\n• 是否每篇文献都带 IF 标注或待核验/未检出标注。\\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\":\"$40\",\"instructions_raw\":\"$41\",\"localized_instructions_raw\":\"$42\",\"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., "])</script><script>self.__next_f.push([1,"**Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\\n```\",\"instructions_raw\":\"\u003cp\u003e9. 推荐最终交付模板\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e结论:\u003c/p\u003e\u003cp\u003e……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e证据等级:\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e直接证据:\u003c/p\u003e\u003cp\u003e- ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e间接证据:\u003c/p\u003e\u003cp\u003e- ……[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e未见直接证据:\u003c/p\u003e\u003cp\u003e- ……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e机制归纳:\u003c/p\u003e\u003cp\u003e1. ……\u003c/p\u003e\u003cp\u003e2. ……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e检索边界:\u003c/p\u003e\u003cp\u003e本轮主要检索 PubMed / PMC / BioC / bioRxiv;初筛基于 metadata + abstract,仅对关键文献进入全文复核。IF 标注基于公开可访问来源核查;无法高置信匹配时标为待核验或未检出。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e完整文献信息列表:\u003c/p\u003e\u003cp\u003e1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*\u003c/p\u003e\u003cp\u003e2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\",\"localized_instructions_raw\":\"$43\",\"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.\",\"long_description\":\"$44\",\"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\":[\"research\"],\"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\":\"019e1ec2-4eb8-73d0-99a3-91c129d380dd\",\"created_at\":\"2026-05-13T00:35:11.160Z\",\"updated_at\":\"2026-05-13T23:30:07.034Z\",\"creator_id\":\"66386f4a-fa27-4b73-b05b-5c4f820a4dd3\",\"name\":\"Harvard Framework Financial Report Analyst\",\"description\":\"Based on the Harvard analytical framework, it automatically performs in-depth analysis of listed companies' annual reports across four dimensions: strategy, accounting, finance, and prospects, outputting professional-grade research reports and visualization charts.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Squirrel\",\"icon_bg_color\":\"skill-bg14\",\"cover_images\":[\"https://cdn.gooo.ai/gen-images/652c98c39c4f96407b14bc776ac1da7d7c18e9264d9a36b85aa5422a1de41588.png\"],\"fork_count\":0,\"earned_credits\":0,\"price\":100,\"content_visibility\":\"private\",\"origin\":\"custom\",\"categories\":[\"research\"],\"suggested_categories\":[],\"featured_reason\":\"它以哈佛分析框架为核心,全面深入剖析上市公司年报,从战略到前景,提供六份专业报告,是深度财报分析的利器。\",\"seo_description\":\"基于哈佛框架,深入分析上市公司年报,从战略、会计、财务、前景四维输出6份专业报告,助您全面洞察投资价值。\",\"lo"])</script><script>self.__next_f.push([1,"ng_description\":\"这份技能能够根据用户提供的上市公司年度报告PDF,运用哈佛分析框架,为用户提供一份全面、深入的企业财务分析报告。它专为需要对企业进行专业研究、投资决策支持或学术分析的金融专业人士、投资者和研究员设计。\\n\\n该技能的核心功能包括对公司战略、会计质量、财务状况和未来前景进行多维度评估。它能够自动提取年报中的关键财务数据,并进行严谨的数据验证,确保分析的准确性。在此基础上,它会深入分析公司的行业地位、竞争优势、会计政策对盈余质量的影响,并运用多种财务比率和杜邦分析法揭示公司的偿债能力、营运效率、盈利能力和成长潜力。\\n\\n通过结合实时网络搜索获取的行业数据和市场信息,该技能还能对公司进行财务预测和估值分析,并最终提供投资评级和目标价格区间。用户将获得六份独立的专业分析文档,包括原始财务数据、战略分析、会计质量分析、财务分析、前景分析以及一份整合了所有关键发现和可视化图表的综合报告,为用户提供清晰、有力的决策依据。\",\"input_hint\":\"Please upload the annual report PDF; I will analyze it using the Harvard framework.\",\"slug\":\"harvard-financial-report-analysis\",\"featured\":false,\"approved_at\":\"2026-05-13T23:30:00.619Z\",\"creator\":{\"id\":\"66386f4a-fa27-4b73-b05b-5c4f820a4dd3\",\"name\":\"535416272\"},\"latest_version_id\":\"019e2137-6a8f-7689-9b68-b519159866eb\"},{\"id\":\"019e1c17-53c4-72fd-bb5d-9d2c6fe25e01\",\"created_at\":\"2026-05-12T12:09:11.364Z\",\"updated_at\":\"2026-05-13T02:15:02.261Z\",\"creator_id\":\"2e62b025-46fd-452e-9e00-867a9b791aa0\",\"name\":\"Non-consensus engine\",\"description\":\"The core of this prompt isn't \\\"helping users come up with counterintuitive headlines,\\\" but rather solidifying your methodology into a stable process: Stereotype identification → causal breakdown of errors → counterexamples → new framework establishment → concept definition → content development. In other words, it's not essentially a \\\"writing skill,\\\" but a cognitive reconstruction-based content generation skill. This makes it more distinctive than ordinary topic selection tools.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Elephant\",\"icon_bg_color\":\"skill-bg10\",\"cover_images\":[\"https://cdn.gooo.ai/web-images/43ea23aad7a27583b5b368fdbcc9478fec44db529210a12c1b7d7c9bc6023491\"],\"fork_count\":0,\"earned_credits\":0,\"price\":100,\"content\":{\"steps\":[{\"instructions\":\"$45\",\"instructions_raw\":\"$46\",\"localized_instructions_raw\":\"$47\",\"tools\":{},\"at_references\":[]}]},\"content_visibility\":\"public\",\"origin\":\"custom\",\"categories\":[\"research\"],\"suggested_categories\":[\"research\"],\"featured_reason\":\"这个技能是内容创作者的利器,它能帮你识别并打破大众对某个主题的错误认知,提供更接近真实的洞察,并将其转化为有传播力的内容。\",\"seo_description\":\"识别并打破常见刻板印象,提供更接近真实世界的新认知框架,助你批量产出有深度、可传播的“正确的非共识”内容。\",\"long_description\":\"“正确的非共识生成器”旨在帮助内容创作者和策略师,针对特定主题、行业或人群,批量生成有深度、可传播的“正确非共识”内容。它通过识别大众对某个主题的常见刻板印象,拆解其中过度简化的因果关系,并提供更接近真实世界的新认知框架,从而帮助用户创作出既能吸引眼球又富有洞察力的内容。\\n\\n该技能的核心功能在于,它不仅仅是提出与众不同的观点,更侧重于纠正普遍存在的错误认知。它能够帮助用户发现并挑战那些“有X就能Y”、“做X就会Y”等类型的简化因果,并通过给出反例、揭示结构性矛盾或提供更全面的解释来构建新的认知。最终,它会为用户提供一系列可用于内容创作的骨架,包括核心主题、错误刻板印象分析、新认知框架"])</script><script>self.__next_f.push([1,"、关键概念定义以及适合的内容形式建议。\\n\\n用户只需输入一个主题,该技能便会围绕此主题,生成五条“正确的非共识”候选。每条候选都包含一个引人入胜的开头观点、清晰的论证骨架和多样的展开路径,确保用户能够将其转化为完整的文章、视频脚本或课程模块。这使得用户能够高效地创作出既能引发思考,又能有效传播的优质内容,避免流于空泛或哗众取宠。\",\"input_hint\":\"What topic, industry, or issue would you like to discuss? Let's break down old perceptions together.\",\"slug\":\"non-consensus-engine\",\"featured\":false,\"approved_at\":\"2026-05-13T02:14:56.610Z\",\"creator\":{\"id\":\"2e62b025-46fd-452e-9e00-867a9b791aa0\",\"name\":\"知识猫\",\"picture\":\"https://cdn.gooo.ai/web-images/c35dd985e8afcddfbfef4af8c8962551218f58aafbc3e9da9f0f872b362580d9\"},\"latest_version_id\":\"019e1c21-b4a9-7c4f-b0b1-f196c3589dd3\"},{\"id\":\"019e180f-6831-72ec-ae4f-7c17e3fd91ce\",\"created_at\":\"2026-05-11T17:22:03.441Z\",\"updated_at\":\"2026-05-12T02:30:39.750Z\",\"creator_id\":\"1b50b708-77c9-483b-ba73-d1db1864cc5d\",\"name\":\"MM-article\",\"description\":\"This lightweight research and writing skill is based on information sources from the past 3 days. It extracts anchor points from user information sources and recommends 5 candidate topics (3 consensus hotspots + 2 forward-looking signals). After the user selects a topic, it delves into the relevant information and generates an editable outline. The main writing only begins after the user explicitly confirms the outline.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Firefly\",\"icon_bg_color\":\"skill-bg01\",\"cover_images\":[\"https://cdn.gooo.ai/web-images/2001d59579dc38a5dc632880bc66facfc832512ea32e4b7ef04b96fbd4ac9ba5\"],\"fork_count\":0,\"earned_credits\":0,\"price\":50,\"content_visibility\":\"private\",\"origin\":\"custom\",\"categories\":[\"research\",\"write\"],\"suggested_categories\":[],\"featured_reason\":\"这款技能是深度内容创作者的理想之选。它能从海量信息中精准捕捉最新热点和前瞻信号,并提供结构严谨、可追溯来源的选题和文章大纲,确保内容既有深度又具时效性。\",\"seo_description\":\"基于信源扫描近3天信息,为您推荐5个可执行文章选题,包含共识热点与前瞻信号,助您抢占内容先机。\",\"long_description\":\"此技能可帮助用户从海量信息中识别高价值内容,并将其转化为结构化的文章选题和完整文章。它专为内容创作者、市场分析师以及任何需要从最新行业动态中获取灵感并快速产出高质量内容的用户设计。\\n\\n该技能首先会根据用户提供的行业和信源列表,扫描最近三天内的相关信息,从中提炼出关键信息信号,并生成一个临时锚点池。随后,它将这些锚点进行聚类,并基于此推荐五个具有潜力的文章选题,包括三个“共识热点型”选题和两个“前瞻信号型”选题,每个选题都附有详细的推荐理由、写作角度和读者价值分析。\\n\\n用户选择一个选题后,技能会深入挖掘与该选题相关的资料,核实关键事实、数据和观点,并生成一份可供修改的文章大纲。最后,在用户确认大纲后,它将根据预设的平台和语气要求,撰写出完整的文章正文,并附上所有引用来源。整个过程旨在确保内容的时效性、准确性和深度,帮助用户高效完成从选题研究到文章发布的全部流程。\",\"input_hint\":\"What industry and information source are you referring to? For example, \\\"independent website operation + Shopify blog, r/ecommerce\\\"\",\"slug\":\"article-research-writing\",\"featured\":false,\"approved_at\":\"2026-05-12T02:30:33.678Z\",\"creator\":{\"id\":\"1b50b708-77c9-483b-ba73-d1db1864cc5d\",\"name\":\"MMind\",\"picture\":\"https://cdn.gooo.ai/web-images/46fb75fdcf667240db158268dd13ab9e69f01d9abc77d5fe1b9da8ca805898c9\"},\"latest_version_id\":\"019e1828-1c2f-7d43-b419-1dd8334a4e8b\"}],\"publicConfig\":{\"PUBLIC_AGENT_MODEL_MAP\":{\"lite\":\"deepseek-v4-pro"])</script><script>self.__next_f.push([1,"\",\"pro\":\"claude-4-5-sonnet\",\"max\":\"claude-4-5-sonnet\"},\"PUBLIC_AGENT_MODEL_TIER_OPTIONS\":{\"lite\":[\"kimi-k2.5\",\"kimi-k2.6\",\"minimax-m2-5\",\"deepseek-v4-pro\"],\"pro\":[\"claude-4-5-sonnet\",\"gpt-5-4\"],\"max\":[\"claude-4-6-opus\",\"claude-4-7-opus\",\"gpt-5-5\"]},\"PUBLIC_AGENT_MODELS\":[\"claude-4-5-sonnet\",\"claude-4-5-opus\",\"minimax-m2\",\"glm-4.7\",\"kimi-k2.5\"],\"PUBLIC_ANNUAL_REPORT_OPEN\":false,\"PUBLIC_APPLE_ON_DEVICE_MODELS\":[{\"name\":\"base\",\"category\":\"Whisper\",\"url\":\"https://cdn.gooo.ai/assets/on-device-models/apple/ggml-base.aar\",\"size\":172067706,\"checksum\":\"66d482ef02f14abec5fa914aecc345adf465691708ba952876ee60f6d6e72424\"},{\"name\":\"small\",\"category\":\"Whisper\",\"url\":\"https://cdn.gooo.ai/assets/on-device-models/apple/ggml-small.aar\",\"checksum\":\"4ea5041a2a5a42c9e8d95eef1c3e814a0c9d067cf54c44e1fab9baa7303a5961\",\"size\":616449150}],\"PUBLIC_ASK_AI_MODELS\":[\"gpt-4o\",\"gpt-4o-mini\",\"gpt-4.1\",\"gpt-5\",\"gpt-5-mini\",\"claude-4-sonnet\",\"claude-4-5-sonnet\",\"gemini-2.5-flash\",\"deepseek/deepseek-r1\",\"o4-mini\",\"gemini-2.5-pro\"],\"PUBLIC_ASK_AI_MODELS_V2\":[\"gpt-4o\",\"gpt-5-4\",\"gpt-5-5\",\"gemini-3.1-pro-preview\",\"gemini-3-flash-preview\",\"gemini-3.1-flash-lite-preview\",\"gemini-2.5-flash\",\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"claude-4-5-sonnet-reasoning\",\"claude-4-7-opus\",\"claude-4-6-opus\",\"grok-4-1-fast-reasoning\",\"minimax-m2-5\",\"minimax-m2\",\"kimi-k2.5\",\"kimi-k2.6\",\"glm-4.7\",\"deepseek-v4-pro\",\"deepseek-v4-flash\"],\"PUBLIC_CHAT_ABORT_SWITCH\":true,\"PUBLIC_CRAFT_AI_MODELS\":{\"page\":[\"claude-4-7-opus\",\"claude-4-6-opus\",\"claude-4-5-sonnet\",\"claude-4-5-opus\",\"gemini-3.1-pro-preview\",\"gemini-2.5-pro\",\"gpt-5\",\"grok-4\"],\"webpage\":[\"claude-4-7-opus\",\"gemini-3.1-pro-preview\",\"claude-4-6-sonnet\",\"claude-4-5-sonnet\",\"kimi-k2.6\",\"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-5-sonnet\",\"PUBLIC_DEFAULT_AI_WORKFLOW_MODEL\":\"claude-4-5-sonnet\",\"PUBLIC_DEFAULT_AI_WRITE_MODEL\":\"claude-4-5-sonnet\",\"PUBLIC_DEFAULT_COMPACT_MODEL\":\"gemini-3-flash-preview\",\"PUBLIC_DEFAULT_SPRITE_MODEL\":\"deepseek-v4-pro\",\"PUBLIC_EXTENSION_ASK_AI_MODELS\":[\"gemini-2.5-flash\"],\"PUBLIC_FF_NEW_BOARD_V2\":true,\"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\",\"qwen-image-2.0-pro\",\"qwen-image-2.0\"],\"PUBLIC_LAST_YOUWEB_RELEASE_TIME\":\"2026-05-13T03:15:33Z\",\"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.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_m"])</script><script>self.__next_f.push([1,"odel_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-02-hd\":{\"title\":\"TTS\",\"type\":\"tts\",\"from\":\"minimax\",\"value\":\"speech-02-hd\",\"providers\":[\"minimax\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"speech-2.6-hd\":{\"title\":\"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_chatgpt.png\"},\"speech-2.8-hd\":{\"title\":\"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_chatgpt.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\"},\"claude-4-5-sonnet-reasoning\":{\"title\":\"Claude Sonnet 4.5\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-5-sonnet-reasoning\",\"providers\":[\"anthropic\",\"bedrock\",\"aihubmix\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"display_thinking_tag\":true}},\"deepseek/deepseek-r1\":{\"title\":\"DeepSeek V3.2\",\"type\":\"reasoning\",\"from\":\"deepseek\",\""])</script><script>self.__next_f.push([1,"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-fast-reasoning\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/"])</script><script>self.__next_f.push([1,"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,\"extra\":{}},\"kling-v1-6\":{\"title\":\"Kling video 1.6\",\"type\":\"video\",\"from\":\"kling\",\"value\":\"kling-v1-6\",\"icon_url\":\"https://cdn.gooo.ai"])</script><script>self.__next_f.push([1,"/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}},\"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}},\"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\":{}},\"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}},\"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}},\"gemini-3.1-flash-image-preview\":{\"title\":\"Nano Banana 2\",\"type\":\"image\",\"from\":\"vertexai\",\"value\":\"gemini-3.1-flash-image-preview\",\"providers\":[\"vertexai\"],\"input_token_limit\":64000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_nano_banana.png\",\"extra\":{\"display_free\":false}},\"qwen-image-2.0\":{\"title\":\"Qwen Image 2.0\",\"type\":\"image\",\"from\":\"qwen\",\"value\":\"qwen-image-2.0\",\"providers\":[\"aliyun\"],\"input_token_limit\":1000000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\",\"extra\":{}},\"qwen-image-2.0-pro\":{\"title\":\"Qwen Image 2.0 Pro\",\"type\":\"image\",\"from\":\"qwen\",\"value\":\"qwen-image-2.0-pro\",\"providers\":[\"aliyun\"],\"input_token_limit\":1000000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\",\"extra\":{}},\"gpt-5.3-chat-latest\":{\"title\":\"GPT-5.3\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-5.3-chat-latest\",\"providers\":[\"openai\"],\"input_token_limit\":400000,\"output_token_limit\":128000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_u"])</script><script>self.__next_f.push([1,"ser_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\":false,\"display_thinking_tag\":true}},\"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\":true}},\"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}},\"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}},\"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}},\"deepseek-v4-flash\":{\"title\":\"DeepSeek V4 Flash\",\"type\":\"reasoning\",\"from\":\"deepseek\",\"value\":\"deepseek-v4-flash\",\"providers\":[\"deepseek\"],\"input_token_limit\":200000,\"output_token_limit\":32000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_deepseek.png\",\"extra\":{\"disable_image_input\":true,\"prediction\":false,\"display_thinking_tag\":false}},\"gemini-3.1-flash-tts\":{\"title\":\"Gemini 3.1 Flash TTS\",\"type\":\"tts\",\"from\":\"google\",\"value\":\"gemini-3.1-flash-tts\",\"providers\":[\"google\",\"vertexai\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"extra\":{}},\"veo-3.1-generate-001\":{\"title\":\"Veo 3.1\",\"type\":\"video\",\"from\":\"google\",\"value\":\"veo-3.1-generate-001\",\"providers\":[\"vertexai\"],\"input_token_limit\":128000,\"output_token_limit\":8192,\"i"])</script><script>self.__next_f.push([1,"con_url\":\"https://cdn.gooo.ai/assets/gemini-detail-icon.png\",\"extra\":{\"fake_reasoning\":false}},\"veo-3.1-fast-generate-001\":{\"title\":\"Veo 3.1 Fast\",\"type\":\"video\",\"from\":\"google\",\"value\":\"veo-3.1-fast-generate-001\",\"providers\":[\"vertexai\"],\"input_token_limit\":128000,\"output_token_limit\":8192,\"icon_url\":\"https://cdn.gooo.ai/assets/gemini-detail-icon.png\",\"extra\":{\"fake_reasoning\":false}}},\"PUBLIC_OFFLINE_WEB_PACKAGES\":[{\"name\":\"youweb\",\"url\":\"https://cdn.gooo.ai/offline-packages/production/youweb/baf54027fb/baf54027fb.zip\",\"shasum\":\"e68b74f5c5ce22b6c513cacb5250838da8ea87664cc7a7f13665dae5d2d943f8\"}],\"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\":[\"claude-4-6-opus\",\"claude-4-7-opus\",\"gpt-5-5\",\"gemini-3.1-pro-preview\",\"deepseek-v4-pro\"],\"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\"},\"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>