YouMind
OverviewUse casesSkillsPromptsPricingBlogUpdates

In-depth and reliable research on Bio/Med

Applicable Scenarios: Complete a round of biological/biomedical research literature retrieval and provide users with detailed and reliable output. Core Objectives: 1. After a user initiates a search, the system can break down the question and keywords. 2. Retrieve literature using publicly available 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 (Information Impact Factor) with publicly available sources; if high-confidence verification is not possible, it must be marked as "Pending Verification" or "Not Detected".

installedBy
0
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 provides a rigorous biomedical literature review process, from multi-level searches to impact factor (IF) verification, ensuring highly reliable and reproducible results, making it a valuable tool for researchers.

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-bg05.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="M11.7979 2.12C11.135 2.12 10.4774 2.30476 9.92764 2.6796C9.37791 3.05445 8.91974 3.68886 8.91974 4.45937C8.91974 5.60867 9.60135 6.31624 9.90685 6.6132C10.1829 6.88086 10.5927 7.18452 11.1285 7.5721C11.6643 7.95969 12.3046 8.40463 12.9409 8.84125C14.2131 9.71416 15.5075 10.5825 15.7865 10.7873C16.3857 11.2276 16.5197 11.7011 16.5197 12.1514C16.5197 12.6651 16.3682 12.9661 16.1457 13.1756C15.9232 13.3851 15.5892 13.52 15.1319 13.52H14.2769C13.9085 12.1001 12.5415 10.48 9.94545 10.48C7.6248 10.48 5.90763 12.2657 4.65217 13.6729C4.52416 13.7693 4.4299 13.9037 4.38287 14.057C4.33584 14.2102 4.33845 14.3743 4.39031 14.526C4.44218 14.6776 4.54065 14.809 4.67165 14.9013C4.80266 14.9936 4.95949 15.0422 5.11974 15.04H7.7174L6.68873 17.8054L6.6917 17.8069C6.64742 17.9219 6.63178 18.046 6.64613 18.1684C6.66048 18.2908 6.70439 18.4079 6.77407 18.5096C6.84375 18.6113 6.93712 18.6945 7.04612 18.752C7.15512 18.8096 7.27648 18.8398 7.39974 18.84H11.1997V21.88H12.7197V18.84H13.9251L14.4624 19.3773C14.5324 19.4503 14.6163 19.5085 14.7091 19.5486C14.8019 19.5887 14.9018 19.6099 15.0029 19.611C15.1041 19.612 15.2044 19.5928 15.298 19.5546C15.3916 19.5164 15.4766 19.4599 15.5481 19.3884C15.6196 19.3169 15.6762 19.2318 15.7144 19.1382C15.7526 19.0446 15.7717 18.9443 15.7707 18.8432C15.7697 18.7421 15.7485 18.6422 15.7084 18.5494C15.6683 18.4566 15.61 18.3727 15.5371 18.3027L14.7771 17.5427C14.6346 17.4001 14.4413 17.32 14.2397 17.32H12.7197L13.0997 15.04H15.1319C15.9027 15.04 16.6434 14.7955 17.1877 14.283C17.7321 13.7704 18.0397 13.0057 18.0397 12.1514C18.0397 11.3036 17.6645 10.2806 16.6875 9.56265C16.2796 9.26314 15.0625 8.45446 13.8004 7.58843C13.1693 7.15542 12.5366 6.71592 12.0191 6.34156C11.5016 5.96719 11.0775 5.6311 10.9652 5.52218C10.6193 5.18615 10.4397 5.12888 10.4397 4.45937C10.4397 4.2624 10.529 4.10831 10.7826 3.93539C10.9198 3.84186 11.101 3.76534 11.2947 3.71273C11.383 3.91667 11.5289 4.09037 11.7146 4.21247C11.9002 4.33457 12.1175 4.39975 12.3397 4.4C12.4227 4.39958 12.5053 4.39013 12.5862 4.37179C12.8403 4.5942 13.1163 4.83513 13.2126 4.94476C13.55 5.32856 13.5109 6.13078 13.5109 6.13078C13.8377 5.92254 14.2322 5.49571 14.2383 5.01007C14.2436 4.66427 14.1025 4.33422 13.9087 4.16398C13.7324 4.0089 13.5442 3.87799 13.3654 3.75281C13.44 3.59917 13.479 3.43075 13.4797 3.26C13.4794 2.98028 13.3762 2.71047 13.1898 2.50191C13.0034 2.29334 12.7468 2.16059 12.4689 2.1289C12.4531 2.12709 12.4372 2.1256 12.4214 2.12445C12.3943 2.1215 12.367 2.12001 12.3397 2.12H11.7979ZM10.2126 15.04H11.1997V17.32H8.77724L10.2126 15.04Z" 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">GitHub Front-End Hot Projects - Daily Ranking</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Automatically retrieves the daily front-end project rankings and latest project data from Best of JS, combining real-time GitHub star counts and official descriptions to generate a standardized daily front-end trending list document. It includes project URLs, star counts, Chinese descriptions, and recommendations, making it ideal for front-end developers to quickly understand the day's popular projects and technology trends.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/06b7eae6029ebb119a57585ed1c36049c0880bc68c4fea2b32b6de301b2ab159@small" alt="GitHub Front-End Hot Projects - Daily Ranking" 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-bg03.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="M17.8336 3.65999C17.7319 3.6585 17.6313 3.6652 17.5308 3.67929C16.7263 3.79205 16.1771 4.30264 15.702 4.77773C15.6413 4.83842 15.6157 4.90203 15.564 4.96476C14.7694 4.72732 13.55 4.41999 12 4.41999C10.4497 4.41999 9.22987 4.72673 8.43453 4.96476C8.38255 4.90181 8.35776 4.83871 8.29648 4.77773C7.82172 4.30305 7.27144 3.79342 6.46773 3.68078C5.66321 3.56802 4.81825 3.95869 3.99773 4.77921C3.1772 5.59974 2.78653 6.44469 2.89929 7.24921C3.01205 8.05374 3.52264 8.60288 3.99773 9.07796C4.14943 9.22967 4.34012 9.27997 4.51132 9.38968C3.80966 10.905 2.87999 13.3693 2.87999 16.58C2.88013 16.7318 2.92574 16.8801 3.01093 17.0058C3.09612 17.1314 3.21699 17.2287 3.35796 17.2851L7.05257 18.762C7.29409 19.0331 9.21451 21.14 12 21.14C14.7855 21.14 16.7059 19.0331 16.9474 18.762L20.642 17.2851C20.783 17.2287 20.9039 17.1314 20.9891 17.0058C21.0742 16.8801 21.1199 16.7318 21.12 16.58C21.12 13.3692 20.1909 10.9041 19.4887 9.3882C19.6592 9.27867 19.8498 9.22893 20.0008 9.07796C20.4759 8.60288 20.9865 8.05225 21.0992 7.24773C21.212 6.44321 20.8213 5.59825 20.0008 4.77773C19.2828 4.05977 18.5455 3.67045 17.8336 3.65999ZM17.7416 5.18445C17.9606 5.15375 18.2821 5.20842 18.9261 5.85242C19.5701 6.49641 19.6248 6.81794 19.5941 7.03695C19.5634 7.25596 19.3417 7.58764 18.9261 8.00328C18.7573 8.17202 18.5571 8.2862 18.3234 8.3625C18.3033 8.36909 18.2835 8.37652 18.2641 8.38476C17.9087 7.68297 17.3452 6.9741 16.4754 6.2814C16.4955 6.25445 16.5139 6.22618 16.5303 6.19679C16.6096 6.05309 16.6884 5.94072 16.7767 5.85242C17.1923 5.43679 17.5225 5.21514 17.7416 5.18445ZM6.25695 5.18593C6.47596 5.21663 6.80764 5.43827 7.22327 5.8539V5.85539C7.31063 5.94232 7.3896 6.05316 7.46968 6.19828C7.49821 6.24957 7.53258 6.29739 7.5721 6.34078C6.97298 6.91493 6.32518 7.65561 5.82499 8.43078C5.77805 8.40326 5.72828 8.38087 5.67656 8.36398C5.44313 8.28761 5.24064 8.1715 5.07242 8.00328C4.65678 7.58764 4.43514 7.25744 4.40445 7.03843C4.37375 6.81942 4.42842 6.4979 5.07242 5.8539C5.71641 5.20991 6.03794 5.15524 6.25695 5.18593ZM8.95999 10.5C9.37951 10.5 9.71999 10.8405 9.71999 11.26C9.71999 11.6795 9.37951 12.02 8.95999 12.02C8.54047 12.02 8.19999 11.6795 8.19999 11.26C8.19999 10.8405 8.54047 10.5 8.95999 10.5ZM15.04 10.5C15.4595 10.5 15.8 10.8405 15.8 11.26C15.8 11.6795 15.4595 12.02 15.04 12.02C14.6205 12.02 14.28 11.6795 14.28 11.26C14.28 10.8405 14.6205 10.5 15.04 10.5ZM10.48 13.54H13.52C15.057 14.5952 15.5521 16.6322 15.7154 17.8551C15.1357 18.3846 13.6179 19.62 12 19.62C10.3798 19.62 8.86086 18.3818 8.28312 17.8536C8.44531 16.6216 8.93977 14.5677 10.48 13.54ZM10.48 15.82C10.48 16.58 10.48 17.34 11.24 17.34H12.76C13.52 17.34 13.52 16.58 13.52 15.82H10.48Z" 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">Front-end development topic library</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Automatically collects high-quality articles and projects from 9 specified front-end platforms over the past month, and intelligently categorizes and organizes them into a structured collection document.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/d1b56a638be9c3093b63fc726b236528beb7fd04f8f707c473c55e6face382f3@small" alt="Front-end development topic library" 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-bg13.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="M9.72002 2.85999C7.66802 2.85999 5.77874 3.47417 4.38369 4.65459C2.98864 5.83502 2.12002 7.59732 2.12002 9.69999C2.12002 11.0969 2.82436 12.2908 3.784 13.2773C4.74364 14.2638 5.9776 15.0937 7.2322 15.8646C8.48681 16.6355 9.76494 17.3452 10.7947 18.0303C11.8245 18.7154 12.5793 19.3981 12.8402 19.9199C12.9063 20.0524 13.0098 20.1627 13.1378 20.2373C13.2658 20.3118 13.4128 20.3473 13.5607 20.3394C13.7086 20.3316 13.851 20.2806 13.9703 20.1929C14.0897 20.1052 14.1808 19.9845 14.2325 19.8457C14.2325 19.8457 14.4309 19.3133 14.6288 18.6493C14.8268 17.9853 15.04 17.2189 15.04 16.5207C15.04 15.3502 14.8177 14.603 14.5888 14.1145C14.4743 13.8703 14.3684 13.697 14.3201 13.5994C14.2718 13.5018 14.28 13.5073 14.28 13.5C14.28 12.2434 15.061 11.1991 16.2542 10.3101C16.2837 10.2879 16.3115 10.2636 16.3374 10.2373C16.3374 10.2373 16.3694 10.1761 16.747 10.0251C17.1247 9.87399 17.7845 9.69999 18.84 9.69999C18.9407 9.70141 19.0407 9.6828 19.1342 9.64525C19.2276 9.6077 19.3127 9.55194 19.3844 9.48123C19.4561 9.41051 19.5131 9.32625 19.552 9.23334C19.5908 9.14042 19.6108 9.0407 19.6108 8.93999C19.6108 8.83927 19.5908 8.73955 19.552 8.64664C19.5131 8.55372 19.4561 8.46946 19.3844 8.39874C19.3127 8.32803 19.2276 8.27228 19.1342 8.23472C19.0407 8.19717 18.9407 8.17856 18.84 8.17999C17.6156 8.17999 16.7553 8.38598 16.183 8.61491C15.6298 8.83617 15.3162 9.12459 15.2938 9.14483C14.8217 9.50243 14.3802 9.91068 13.998 10.3635C13.1176 10.221 12 9.86266 12 8.93999C12 7.97327 13.5368 7.62116 14.6556 7.49272C15.3099 7.41824 15.8 6.86096 15.8 6.2028V6.08256C16.4501 6.19488 17.1278 6.36042 17.752 6.60655C19.07 7.12632 20.0804 7.91661 20.3823 9.12405C20.4064 9.22095 20.4494 9.31215 20.5088 9.39243C20.5682 9.47271 20.6429 9.5405 20.7285 9.59194C20.8141 9.64337 20.909 9.67744 21.0078 9.69219C21.1065 9.70694 21.2072 9.70209 21.3041 9.67791C21.401 9.65374 21.4922 9.61071 21.5725 9.55129C21.6527 9.49187 21.7205 9.41722 21.7719 9.3316C21.8233 9.24598 21.8574 9.15107 21.8721 9.0523C21.8868 8.95352 21.882 8.85281 21.8578 8.75592C21.3996 6.92336 19.8814 5.81365 18.3086 5.19342C16.9066 4.64055 15.4587 4.45688 14.3067 4.41709C14.1596 4.20643 13.9648 3.97285 13.6403 3.75209C12.916 3.2594 11.7214 2.85999 9.72002 2.85999ZM11.24 5.89999C11.6595 5.89999 12 6.24047 12 6.65999C12 7.07951 11.6595 7.41999 11.24 7.41999C10.8205 7.41999 10.48 7.07951 10.48 6.65999C10.48 6.24047 10.8205 5.89999 11.24 5.89999Z" 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">SEO GEO Audit</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Unified SEO and GEO audit framework covering technical health, content quality, trust signals, entity authority, and AI visibility. Supports three audit scopes (single page/site/domain) and three output modes (boss/operator/specialist). Provide a website URL to start, or click to see full options.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/9295ba5c7e452dd19d927a17e6d1082c1dee67afbee874eafe35d450ecdc7178@small" alt="SEO GEO Audit" 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 research literature retrieval and provide users with detailed and reliable output. Core Objectives: 1. After a user initiates a search, the system can break down the question and keywords. 2. Retrieve literature using publicly available 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 (Information Impact Factor) with publicly available sources; if high-confidence verification is not possible, it must be marked as "Pending Verification" 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>0</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 provides a rigorous biomedical literature review process, from multi-level searches to impact factor (IF) verification, ensuring highly reliable and reproducible results, making it a valuable tool for researchers.</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-bg05.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="M11.7979 2.12C11.135 2.12 10.4774 2.30476 9.92764 2.6796C9.37791 3.05445 8.91974 3.68886 8.91974 4.45937C8.91974 5.60867 9.60135 6.31624 9.90685 6.6132C10.1829 6.88086 10.5927 7.18452 11.1285 7.5721C11.6643 7.95969 12.3046 8.40463 12.9409 8.84125C14.2131 9.71416 15.5075 10.5825 15.7865 10.7873C16.3857 11.2276 16.5197 11.7011 16.5197 12.1514C16.5197 12.6651 16.3682 12.9661 16.1457 13.1756C15.9232 13.3851 15.5892 13.52 15.1319 13.52H14.2769C13.9085 12.1001 12.5415 10.48 9.94545 10.48C7.6248 10.48 5.90763 12.2657 4.65217 13.6729C4.52416 13.7693 4.4299 13.9037 4.38287 14.057C4.33584 14.2102 4.33845 14.3743 4.39031 14.526C4.44218 14.6776 4.54065 14.809 4.67165 14.9013C4.80266 14.9936 4.95949 15.0422 5.11974 15.04H7.7174L6.68873 17.8054L6.6917 17.8069C6.64742 17.9219 6.63178 18.046 6.64613 18.1684C6.66048 18.2908 6.70439 18.4079 6.77407 18.5096C6.84375 18.6113 6.93712 18.6945 7.04612 18.752C7.15512 18.8096 7.27648 18.8398 7.39974 18.84H11.1997V21.88H12.7197V18.84H13.9251L14.4624 19.3773C14.5324 19.4503 14.6163 19.5085 14.7091 19.5486C14.8019 19.5887 14.9018 19.6099 15.0029 19.611C15.1041 19.612 15.2044 19.5928 15.298 19.5546C15.3916 19.5164 15.4766 19.4599 15.5481 19.3884C15.6196 19.3169 15.6762 19.2318 15.7144 19.1382C15.7526 19.0446 15.7717 18.9443 15.7707 18.8432C15.7697 18.7421 15.7485 18.6422 15.7084 18.5494C15.6683 18.4566 15.61 18.3727 15.5371 18.3027L14.7771 17.5427C14.6346 17.4001 14.4413 17.32 14.2397 17.32H12.7197L13.0997 15.04H15.1319C15.9027 15.04 16.6434 14.7955 17.1877 14.283C17.7321 13.7704 18.0397 13.0057 18.0397 12.1514C18.0397 11.3036 17.6645 10.2806 16.6875 9.56265C16.2796 9.26314 15.0625 8.45446 13.8004 7.58843C13.1693 7.15542 12.5366 6.71592 12.0191 6.34156C11.5016 5.96719 11.0775 5.6311 10.9652 5.52218C10.6193 5.18615 10.4397 5.12888 10.4397 4.45937C10.4397 4.2624 10.529 4.10831 10.7826 3.93539C10.9198 3.84186 11.101 3.76534 11.2947 3.71273C11.383 3.91667 11.5289 4.09037 11.7146 4.21247C11.9002 4.33457 12.1175 4.39975 12.3397 4.4C12.4227 4.39958 12.5053 4.39013 12.5862 4.37179C12.8403 4.5942 13.1163 4.83513 13.2126 4.94476C13.55 5.32856 13.5109 6.13078 13.5109 6.13078C13.8377 5.92254 14.2322 5.49571 14.2383 5.01007C14.2436 4.66427 14.1025 4.33422 13.9087 4.16398C13.7324 4.0089 13.5442 3.87799 13.3654 3.75281C13.44 3.59917 13.479 3.43075 13.4797 3.26C13.4794 2.98028 13.3762 2.71047 13.1898 2.50191C13.0034 2.29334 12.7468 2.16059 12.4689 2.1289C12.4531 2.12709 12.4372 2.1256 12.4214 2.12445C12.3943 2.1215 12.367 2.12001 12.3397 2.12H11.7979ZM10.2126 15.04H11.1997V17.32H8.77724L10.2126 15.04Z" 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">GitHub Front-End Hot Projects - Daily Ranking</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Automatically retrieves the daily front-end project rankings and latest project data from Best of JS, combining real-time GitHub star counts and official descriptions to generate a standardized daily front-end trending list document. It includes project URLs, star counts, Chinese descriptions, and recommendations, making it ideal for front-end developers to quickly understand the day's popular projects and technology trends.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/06b7eae6029ebb119a57585ed1c36049c0880bc68c4fea2b32b6de301b2ab159@small" alt="GitHub Front-End Hot Projects - Daily Ranking" 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-bg03.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="M17.8336 3.65999C17.7319 3.6585 17.6313 3.6652 17.5308 3.67929C16.7263 3.79205 16.1771 4.30264 15.702 4.77773C15.6413 4.83842 15.6157 4.90203 15.564 4.96476C14.7694 4.72732 13.55 4.41999 12 4.41999C10.4497 4.41999 9.22987 4.72673 8.43453 4.96476C8.38255 4.90181 8.35776 4.83871 8.29648 4.77773C7.82172 4.30305 7.27144 3.79342 6.46773 3.68078C5.66321 3.56802 4.81825 3.95869 3.99773 4.77921C3.1772 5.59974 2.78653 6.44469 2.89929 7.24921C3.01205 8.05374 3.52264 8.60288 3.99773 9.07796C4.14943 9.22967 4.34012 9.27997 4.51132 9.38968C3.80966 10.905 2.87999 13.3693 2.87999 16.58C2.88013 16.7318 2.92574 16.8801 3.01093 17.0058C3.09612 17.1314 3.21699 17.2287 3.35796 17.2851L7.05257 18.762C7.29409 19.0331 9.21451 21.14 12 21.14C14.7855 21.14 16.7059 19.0331 16.9474 18.762L20.642 17.2851C20.783 17.2287 20.9039 17.1314 20.9891 17.0058C21.0742 16.8801 21.1199 16.7318 21.12 16.58C21.12 13.3692 20.1909 10.9041 19.4887 9.3882C19.6592 9.27867 19.8498 9.22893 20.0008 9.07796C20.4759 8.60288 20.9865 8.05225 21.0992 7.24773C21.212 6.44321 20.8213 5.59825 20.0008 4.77773C19.2828 4.05977 18.5455 3.67045 17.8336 3.65999ZM17.7416 5.18445C17.9606 5.15375 18.2821 5.20842 18.9261 5.85242C19.5701 6.49641 19.6248 6.81794 19.5941 7.03695C19.5634 7.25596 19.3417 7.58764 18.9261 8.00328C18.7573 8.17202 18.5571 8.2862 18.3234 8.3625C18.3033 8.36909 18.2835 8.37652 18.2641 8.38476C17.9087 7.68297 17.3452 6.9741 16.4754 6.2814C16.4955 6.25445 16.5139 6.22618 16.5303 6.19679C16.6096 6.05309 16.6884 5.94072 16.7767 5.85242C17.1923 5.43679 17.5225 5.21514 17.7416 5.18445ZM6.25695 5.18593C6.47596 5.21663 6.80764 5.43827 7.22327 5.8539V5.85539C7.31063 5.94232 7.3896 6.05316 7.46968 6.19828C7.49821 6.24957 7.53258 6.29739 7.5721 6.34078C6.97298 6.91493 6.32518 7.65561 5.82499 8.43078C5.77805 8.40326 5.72828 8.38087 5.67656 8.36398C5.44313 8.28761 5.24064 8.1715 5.07242 8.00328C4.65678 7.58764 4.43514 7.25744 4.40445 7.03843C4.37375 6.81942 4.42842 6.4979 5.07242 5.8539C5.71641 5.20991 6.03794 5.15524 6.25695 5.18593ZM8.95999 10.5C9.37951 10.5 9.71999 10.8405 9.71999 11.26C9.71999 11.6795 9.37951 12.02 8.95999 12.02C8.54047 12.02 8.19999 11.6795 8.19999 11.26C8.19999 10.8405 8.54047 10.5 8.95999 10.5ZM15.04 10.5C15.4595 10.5 15.8 10.8405 15.8 11.26C15.8 11.6795 15.4595 12.02 15.04 12.02C14.6205 12.02 14.28 11.6795 14.28 11.26C14.28 10.8405 14.6205 10.5 15.04 10.5ZM10.48 13.54H13.52C15.057 14.5952 15.5521 16.6322 15.7154 17.8551C15.1357 18.3846 13.6179 19.62 12 19.62C10.3798 19.62 8.86086 18.3818 8.28312 17.8536C8.44531 16.6216 8.93977 14.5677 10.48 13.54ZM10.48 15.82C10.48 16.58 10.48 17.34 11.24 17.34H12.76C13.52 17.34 13.52 16.58 13.52 15.82H10.48Z" 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">Front-end development topic library</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Automatically collects high-quality articles and projects from 9 specified front-end platforms over the past month, and intelligently categorizes and organizes them into a structured collection document.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/d1b56a638be9c3093b63fc726b236528beb7fd04f8f707c473c55e6face382f3@small" alt="Front-end development topic library" 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-bg13.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="M9.72002 2.85999C7.66802 2.85999 5.77874 3.47417 4.38369 4.65459C2.98864 5.83502 2.12002 7.59732 2.12002 9.69999C2.12002 11.0969 2.82436 12.2908 3.784 13.2773C4.74364 14.2638 5.9776 15.0937 7.2322 15.8646C8.48681 16.6355 9.76494 17.3452 10.7947 18.0303C11.8245 18.7154 12.5793 19.3981 12.8402 19.9199C12.9063 20.0524 13.0098 20.1627 13.1378 20.2373C13.2658 20.3118 13.4128 20.3473 13.5607 20.3394C13.7086 20.3316 13.851 20.2806 13.9703 20.1929C14.0897 20.1052 14.1808 19.9845 14.2325 19.8457C14.2325 19.8457 14.4309 19.3133 14.6288 18.6493C14.8268 17.9853 15.04 17.2189 15.04 16.5207C15.04 15.3502 14.8177 14.603 14.5888 14.1145C14.4743 13.8703 14.3684 13.697 14.3201 13.5994C14.2718 13.5018 14.28 13.5073 14.28 13.5C14.28 12.2434 15.061 11.1991 16.2542 10.3101C16.2837 10.2879 16.3115 10.2636 16.3374 10.2373C16.3374 10.2373 16.3694 10.1761 16.747 10.0251C17.1247 9.87399 17.7845 9.69999 18.84 9.69999C18.9407 9.70141 19.0407 9.6828 19.1342 9.64525C19.2276 9.6077 19.3127 9.55194 19.3844 9.48123C19.4561 9.41051 19.5131 9.32625 19.552 9.23334C19.5908 9.14042 19.6108 9.0407 19.6108 8.93999C19.6108 8.83927 19.5908 8.73955 19.552 8.64664C19.5131 8.55372 19.4561 8.46946 19.3844 8.39874C19.3127 8.32803 19.2276 8.27228 19.1342 8.23472C19.0407 8.19717 18.9407 8.17856 18.84 8.17999C17.6156 8.17999 16.7553 8.38598 16.183 8.61491C15.6298 8.83617 15.3162 9.12459 15.2938 9.14483C14.8217 9.50243 14.3802 9.91068 13.998 10.3635C13.1176 10.221 12 9.86266 12 8.93999C12 7.97327 13.5368 7.62116 14.6556 7.49272C15.3099 7.41824 15.8 6.86096 15.8 6.2028V6.08256C16.4501 6.19488 17.1278 6.36042 17.752 6.60655C19.07 7.12632 20.0804 7.91661 20.3823 9.12405C20.4064 9.22095 20.4494 9.31215 20.5088 9.39243C20.5682 9.47271 20.6429 9.5405 20.7285 9.59194C20.8141 9.64337 20.909 9.67744 21.0078 9.69219C21.1065 9.70694 21.2072 9.70209 21.3041 9.67791C21.401 9.65374 21.4922 9.61071 21.5725 9.55129C21.6527 9.49187 21.7205 9.41722 21.7719 9.3316C21.8233 9.24598 21.8574 9.15107 21.8721 9.0523C21.8868 8.95352 21.882 8.85281 21.8578 8.75592C21.3996 6.92336 19.8814 5.81365 18.3086 5.19342C16.9066 4.64055 15.4587 4.45688 14.3067 4.41709C14.1596 4.20643 13.9648 3.97285 13.6403 3.75209C12.916 3.2594 11.7214 2.85999 9.72002 2.85999ZM11.24 5.89999C11.6595 5.89999 12 6.24047 12 6.65999C12 7.07951 11.6595 7.41999 11.24 7.41999C10.8205 7.41999 10.48 7.07951 10.48 6.65999C10.48 6.24047 10.8205 5.89999 11.24 5.89999Z" 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">SEO GEO Audit</h3><p class="text-sm leading-5 text-caption-fg line-clamp-3 h-[60px]">Unified SEO and GEO audit framework covering technical health, content quality, trust signals, entity authority, and AI visibility. Supports three audit scopes (single page/site/domain) and three output modes (boss/operator/specialist). Provide a website URL to start, or click to see full options.</p></div><div class="flex-1 rounded-xl overflow-hidden relative bg-[#f5f5f5]"><img src="https://cdn.gooo.ai/web-images/9295ba5c7e452dd19d927a17e6d1082c1dee67afbee874eafe35d450ecdc7178@small" alt="SEO GEO Audit" 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="/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/d0fea595105a71ab.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[124690,[\"/_next/static/chunks/a933e74a5a9bb6ba.js\",\"/_next/static/chunks/0469f61b8eb6b752.js\",\"/_next/static/chunks/cda2b50bab968b91.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/fc580a5994aefbe6.js\"],\"default\"]\n3:I[334085,[\"/_next/static/chunks/a933e74a5a9bb6ba.js\",\"/_next/static/chunks/0469f61b8eb6b752.js\",\"/_next/static/chunks/cda2b50bab968b91.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/fc580a5994aefbe6.js\"],\"default\"]\n4:I[335838,[\"/_next/static/chunks/750a217bcb831032.js\",\"/_next/static/chunks/9d0f12bf0d95b4ce.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/89c326c13ffae153.js\"],\"default\"]\na:I[663151,[\"/_next/static/chunks/a933e74a5a9bb6ba.js\",\"/_next/static/chunks/0469f61b8eb6b752.js\",\"/_next/static/chunks/cda2b50bab968b91.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/fc580a5994aefbe6.js\"],\"default\"]\ne:I[486731,[\"/_next/static/chunks/a933e74a5a9bb6ba.js\",\"/_next/static/chunks/0469f61b8eb6b752.js\",\"/_next/static/chunks/cda2b50bab968b91.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/fc580a5994aefbe6.js\"],\"OutletBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[486731,[\"/_next/static/chunks/a933e74a5a9bb6ba.js\",\"/_next/static/chunks/0469f61b8eb6b752.js\",\"/_next/static/chunks/cda2b50bab968b91.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/fc580a5994aefbe6.js\"],\"ViewportBoundary\"]\n13:I[486731,[\"/_next/static/chunks/a933e74a5a9bb6ba.js\",\"/_next/static/chunks/0469f61b8eb6b752.js\",\"/_next/static/chunks/cda2b50bab968b91.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/fc580a5994aefbe6.js\"],\"MetadataBoundary\"]\n15:I[713662,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\",\"/_next/static/chunks/97e656bbe92f5730.js\",\"/_next/static/chunks/8a57587296618ce5.js\",\"/_next/static/chunks/a69f8c1641e96bab.js\",\"/_next/static/chunks/1c8ed0a5b790429d.js\"],\"Header\"]\n17:I[758506,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"\"]\n18:I[564605,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunk"])</script><script>self.__next_f.push([1,"s/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"default\"]\n19:I[855331,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"PostHogProvider\"]\n1a:I[612645,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"GtagProvider\"]\n1b:I[242092,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"ThemeProvider\"]\n1d:I[917559,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"default\"]\n21:I[407240,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/c"])</script><script>self.__next_f.push([1,"hunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"I18nProvider\"]\n22:I[314577,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"NuqsAdapter\"]\n23:I[470174,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"default\"]\n24:I[416398,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"GoogleOneTapPrompt\"]\n25:I[524955,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"default\"]\n26:I[170637,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"default\"]\n27:I[246331,[\"/_next/static/chunks/d18f09f"])</script><script>self.__next_f.push([1,"db252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"Toaster\"]\n28:I[673227,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\"],\"PageRedirecting\"]\n:HL[\"/_next/static/chunks/72bedfd9c7119b50.css\",\"style\"]\n:HL[\"/_next/static/chunks/afe94095f2d5540e.css\",\"style\"]\n:HL[\"/_next/static/chunks/5f3d2694ad770bba.css\",\"style\"]\n:HL[\"/_next/static/chunks/163f657a16afbe5e.css\",\"style\"]\n:HL[\"/_next/static/chunks/8c6ffb3654df564e.css\",\"style\"]\n:HL[\"/_next/static/media/7ebf22b5a21034f8-s.p.d8bad3ab.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Bd-s.p.5f3188b2.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Bk-s.p.2b04ac1b.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Blk-s.p.f0481107.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Lt-s.p.f6b76447.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_Md-s.p.49b4f5a7.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/AirbnbCereal_W_XBd-s.p.009382e7.otf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/otf\"}]\n:HL[\"/_next/static/media/Arvo_Bold-s.p.6a7ed4c1.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/Arvo_BoldItalic-s.p.05e40bec.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/Arvo_Italic-s.p.fd9dd729.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/Arvo_Regular-s.p.481360e8.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/a624dffa201843ff-s.p.91936907.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e41d5df559864f9e-s.p.380d09ea.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/chunks/4672fdfaf09a4c9b.css\",\"style\"]\n0:{\"P\":null,\"b\":\"oAMrpEkhfb60xiV_1YuKy\",\"c\":[\"\",\"skills\",\"biomed-research-assistant-zXJCpN71mICVZ2\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[[\"locale\",\"en-US\",\"d\"],{\"children\":[\"(marketing)\",{\"children\":[\"skills\",{\"children\":[[\"id\",\"biomed-research-assistant-zXJCpN71mICVZ2\",\"d\"],{\"children\":[\"__PAGE__\",{}]}]}]}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/72bedfd9c7119b50.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/afe94095f2d5540e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScri"])</script><script>self.__next_f.push([1,"pts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"$L4\",null,{}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/5f3d2694ad770bba.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/5f3d2694ad770bba.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/d9d6bfe32d815406.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/8bbe7e28004769d4.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/1fea22c6ed436c29.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/06d8f03013653bc6.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/517159bd3f34e330.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/109af00779a07d14.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/1ea9329734b17b48.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/e52df0a03586c443.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/417d8fa80140e3b3.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/chunks/ee4aeddf31970800.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-13\",{\"src\":\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-14\",{\"src\":\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-15\",{\"src\":\"/_next/static/chunks/89c326c13ffae153.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-16\",{\"src\":\"/_next/static/chunks/fe2867e842cd10c5.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L5\"]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/163f657a16afbe5e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/8c6ffb3654df564e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/97e656bbe92f5730.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/8a57587296618ce5.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/a69f8c1641e96bab.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/1c8ed0a5b790429d.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L6\"]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[\"$L7\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/4672fdfaf09a4c9b.css\",\"prec"])</script><script>self.__next_f.push([1,"edence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/c24023fc76b0dc44.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/5cfe6e136cfcf1c5.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/fa30c3444fec1bf8.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/608d7dd21f0fdb66.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L8\"]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false]},null,false,false]},null,false,false],\"$L9\",false]],\"m\":\"$undefined\",\"G\":[\"$a\",[\"$Lb\",\"$Lc\",\"$Ld\"]],\"S\":false}\n8:[\"$\",\"$Le\",null,{\"children\":[\"$\",\"$f\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@10\"}]}]\n9:[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L11\",null,{\"children\":\"$L12\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L13\",null,{\"children\":[\"$\",\"$f\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L14\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\nb:[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/72bedfd9c7119b50.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\nc:[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/afe94095f2d5540e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\nd:[\"$\",\"link\",\"2\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/5f3d2694ad770bba.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\":[[\"$\",\"$L15\",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\"}]}],\"$L16\"]}]]\n5:[\"$\",\"html\",null,{\"lang\":\"en-US\",\"suppressHydrationWarning\":true,\"className\":\"inter_1b545fac-module__b8QJrq__variable arvo_47c97b1b-module__gSbheq__variable cereal_d27b773e-module__vIeTSq__variable pacifico_2c68cb73-module__2O2tPW__variable instrument_serif_e6807043-module__ZE2Y9q__variable 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-"])</script><script>self.__next_f.push([1,"touch-icon\",\"href\":\"https://marketing-assets.youmind.com/logo-512.png\",\"sizes\":\"512x512\"}],[[\"$\",\"$L17\",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 \"}}],[\"$\",\"$L17\",null,{\"src\":\"https://cdn.firstpromoter.com/fpr.js\",\"strategy\":\"lazyOnload\"}]],[[\"$\",\"$L17\",null,{\"src\":\"https://www.googletagmanager.com/gtag/js?id=G-EP3DKQTSZ9\",\"strategy\":\"lazyOnload\"}],[\"$\",\"$L17\",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 }\"}],[\"$\",\"$L17\",null,{\"src\":\"https://cdn.gooo.ai/assets/iconfont_icons.js\",\"strategy\":\"lazyOnload\"}]]}],[\"$\",\"body\",null,{\"translate\":\"no\",\"suppressHydrationWarning\":true,\"className\":\"bg-white text-foreground\",\"children\":[[\"$\",\"$L18\",null,{\"shadow\":false,\"color\":\"var(--primary)\",\"showSpinner\":false,\"height\":3,\"showForHashAnchor\":false}],[\"$\",\"$L19\",null,{\"children\":[\"$\",\"$L1a\",null,{\"children\":[\"$\",\"$L1b\",null,{\"attribute\":\"class\",\"defaultTheme\":\"light\",\"forcedTheme\":\"light\",\"enableSystem\":true,\"disableTransitionOnChange\":true,\"children\":\"$L1c\"}]}]}]]}]]}]\n1e: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.1f:T411,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 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.1c:[\"$\",\"$L1d\",null,{\"formats\":\"$undefined\",\"locale\":\"en-US\",\"messages\":{\"LocaleLayout\":{\"title\":\"YouMind - AI Creation Agent\",\"description\":"])</script><script>self.__next_f.push([1,"\"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\"},\"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 Image 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 "])</script><script>self.__next_f.push([1,"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\",\"publishedOn\":\"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 yo"])</script><script>self.__next_f.push([1,"u 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\":\"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 blo"])</script><script>self.__next_f.push([1,"gs\",\"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\":\"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\",\"s"])</script><script>self.__next_f.push([1,"earchModePrompt\":\"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 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 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.\",\"benefi"])</script><script>self.__next_f.push([1,"t3\":\"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\":\"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\":\""])</script><script>self.__next_f.push([1,"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 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 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"])</script><script>self.__next_f.push([1," 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\":\"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 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 Anal"])</script><script>self.__next_f.push([1,"ysis 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 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\":\""])</script><script>self.__next_f.push([1,"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 following, 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 EL"])</script><script>self.__next_f.push([1,"SE\",\"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 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?\",\""])</script><script>self.__next_f.push([1,"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\",\"editInCMS\":\"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\",\"headerD"])</script><script>self.__next_f.push([1,"escription\":\"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 more 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\","])</script><script>self.__next_f.push([1,"\"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\":\"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\":\"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 Christm"])</script><script>self.__next_f.push([1,"as 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\",\"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 tu"])</script><script>self.__next_f.push([1,"ne\",\"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\":\"Recommend me some skills\"},\"aiFind\":{\"buttonText\":\"AI Find for You\",\"prompt\":\"Help me find a skill about \\\"{query}\\\"\"},\"monthlyTopTitle\":\"Monthly Top\",\"monthlyTopDesc\":\"This month's hottest new skills — see what everyone's exploring.\",\"featuredTitle\":\"Featured\",\"featuredDesc\":\"Hand-picked by our team — quality skills, ready to use.\",\"monthlyRankingEmpty\":\"No skills made the chart this month — be the first to create yours!\",\"featuredRankingEmpty\":\"No featured skills yet. Stay tuned for our picks!\",\"goExploreSkills\":\"Explore Skills\",\"goCreateSkill\":\"Create a Skill\",\"monthlyTopTabPaid\":\"Paid ranking\",\"monthlyTopTabFree\":\"Free ranking\"},\"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 Lin"])</script><script>self.__next_f.push([1,"k\",\"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\":{\"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 Career 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"])</script><script>self.__next_f.push([1,"\",\"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\":\"$1e\",\"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\":\"$1f\"},\"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 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.\"},\"neuBrutalis"])</script><script>self.__next_f.push([1,"m\":{\"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\":\"✅ 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\":{\""])</script><script>self.__next_f.push([1,"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\",\"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"])</script><script>self.__next_f.push([1,"\":\"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 personality 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\":\""])</script><script>self.__next_f.push([1,"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\":\"Every 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 off"])</script><script>self.__next_f.push([1,"line, 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\":\"Sorry 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 u"])</script><script>self.__next_f.push([1,"se 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 community 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? T"])</script><script>self.__next_f.push([1,"his 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 and 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"])</script><script>self.__next_f.push([1," 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 times 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 sente"])</script><script>self.__next_f.push([1,"nce 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 Engineers. 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\",\"hidd"])</script><script>self.__next_f.push([1,"enName\":\"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 project 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 "])</script><script>self.__next_f.push([1,"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 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\":"])</script><script>self.__next_f.push([1,"\"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\"},\"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"])</script><script>self.__next_f.push([1,": 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\":\"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 "])</script><script>self.__next_f.push([1,"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 #1\",\"mediaLabels\":{\"imageEyebrow\":\"Image Prompt\",\"videoEyebrow\":\"Video Prompt\",\"webpageEyebrow\":\"Webpage\"}},\"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\":{\"col"])</script><script>self.__next_f.push([1,"lectionName\":\"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\":\"Anonymous\",\"beforeTranslation\":\"Before translation\",\"guidePromptIntro\":\"Use the {model} model to generate {media}. Prompt:\",\"mediaTypes\":{\"image\":\"image\",\"video\":\"video\",\"webpage\":\"webpage\"}},\"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 pa"])</script><script>self.__next_f.push([1,"ck\",\"openDetail\":\"View details\",\"empty\":\"No prompts in this pack yet.\",\"curatedBy\":\"Curated by YouMind Team\",\"featuredReasonTitle\":\"Featured reason\",\"relatedPacksTitle\":\"More packs\"}},\"GiftRedeem\":{\"cardAlt\":\"YouMind gift card\",\"loading\":\"Loading…\",\"notFoundTitle\":\"Gift not found\",\"notFoundDescription\":\"This gift link may be invalid or expired. If you believe this is a mistake, please contact support.\",\"unavailableTitle\":\"Gift unavailable\",\"unavailableFallback\":\"This gift is not available for redemption.\",\"unavailableRedeemed\":\"This gift has already been redeemed.\",\"unavailableExpiredRefunded\":\"This gift expired and was refunded to the sender.\",\"unavailableExpiredRefundFailed\":\"This gift has expired. Please contact support for assistance.\",\"unavailableDisputed\":\"This gift is unavailable. Please contact support for assistance.\",\"unavailableRevoked\":\"This gift has been revoked. Please contact support for assistance.\",\"unavailableRefundInProgress\":\"This gift is expiring. Please contact support for assistance.\",\"heading\":\"You've received a gift\",\"summary\":\"{months} of YouMind {tier}\",\"expiryNotice\":\"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\":\"$L20\"}]\n20:[\"$\",\"$L21\",null,{\"locale\":\"en-US\",\"children\":[\"$\",\"$L22\",null,{\"children\":[[\"$\",\"$L23\",null,{}],[\"$\",\"$f\",null,{\"fallback\":null,\"children\":[\"$\",\"$L24\",null,{}]}],[\"$\",\"$L25\",null,{}],[\"$\",\"$L26\",null,{}],[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L27\",null,{}],[\"$\",\"$L28\",null,{\"level\":\"universal\"}]]}]}]\n12:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, viewport-fit=cover\"}]]\n29:I[556857,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\",\"/_next/static/chunks/97e656bbe92f5730.js\",\"/_next/static/chunks/8a57587296618ce5.js\",\"/_next/static/chunks/a69f8c1641e96bab.js\",\"/_next/static/chunks/1c8ed0a5b790429d.js\"],\"Footer\"]\n16:[\"$\",\"$L29\",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\",\"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\"}}]\n10:null\n14:[[\"$\",\"title\",\"0\",{\"children\":\"In-depth and reliable research on Bio/Med - YouMind Skill\"}],[\"$\",\"meta\",\""])</script><script>self.__next_f.push([1,"1\",{\"name\":\"description\",\"content\":\"Accurately retrieve biomedical literature, providing clickable citations and a complete list of references through multi-level queries, evidence grading, and impact factor (IF) verification, ensuring reliable and reproducible information.\"}],[\"$\",\"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-zXJCpN71mICVZ2\"}],[\"$\",\"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\":\"Accurately retrieve biomedical literature, providing clickable citations and a complete list of references through multi-level queries, evidence grading, and impact factor (IF) verification, ensuring reliable and reproducible information.\"}],[\"$\",\"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\"}],[\"$\",\"meta\",\"27\",{\"name\":\"twitter:description\",\"content\":\"Accurately retrieve biomedical literature, providing clickable citations and a complete list of references through multi-level queries, evidence grading, and impact factor (IF) verification, ensuring reliable and reproducible information.\"}],\"$L2a\",\"$L2b\",\"$L2c\"]\n2d:I[547649,[\"/_next/static/chunks/a933e74a5a9bb6ba.js\",\"/_next/static/chunks/0469f61b8eb6b752.js\",\"/_next/static/chunks/cda2b50bab968b91.js\",\""])</script><script>self.__next_f.push([1,"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/fc580a5994aefbe6.js\"],\"IconMark\"]\n2a:[\"$\",\"meta\",\"28\",{\"name\":\"twitter:image\",\"content\":\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2\"}]\n2b:[\"$\",\"link\",\"29\",{\"rel\":\"icon\",\"href\":\"/static/assets/favicon.ico\"}]\n2c:[\"$\",\"$L2d\",\"30\",{}]\n2e:I[6970,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\",\"/_next/static/chunks/97e656bbe92f5730.js\",\"/_next/static/chunks/8a57587296618ce5.js\",\"/_next/static/chunks/a69f8c1641e96bab.js\",\"/_next/static/chunks/1c8ed0a5b790429d.js\",\"/_next/static/chunks/c24023fc76b0dc44.js\",\"/_next/static/chunks/5cfe6e136cfcf1c5.js\",\"/_next/static/chunks/fa30c3444fec1bf8.js\",\"/_next/static/chunks/608d7dd21f0fdb66.js\"],\"BackButton\"]\n2f:I[9331,[\"/_next/static/chunks/d18f09fdb252ecf3.js\",\"/_next/static/chunks/d9d6bfe32d815406.js\",\"/_next/static/chunks/8bbe7e28004769d4.js\",\"/_next/static/chunks/1fea22c6ed436c29.js\",\"/_next/static/chunks/06d8f03013653bc6.js\",\"/_next/static/chunks/517159bd3f34e330.js\",\"/_next/static/chunks/f8b6a4ea33214b20.js\",\"/_next/static/chunks/109af00779a07d14.js\",\"/_next/static/chunks/1ea9329734b17b48.js\",\"/_next/static/chunks/e52df0a03586c443.js\",\"/_next/static/chunks/417d8fa80140e3b3.js\",\"/_next/static/chunks/ee4aeddf31970800.js\",\"/_next/static/chunks/d7ff521d0ff93de9.js\",\"/_next/static/chunks/5a8ce59e0f6ace4d.js\",\"/_next/static/chunks/619e6d8dac9e63d8.js\",\"/_next/static/chunks/89c326c13ffae153.js\",\"/_next/static/chunks/fe2867e842cd10c5.js\",\"/_next/static/chunks/97e656bbe92f5730.js\",\"/_next/static/chunks/8a57587296618ce5.js\",\"/_next/static/chunks/a69f8c1641e96bab.js\",\"/_next/static/chunks/1c8ed0a5b790429d.js\",\"/_next/static/chunks/c24023fc76b0dc44.js\",\"/_next/static/chunks/5cfe6e136cfcf1c5.js\",\"/_next/static/chunks/fa30c3444fec1bf8.js\",\"/_next/static/chunks/608d7dd21f0fdb66.js\"],\"SkillDetailContent\"]\n30: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,"])</script><script>self.__next_f.push([1," apoptosis, degeneration, survival loss, stress, necrosis。\n• 相关细胞:photoreceptor, cone, rod, retinal ganglion cell, Müller glia。\n• 潜在机制:oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis。\n• 证据目标:优先找直接在人源或动物源 retinal organoid 中观察到细胞死亡/凋亡/退化的原始研究;再找间接机制文献。\n1.2 关键词拆分原则(示例)\n不要只写一个检索式。每个概念至少准备三类词。\n第一类:精确词。\n• retinal organoid\n• retina organoid\n• human retinal organoid\n• hPSC-derived retinal organoid\n• iPSC-derived retinal organoid\n第二类:同义词和上位词。\n• optic cup organoid\n• 3D retinal culture\n• stem cell-derived retina\n• retinal differentiation\n• retinal tissue model\n第三类:机制和表型词。\n• apoptosis\n• cell death\n• degeneration\n• survival\n• stress\n• oxidative stress\n• ER stress\n• mitochondrial dysfunction\n• hypoxia\n• necroptosis\n• ferroptosis\n如果用户限定细胞类型,加入:\n• photoreceptor\n• cone\n• rod\n• retinal ganglion cell\n• Müller glia\n• bipolar cell\n• amacrine cell\n如果用户限定物种或来源,加入:\n• human\n• mouse\n• rat\n• zebrafish\n• hESC\n• iPSC\n• pluripotent stem cell\n1.3 生成分层检索式\n至少生成 3–6 组 query。每组 query 对应一个检索目的。\n第一层:直接证据检索。\n用于找目标模型 + 目标表型直接命中的文献。\n```text\n(\"retinal organoid\" OR \"retina organoid\" OR \"human retinal organoid\") AND (apoptosis OR \"cell death\" OR degeneration)\n```\n第二层:扩展模型检索。\n用于捕捉作者没有使用 retinal organoid 精确词但实际相关的文献。\n```text\n(\"optic cup organoid\" OR \"3D retinal culture\" OR \"stem cell-derived retina\") AND (survival OR apoptosis OR stress)\n```\n第三层:机制专项检索。\n用于验证具体通路或机制。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (\"oxidative stress\" OR \"ER stress\" OR hypoxia OR mitochondria)\n```\n第四层:细胞类型专项检索。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (photoreceptor OR cone OR rod OR \"retinal ganglion cell\") AND (death OR apoptosis OR degeneration)\n```\n第五层:疾病模型检索。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)\n```\n第六层:综述/背景检索。\n```text\n(\"retinal organoid\" OR \"retina organoid\") AND (review OR protocol OR model)\n```31: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 orga"])</script><script>self.__next_f.push([1,"noid, optic cup organoid。\u003c/p\u003e\u003cp\u003e• 表型:cell death, apoptosis, degeneration, survival loss, stress, necrosis。\u003c/p\u003e\u003cp\u003e• 相关细胞:photoreceptor, cone, rod, retinal ganglion cell, Müller glia。\u003c/p\u003e\u003cp\u003e• 潜在机制:oxidative stress, ER stress, mitochondrial dysfunction, hypoxia, inflammation, ferroptosis, necroptosis。\u003c/p\u003e\u003cp\u003e• 证据目标:优先找直接在人源或动物源 retinal organoid 中观察到细胞死亡/凋亡/退化的原始研究;再找间接机制文献。\u003c/p\u003e\u003cp\u003e1.2 关键词拆分原则(示例)\u003c/p\u003e\u003cp\u003e不要只写一个检索式。每个概念至少准备三类词。\u003c/p\u003e\u003cp\u003e第一类:精确词。\u003c/p\u003e\u003cp\u003e• retinal organoid\u003c/p\u003e\u003cp\u003e• retina organoid\u003c/p\u003e\u003cp\u003e• human retinal organoid\u003c/p\u003e\u003cp\u003e• hPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e• iPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e第二类:同义词和上位词。\u003c/p\u003e\u003cp\u003e• optic cup organoid\u003c/p\u003e\u003cp\u003e• 3D retinal culture\u003c/p\u003e\u003cp\u003e• stem cell-derived retina\u003c/p\u003e\u003cp\u003e• retinal differentiation\u003c/p\u003e\u003cp\u003e• retinal tissue model\u003c/p\u003e\u003cp\u003e第三类:机制和表型词。\u003c/p\u003e\u003cp\u003e• apoptosis\u003c/p\u003e\u003cp\u003e• cell death\u003c/p\u003e\u003cp\u003e• degeneration\u003c/p\u003e\u003cp\u003e• survival\u003c/p\u003e\u003cp\u003e• stress\u003c/p\u003e\u003cp\u003e• oxidative stress\u003c/p\u003e\u003cp\u003e• ER stress\u003c/p\u003e\u003cp\u003e• mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e• hypoxia\u003c/p\u003e\u003cp\u003e• necroptosis\u003c/p\u003e\u003cp\u003e• ferroptosis\u003c/p\u003e\u003cp\u003e如果用户限定细胞类型,加入:\u003c/p\u003e\u003cp\u003e• photoreceptor\u003c/p\u003e\u003cp\u003e• cone\u003c/p\u003e\u003cp\u003e• rod\u003c/p\u003e\u003cp\u003e• retinal ganglion cell\u003c/p\u003e\u003cp\u003e• Müller glia\u003c/p\u003e\u003cp\u003e• bipolar cell\u003c/p\u003e\u003cp\u003e• amacrine cell\u003c/p\u003e\u003cp\u003e如果用户限定物种或来源,加入:\u003c/p\u003e\u003cp\u003e• human\u003c/p\u003e\u003cp\u003e• mouse\u003c/p\u003e\u003cp\u003e• rat\u003c/p\u003e\u003cp\u003e• zebrafish\u003c/p\u003e\u003cp\u003e• hESC\u003c/p\u003e\u003cp\u003e• iPSC\u003c/p\u003e\u003cp\u003e• pluripotent stem cell\u003c/p\u003e\u003cp\u003e1.3 生成分层检索式\u003c/p\u003e\u003cp\u003e至少生成 3–6 组 query。每组 query 对应一个检索目的。\u003c/p\u003e\u003cp\u003e第一层:直接证据检索。\u003c/p\u003e\u003cp\u003e用于找目标模型 + 目标表型直接命中的文献。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot; OR \u0026quot;human retinal organoid\u0026quot;) AND (apoptosis OR \u0026quot;cell death\u0026quot; OR degeneration)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第二层:扩展模型检索。\u003c/p\u003e\u003cp\u003e用于捕捉作者没有使用 retinal organoid 精确词但实际相关的文献。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;optic cup organoid\u0026quot; OR \u0026quot;3D retinal culture\u0026quot; OR \u0026quot;stem cell-derived retina\u0026quot;) AND (survival OR apoptosis OR stress)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第三层:机制专项检索。\u003c/p\u003e\u003cp\u003e用于验证具体通路或机制。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (\u0026quot;oxidative stress\u0026quot; OR \u0026quot;ER stress\u0026quot; OR hypoxia OR mitochondria)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第四层:细胞类型专项检索。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (photoreceptor OR cone OR rod OR \u0026quot;retinal ganglion cell\u0026quot;) AND (death OR apoptosis OR degeneration)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第五层:疾病模型检索。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (disease OR degeneration OR dystrophy OR retinitis OR glaucoma)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第六层:综述/背景检索。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e(\u0026quot;retinal organoid\u0026quot; OR \u0026quot;retina organoid\u0026quot;) AND (review OR protocol OR model)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e32: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 int"])</script><script>self.__next_f.push([1,"o 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 categories of terms for each concept.\u003c/p\u003e\u003cp\u003e Category 1: Precise words.\u003c/p\u003e\u003cp\u003e • retinal organoid\u003c/p\u003e\u003cp\u003e • retina organoid\u003c/p\u003e\u003cp\u003e • human retinal organoid\u003c/p\u003e\u003cp\u003e • hPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e • iPSC-derived retinal organoid\u003c/p\u003e\u003cp\u003e The second category: synonyms and hypernyms.\u003c/p\u003e\u003cp\u003e • optic cup organoid\u003c/p\u003e\u003cp\u003e • 3D retinal culture\u003c/p\u003e\u003cp\u003e • stem cell-derived retina\u003c/p\u003e\u003cp\u003e • retinal differentiation\u003c/p\u003e\u003cp\u003e • retinal tissue model\u003c/p\u003e\u003cp\u003e The third category: mechanism and phenotypic terms.\u003c/p\u003e\u003cp\u003e • apoptosis\u003c/p\u003e\u003cp\u003e • cell death\u003c/p\u003e\u003cp\u003e • degeneration\u003c/p\u003e\u003cp\u003e • survival\u003c/p\u003e\u003cp\u003e • stress\u003c/p\u003e\u003cp\u003e • oxidative stress\u003c/p\u003e\u003cp\u003e • ER stress\u003c/p\u003e\u003cp\u003e • mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e • hypoxia\u003c/p\u003e\u003cp\u003e • necroptosis\u003c/p\u003e\u003cp\u003e • ferroptosis\u003c/p\u003e\u003cp\u003e If the user specifies the cell type, add:\u003c/p\u003e\u003cp\u003e • photoreceptor\u003c/p\u003e\u003cp\u003e • cone\u003c/p\u003e\u003cp\u003e • rod\u003c/p\u003e\u003cp\u003e • retinal ganglion cell\u003c/p\u003e\u003cp\u003e • Müller glia\u003c/p\u003e\u003cp\u003e • bipolar cell\u003c/p\u003e\u003cp\u003e • amacrine cell\u003c/p\u003e\u003cp\u003e If the user specifies the species or origin, add:\u003c/p\u003e\u003cp\u003e • human\u003c/p\u003e\u003cp\u003e • mouse\u003c/p\u003e\u003cp\u003e • rat\u003c/p\u003e\u003cp\u003e • zebrafish\u003c/p\u003e\u003cp\u003e • hESC\u003c/p\u003e\u003cp\u003e • iPSC\u003c/p\u003e\u003cp\u003e • pluripotent stem cell\u003c/p\u003e\u003cp\u003e 1.3 Generating hierarchical search queries\u003c/p\u003e\u003cp\u003e Generate at least 3–6 queries. Each query corresponds to a search objective.\u003c/p\u003e\u003cp\u003e First layer: Direct evidence retrieval.\u003c/p\u003e\u003cp\u003e Used to find literature that directly matches the target model and target phenotype.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\" OR \"human retinal organoid\") AND (apoptosis OR \"cell death\" OR degeneration)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Second layer: Extended model retrieval.\u003c/p\u003e\u003cp\u003e Used to capture literature where the author did not use the precise term \"retinal organoid\" but it is actually relevant.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"optic cup organoid\" OR \"3D retinal culture\" OR \"stem cell-derived retina\") AND (survival OR apoptosis OR stress)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Third layer: Mechanism-specific search.\u003c/p\u003e\u003cp\u003e Used to verify specific pathways or mechanisms.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\") AND (\"oxidative stress\" OR \"ER stress\" OR hypoxia OR mitochondria)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Fourth layer: Cell type specific search.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e (\"retinal organoid\" OR \"retina organoid\") AND (photoreceptor OR cone OR rod OR \"retinal"])</script><script>self.__next_f.push([1," 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\u003e33: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• ArticleTitle\n• AbstractText\n• Journal Title\n• ISOAbbreviation\n• ISSN / eISSN\n• PubDate\n• DOI\n• PMCID\n• MeSH terms\n2.1.4 批量检索策略\n推荐流程:\n1. 对每个 query 调用 ESearch。\n2. 每个 query 取前 5–20 篇。\n3. 合并所有 PMID。\n4. 按 PMID 去重。\n5. 用 ESummary / EFetch 批量获取 metadata 和 abstract。\n6. 初筛阶段只读 metadata + abstract,不要一开始抓全文。\n────────────────\n2.2 第二阶段:PMC / BioC 全文复核\n只有以下情况才进入全文:\n• 用户要求精读全文。\n• 摘要不足以判断机制。\n• 需要图表、实验方法、浓度、剂量、IC50、EC50、Kd、Ki。\n• 已筛出少量关键 PMID,需要逐篇机制复核。\n2.2.1 PMID 转 PMCID\n接口:\n```text\nhttps://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=\u003cPMID\u003e\u0026format=json\n```\n如果返回 PMCID,说明可能有 PMC 开放全文。\n2.2.2 优先 BioC JSON\n接口:\n```text\nhttps://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json/\u003cPMCID\u003e/unicode\n```\n优点:结构化程度高,适合抽取正文段落。\n2.2.3 BioC 不可用时尝试 PMC XML\n接口:\n```text\nhttps://www.ncbi.nlm.nih.gov/pmc/articles/\u003cPMCID\u003e/?report=xml\n```\n抽取正文时跳过:\n• references\n• bibliography\n• acknowledgements\n• author contributions\n• competing interests\n全文复核必须设置停止判据:\n• 每篇文献只扫描一次。\n• 默认只抽取与问题相关的段落。\n• 如果未命中目标字段,标注“未见直接证据”。\n• 不要无限换关键词重复抓取。\n────────────────\n2.3 bioRxiv / medRxiv\n用于补充最新预印本。\n可以使用官方 API:\n```text\nhttps://api.biorxiv.org/details/biorxiv/YYYY-MM-DD/YYYY-MM-DD\nhttps://api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD\n```\n也可用普通搜索作为补充:\n```text\nsite:biorxiv.org retinal organoid apoptosis\nsite:medrxiv.org retina organoid degeneration\n```\n预印本必须标注:\n```text\n预印本,未经同行评议。\n```\n────────────────\n2.4 Crossref / OpenAlex / Unpaywall\n用于补全 DOI、开放全文地址、出版信息。\nCrossref:\n```text\nhttps://api.crossref.org/works?query.title=\u003ctitle\u003e\n```\nOpenAlex:\n```text\nhttps:/"])</script><script>self.__next_f.push([1,"/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 兜底。34:T14e9,\u003cp\u003e2. 使用什么方法、在什么网站检索\u003c/p\u003e\u003cp\u003e2.1 首选:PubMed / NCBI E-utilities\u003c/p\u003e\u003cp\u003ePubMed 是生物医学文献检索首选。不要默认抓 PubMed 网页。应使用 NCBI E-utilities API。\u003c/p\u003e\u003cp\u003e2.1.1 ESearch:用 query 获取 PMID\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e参数:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003edb=pubmed\u003c/p\u003e\u003cp\u003eterm=\u0026lt;检索式\u0026gt;\u003c/p\u003e\u003cp\u003eretmode=json\u003c/p\u003e\u003cp\u003eretmax=20\u003c/p\u003e\u003cp\u003esort=relevance\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e也可按时间排序:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003esort=pub+date\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e示例:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed\u0026amp;term=(%22retinal%20organoid%22%20OR%20%22retina%20organoid%22)%20AND%20(apoptosis%20OR%20%22cell%20death%22)\u0026amp;retmode=json\u0026amp;retmax=20\u0026amp;sort=relevance\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e返回中读取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eesearchresult.idlist\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e这就是 PMID 列表。\u003c/p\u003e\u003cp\u003e2.1.2 ESummary:获取文献 metadata\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e参数:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003edb=pubmed\u003c/p\u003e\u003cp\u003eid=PMID1,PMID2,PMID3\u003c/p\u003e\u003cp\u003eretmode=json\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e提取字段:\u003c/p\u003e\u003cp\u003e• PMID\u003c/p\u003e\u003cp\u003e• title\u003c/p\u003e\u003cp\u003e• fulljournalname\u003c/p\u003e\u003cp\u003e• source / journal abbreviation\u003c/p\u003e\u003cp\u003e• pubdate\u003c/p\u003e\u003cp\u003e• authors\u003c/p\u003e\u003cp\u003e• articleids 中的 DOI、PMCID\u003c/p\u003e\u003cp\u003e• volume、issue、pages\u003c/p\u003e\u003cp\u003e2.1.3 EFetch:获取摘要和 XML 细节\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e参数:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003edb=pubmed\u003c/p\u003e\u003cp\u003eid=PMID1,PMID2\u003c/p\u003e\u003cp\u003eretmode=xml\u003c/p\u003e\u003cp\u003erettype=abstract\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e提取字段:\u003c/p\u003e\u003cp\u003e• ArticleTitle\u003c/p\u003e\u003cp\u003e• AbstractText\u003c/p\u003e\u003cp\u003e• Journal Title\u003c/p\u003e\u003cp\u003e• ISOAbbreviation\u003c/p\u003e\u003cp\u003e• ISSN / eISSN\u003c/p\u003e\u003cp\u003e• PubDate\u003c/p\u003e\u003cp\u003e• DOI\u003c/p\u003e\u003cp\u003e• PMCID\u003c/p\u003e\u003cp\u003e• MeSH terms\u003c/p\u003e\u003cp\u003e2.1.4 批量检索策略\u003c/p\u003e\u003cp\u003e推荐流程:\u003c/p\u003e\u003cp\u003e1. 对每个 query 调用 ESearch。\u003c/p\u003e\u003cp\u003e2. 每个 query 取前 5–20 篇。\u003c/p\u003e\u003cp\u003e3. 合并所有 PMID。\u003c/p\u003e\u003cp\u003e4. 按 PMID 去重。\u003c/p\u003e\u003cp\u003e5. 用 ESummary / EFetch 批量获取 metadata 和 abstract。\u003c/p\u003e\u003cp\u003e6. 初筛阶段只读 metadata + abstract,不要一开始抓全文。\u003c/p\u003e\u003cp\u003e────────────────\u003c/p\u003e\u003cp\u003e2.2 第二阶段:PMC / BioC 全文复核\u003c/p\u003e\u003cp\u003e只有以下情况才进入全文:\u003c/p\u003e\u003cp\u003e• 用户要求精读全文。\u003c/p\u003e\u003cp\u003e• 摘要不足以判断机制。\u003c/p\u003e\u003cp\u003e• 需要图表、实验方法、浓度、剂量、IC50、EC50、Kd、Ki。\u003c/p\u003e\u003cp\u003e• 已筛出少量关键 PMID,需要逐篇机制复核。\u003c/p\u003e\u003cp\u003e2.2.1 PMID 转 PMCID\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://www.ncbi.nlm.nih.gov/pmc/utils/idconv/v1.0/?ids=\u0026lt;PMID\u0026gt;\u0026amp;format=json\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果返回 PMCID,说明可能有 PMC 开放全文。\u003c/p\u003e\u003cp\u003e2.2.2 优先 BioC JSON\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://www.ncbi.nlm.nih.gov/research/bionlp/RESTful/pmcoa.cgi/BioC_json/\u0026lt;PMCID\u0026gt;/unicode\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e优点:结构化程度高,适合抽取正文段落。\u003c/p\u003e\u003cp\u003e2.2.3 BioC 不可用时尝试 PMC XML\u003c/p\u003e\u003cp\u003e接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://www.ncbi.nlm.nih.gov/pmc/articles/\u0026lt;PMCID\u0026gt;/?report=xml\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e抽取正文时跳过:\u003c/p\u003e\u003cp\u003e• references\u003c/p\u003e\u003cp\u003e• bibliography\u003c/p\u003e\u003cp\u003e• acknowledgements\u003c/p\u003e\u003cp\u003e• author contributions\u003c/p\u003e\u003cp\u003e• competing interests\u003c/p\u003e\u003cp\u003e全文"])</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\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• 不要反复刷新、换同站路径、循环等待。\u003c/p\u003e\u003cp\u003e• 改用 PubMed、PMC、Crossref、OpenAlex、Unpaywall、DOI metadata 兜底。\u003c/p\u003e35: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 "])</script><script>self.__next_f.push([1,"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 default, only paragraphs related to the question are extracted.\u003c/p\u003e\u003cp\u003e • If the target field is not matched, mark it as \"No direct evidence found\".\u003c/p\u003e\u003cp\u003e • Avoid repeatedly scraping keywords.\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.3 bioRxiv / medRxiv\u003c/p\u003e\u003cp\u003e Used to supplement the latest preprints.\u003c/p\u003e\u003cp\u003e You can use the official API:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.biorxiv.org/details/biorxiv/YYYY-MM-DD/YYYY-MM-DD\u003c/p\u003e\u003cp\u003e https://api.biorxiv.org/details/medrxiv/YYYY-MM-DD/YYYY-MM-DD\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e You can also use a regular search as a supplement:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e site:biorxiv.org retinal organoid apoptosis\u003c/p\u003e\u003cp\u003e site:medrxiv.org retina organoid degeneration\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Preprints must be labeled:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e This is a preprint and has not been peer-reviewed.\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.4 Crossref/OpenAlex/Unpaywall\u003c/p\u003e\u003cp\u003e Used to complete DOI, open full-text address, and publication information.\u003c/p\u003e\u003cp\u003e Crossref:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.crossref.org/works?query.title=\u003ctitle\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e OpenAlex:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.openalex.org/works?search=\u003ctitle or topic\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Unpaywall:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.unpaywall.org/v2/\u003cDOI\u003e?email=\u003cyour_email\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e use:\u003c/p\u003e\u003cp\u003e • DOI completion.\u003c/p\u003e\u003cp\u003e • OA PDF link search.\u003c/p\u003e\u003cp\u003e • Journal name verification.\u003c/p\u003e\u003cp\u003e • Publication year verification.\u003c/p\u003e\u003cp\u003e ────────────────\u003c/p\u003e\u003cp\u003e 2.5 Publisher Page\u003c/p\u003e\u003cp\u003e Access the publisher's page only when API information is insufficient.\u003c/p\u003e\u003cp\u003e Access rules:\u003c/p\u003e\u003cp\u003e • Each publisher URL will only be tried once.\u003c/p\u003e\u003cp\u003e • If you encounter CAPTCHAs, login barriers, Cloudflare, Access Denied, or institutional access barriers, stop immediately.\u003c/p\u003e\u003cp\u003e • Avoid repeatedly refreshing, changing the path within the same site, or waiting in a loop.\u003c/p\u003e\u003cp\u003e • Use PubMed, PMC, Crossref, OpenAlex, Unpaywall, and DOI metadata as fallback.\u003c/p\u003e36: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_"])</script><script>self.__next_f.push([1,"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\u003e37:T67e,\u003cp\u003e4. How to organize quotations in a reply\u003c/p\u003e\u003cp\u003e 4.1 Text Citation Format\u003c/p\u003e\u003cp\u003e All text citations must be clickable.\u003c/p\u003e\u003cp\u003e Format:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e [[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Example:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e Previous studies have observed developmental stage-related photoreceptor stress and degeneration in human retinal organoids [[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/).\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Do not write it as:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e [1]\u003c/p\u003e\u003cp\u003e (PMID: xxxxx)\u003c/p\u003e\u003cp\u003e See reference 1\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 4.2 Recommended Answer Structure\u003c/p\u003e\u003cp\u003e First paragraph: Direct conclusion.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Conclusion: There have been relevant reports, but the direct evidence mainly focuses on...; direct evidence regarding... is still lacking.\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Second paragraph: Evidence classification.\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Direct evidence:\u003c/p\u003e\u003cp\u003e - Reference A: ...\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e Indirect evidence:\u003c/p\u003e\u003cp\u003e - Reference B: ...\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e No direct evidence found:\u003c/p\u003e\u003cp\u003e - Not found in this round...\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Third paragraph: Mechanism summary.\u003c/p\u003e\u003cp\u003e Group by topic, for example:\u003c/p\u003e\u003cp\u003e • apoptosis/caspase pathway\u003c/p\u003e\u003cp\u003e • oxidative stress\u003c/p\u003e\u003cp\u003e • mitochondrial dysfunction\u003c/p\u003e\u003cp\u003e • ER stress\u003c/p\u003e\u003cp\u003e • hypoxia/metabolic stress\u003c/p\u003e\u003cp\u003e • inflammation\u003c/p\u003e\u003cp\u003e • developmental mismatch\u003c/p\u003e\u003cp\u003e Fourth paragraph: Research gap.\u003c/p\u003e\u003cp\u003e Clearly state which issues lack direct evidence.\u003c/p\u003e\u003cp\u003e Fifth paragraph: Inspiration from the experiment.\u003c/p\u003e\u003cp\u003e If the user needs experimental design, provide the marker, assay, time point, and control.\u003c/p\u003e38: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.c"])</script><script>self.__next_f.push([1,"om/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\n```\n3. 对搜索结果做保守匹配。\n- 优先 exact normalized journal title match。 - 其次 exact abbreviation match。 - 对短词和宽泛词非常谨慎。 - 不接受明显 substring 误配,例如 Nature 被误配成 Nature Reviews 系列。 - 如果匹配不稳,返回 ambiguous / not_found,而不是猜。\n4. 如果 PubMed 给的是缩写,尝试用 NLM Catalog 扩展为全称或 alternate title。\nNLM Catalog 搜索接口仍然是 NCBI E-utilities:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=\u003cabbr\u003e[Title Abbreviation]\u0026retmode=xml\u0026retmax=1\n```\n然后用 ESummary 取 Title / TitleAlternate。\n5. 从 iikx detail 结果中读取:\n- impact factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分区,如果有。 - source URL。 - match confidence。\n6. 标注时不把 IF 年份写进正文紧凑标注。\n最终标注只写:\n```text\n*{IF=X,Qn}*\n```\n如果失败:\n```text\n*{IF=待核验}*\n```\n或:\n```text\n*{IF=未检出}*\n```\n6.3 具体步骤\n对每篇文献执行以下流程。\n第一步:准备期刊查询名。\n优先从 PubMed metadata 取:\n```text\nFullJournalName\nISOAbbreviation / Source\nISSN\neISSN\n```\n如果只有 DOI,则先用 Crossref 或 OpenAlex 取期刊名。\nCrossref:\n```text\nhttps://api.crossref.org/works/\u003cDOI\u003e\n```\nOpenAlex:\n```text\nhttps://api.openalex.org/works/https://doi.org/\u003cDOI\u003e\n```\n第二步:规范化期刊名。\n规范化规则:\n• 全部小写。\n• HTML unescape。\n• 将 \u0026 替换为 and。\n• 去除标点。\n• 多个空格合并。\n• 比较时可同时使用 compact 形式,即去除所有空格。\n示例伪代码:\n```python\nimport re, html\n \ndef norm(s):\n s = html.unescape(s or '').lower()\n s = re.sub(r'\u0026', ' and ', s)\n s = re.sub(r'[^a-z0-9]+', ' ', s)\n return re.sub(r'\\s+', ' ', s).strip()\n \ndef compact(s):\n return norm(s).replace(' ', '')\n```\n第三步:查询 iikx 搜索接口。\n```text\nhttps://m.iikx.com/api/restfull/?m=sci\u0026c=index\u0026a=info\u0026keyword=\u003cjournal_query\u003e\n```\n建议设置 User-Agent,例如:\n```text\nMozilla/5.0\n```\n如果第一页没找到 exact match,可以有限翻页,例如最多 8 页。\n翻页参数通常为:\n```text\npage=2\npage=3\n```\n第四步:从搜索结果中选候选。\n候选字段通常包括:\n```text\nid\nclassid\ntitle\nsmalltitle\nIF 或 IF2024\nzky2020\nurl\n```\n匹配规则:\n• 如果 compact(query) == compact(candidate.title),接受。\n• 如果 norm(query) == norm(candidate.title),接受。\n• 如果 compact(query) == compact(candidate.smalltitle),接受。\n• 如果 norm(query) == norm(candidate.smalltitle),接受。\n• 如果只是 substring,不要直接接受,除非 query 足够长且无歧义。\n• 对 Nature、Science、Cell、Brain、Vision、Retina 等短词尤其谨慎。\n第五步:如果没有匹配,用 NLM Catalog 扩展缩写。\n例如 PubMed 里 Source 是:\n```text\nFree Radic Biol Med\n```\n可以查:\n```text\nhttps://eutils.ncbi.nlm.nih.gov/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第八步:"])</script><script>self.__next_f.push([1,"输出置信度和标注。\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 权限。39:T1e64,\u003cp\u003e6. IF 核查与标注\u003c/p\u003e\u003cp\u003e6.1 先说明 IF 核查的现实限制\u003c/p\u003e\u003cp\u003e正常情况下,官方 Journal Impact Factor 来自 Clarivate Journal Citation Reports(JCR)。但任意外部 Agent 通常没有 Clarivate/JCR 账号,也没有本地 JCR 表,所以不要通过这个路径核查。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e6.2 IF skill 的实际方法\u003c/p\u003e\u003cp\u003e主要路线:\u003c/p\u003e\u003cp\u003e1. 如果输入是 PMID,先用 NCBI E-utilities 获取 PubMed metadata。\u003c/p\u003e\u003cp\u003e- 获取 FullJournalName。 - 获取 Source / ISO abbreviation。 - 获取 ISSN / eISSN。 - 获取标题、年份、DOI 等辅助字段。\u003c/p\u003e\u003cp\u003e2. 用公开的 iikx / 爱科学移动端 JSON 接口查询期刊。\u003c/p\u003e\u003cp\u003e搜索接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci\u0026amp;c=index\u0026amp;a=info\u0026amp;keyword=\u0026lt;journal_query\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e详情接口:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci/index/detail\u0026amp;id=\u0026lt;id\u0026gt;\u0026amp;classid=\u0026lt;classid\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e3. 对搜索结果做保守匹配。\u003c/p\u003e\u003cp\u003e- 优先 exact normalized journal title match。 - 其次 exact abbreviation match。 - 对短词和宽泛词非常谨慎。 - 不接受明显 substring 误配,例如 Nature 被误配成 Nature Reviews 系列。 - 如果匹配不稳,返回 ambiguous / not_found,而不是猜。\u003c/p\u003e\u003cp\u003e4. 如果 PubMed 给的是缩写,尝试用 NLM Catalog 扩展为全称或 alternate title。\u003c/p\u003e\u003cp\u003eNLM Catalog 搜索接口仍然是 NCBI E-utilities:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026amp;term=\u0026lt;abbr\u0026gt;[Title Abbreviation]\u0026amp;retmode=xml\u0026amp;retmax=1\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e然后用 ESummary 取 Title / TitleAlternate。\u003c/p\u003e\u003cp\u003e5. 从 iikx detail 结果中读取:\u003c/p\u003e\u003cp\u003e- impact factor。 - IF 年份。 - JCR quartile。 - CAS / 中科院分区,如果有。 - source URL。 - match confidence。\u003c/p\u003e\u003cp\u003e6. 标注时不把 IF 年份写进正文紧凑标注。\u003c/p\u003e\u003cp\u003e最终标注只写:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果失败:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e或:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e*{IF=未检出}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e6.3 具体步骤\u003c/p\u003e\u003cp\u003e对每篇文献执行以下流程。\u003c/p\u003e\u003cp\u003e第一步:准备期刊查询名。\u003c/p\u003e\u003cp\u003e优先从 PubMed metadata 取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eFullJournalName\u003c/p\u003e\u003cp\u003eISOAbbreviation / Source\u003c/p\u003e\u003cp\u003eISSN\u003c/p\u003e\u003cp\u003eeISSN\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果只有 DOI,则先用 Crossref 或 OpenAlex 取期刊名。\u003c/p\u003e\u003cp\u003eCrossref:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.crossref.org/works/\u0026lt;DOI\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003eOpenAlex:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://api.openalex.org/works/https://doi.org/\u0026lt;DOI\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第二步:规范化期刊名。\u003c/p\u003e\u003cp\u003e规范化规则:\u003c/p\u003e\u003cp\u003e• 全部小"])</script><script>self.__next_f.push([1,"写。\u003c/p\u003e\u003cp\u003e• HTML unescape。\u003c/p\u003e\u003cp\u003e• 将 \u0026amp; 替换为 and。\u003c/p\u003e\u003cp\u003e• 去除标点。\u003c/p\u003e\u003cp\u003e• 多个空格合并。\u003c/p\u003e\u003cp\u003e• 比较时可同时使用 compact 形式,即去除所有空格。\u003c/p\u003e\u003cp\u003e示例伪代码:\u003c/p\u003e\u003cp\u003e```python\u003c/p\u003e\u003cp\u003eimport re, html\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003edef norm(s):\u003c/p\u003e\u003cp\u003e s = html.unescape(s or \u0026apos;\u0026apos;).lower()\u003c/p\u003e\u003cp\u003e s = re.sub(r\u0026apos;\u0026amp;\u0026apos;, \u0026apos; and \u0026apos;, s)\u003c/p\u003e\u003cp\u003e s = re.sub(r\u0026apos;[^a-z0-9]+\u0026apos;, \u0026apos; \u0026apos;, s)\u003c/p\u003e\u003cp\u003e return re.sub(r\u0026apos;\\s+\u0026apos;, \u0026apos; \u0026apos;, s).strip()\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003edef compact(s):\u003c/p\u003e\u003cp\u003e return norm(s).replace(\u0026apos; \u0026apos;, \u0026apos;\u0026apos;)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第三步:查询 iikx 搜索接口。\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci\u0026amp;c=index\u0026amp;a=info\u0026amp;keyword=\u0026lt;journal_query\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e建议设置 User-Agent,例如:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eMozilla/5.0\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e如果第一页没找到 exact match,可以有限翻页,例如最多 8 页。\u003c/p\u003e\u003cp\u003e翻页参数通常为:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003epage=2\u003c/p\u003e\u003cp\u003epage=3\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第四步:从搜索结果中选候选。\u003c/p\u003e\u003cp\u003e候选字段通常包括:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eid\u003c/p\u003e\u003cp\u003eclassid\u003c/p\u003e\u003cp\u003etitle\u003c/p\u003e\u003cp\u003esmalltitle\u003c/p\u003e\u003cp\u003eIF 或 IF2024\u003c/p\u003e\u003cp\u003ezky2020\u003c/p\u003e\u003cp\u003eurl\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e匹配规则:\u003c/p\u003e\u003cp\u003e• 如果 compact(query) == compact(candidate.title),接受。\u003c/p\u003e\u003cp\u003e• 如果 norm(query) == norm(candidate.title),接受。\u003c/p\u003e\u003cp\u003e• 如果 compact(query) == compact(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e• 如果 norm(query) == norm(candidate.smalltitle),接受。\u003c/p\u003e\u003cp\u003e• 如果只是 substring,不要直接接受,除非 query 足够长且无歧义。\u003c/p\u003e\u003cp\u003e• 对 Nature、Science、Cell、Brain、Vision、Retina 等短词尤其谨慎。\u003c/p\u003e\u003cp\u003e第五步:如果没有匹配,用 NLM Catalog 扩展缩写。\u003c/p\u003e\u003cp\u003e例如 PubMed 里 Source 是:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eFree Radic Biol Med\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e可以查:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026amp;term=Free%20Radic%20Biol%20Med%5BTitle%20Abbreviation%5D\u0026amp;retmode=xml\u0026amp;retmax=1\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e拿到 NLM Catalog ID 后,再用:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=nlmcatalog\u0026amp;id=\u0026lt;id\u0026gt;\u0026amp;retmode=xml\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e读取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eTitle\u003c/p\u003e\u003cp\u003eTitleAlternate\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e然后用这些全称再查 iikx。\u003c/p\u003e\u003cp\u003e第六步:查 iikx 详情接口。\u003c/p\u003e\u003cp\u003e如果搜索结果里有:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eid=\u0026lt;id\u0026gt;\u003c/p\u003e\u003cp\u003eclassid=\u0026lt;classid\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e调用:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003ehttps://m.iikx.com/api/restfull/?m=sci/index/detail\u0026amp;id=\u0026lt;id\u0026gt;\u0026amp;classid=\u0026lt;classid\u0026gt;\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e从 detail 中读取:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eIF2024, IF2023, IF2022 ...\u003c/p\u003e\u003cp\u003eIF\u003c/p\u003e\u003cp\u003ezky2020 或其他 JCR quartile 字段\u003c/p\u003e\u003cp\u003ejcr22 / jcr12 或分区字段\u003c/p\u003e\u003cp\u003eissn\u003c/p\u003e\u003cp\u003eeissn\u003c/p\u003e\u003cp\u003etitle\u003c/p\u003e\u003cp\u003esmalltitle\u003c/p\u003e\u003cp\u003ecategory\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e第七步:选择最新 IF。\u003c/p\u003e\u003cp\u003e在返回字段中查找所有形如:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003eIF20xx\u003c/p\u003e\u003cp\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• 不写"])</script><script>self.__next_f.push([1,"“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\u003e3a:T20d8,\u003cp\u003e6. IF Verification and Labeling\u003c/p\u003e\u003cp\u003e 6.1 First, let's explain the practical limitations of IF checks.\u003c/p\u003e\u003cp\u003e Normally, the official Journal Impact Factor comes from Clarivate Journal Citation Reports (JCR). However, any external agent typically does not have a Clarivate/JCR account or a local JCR table, so do not verify it through this path.\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.2 Practical methods for using IF skill\u003c/p\u003e\u003cp\u003e Main route:\u003c/p\u003e\u003cp\u003e 1. If the input is PMID, first use NCBI E-utilities to obtain PubMed metadata.\u003c/p\u003e\u003cp\u003e - Retrieve FullJournalName. - Retrieve Source/ISO abbreviation. - Retrieve ISSN/eISSN. - Retrieve auxiliary fields such as title, year, and DOI.\u003c/p\u003e\u003cp\u003e 2. Use the publicly available iikx/iscience mobile JSON interface to query journals.\u003c/p\u003e\u003cp\u003e Search API:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://m.iikx.com/api/restfull/?m=sci\u0026c=index\u0026a=info\u0026keyword=\u003cjournal_query\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Details API:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://m.iikx.com/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 3. Perform a conservative match on the search results.\u003c/p\u003e\u003cp\u003e - Prioritizes exact normalized journal title matches. - Second, prioritizes exact abbreviation matches. - Exercises great caution with short and broad terms. - Does not accept obvious substring mismatches, such as mismatching \"Nature\" as \"Nature Reviews\" series. - Returns ambiguous/not_found results if the match is unstable, rather than guessing.\u003c/p\u003e\u003cp\u003e 4. If PubMed provides an abbreviation, try expanding it to the full name or alternative title using NLM Catalog.\u003c/p\u003e\u003cp\u003e The NLM Catalog search interface remains NCBI E-utilities:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=\u003cabbr\u003e[Title Abbreviation]\u0026retmode=xml\u0026retmax=1\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Then use ESummary to get the Title / TitleAlternate.\u003c/p\u003e\u003cp\u003e 5. Read from the iikx detail results:\u003c/p\u003e\u003cp\u003e - Impact factor. - IF year. - JCR quartile. - CAS/CAS quartile, if applicable. - Source URL. - Match confidence.\u003c/p\u003e\u003cp\u003e 6. Do not include the IF year in the main text when annotating; use compact annotations.\u003c/p\u003e\u003cp\u003e The final annotation should only state:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If it fails:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Pending Verification}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e or:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Not detected}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.3 Specific Steps\u003c/p\u003e\u003cp\u003e Perform the following procedure for each document.\u003c/p\u003e\u003cp\u003e Step 1: Prepare the journal search name.\u003c/p\u003e\u003cp\u003e Prioritize retrieving from PubMed metadata:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e FullJournalName\u003c/p\u003e\u003cp\u003e ISOAbbreviation / Source\u003c/p\u003e\u003cp\u003e ISSN\u003c/p\u003e\u003cp\u003e eISSN\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If only a DOI is available, first use Crossref or OpenAlex to obtain the journal name.\u003c/p\u003e\u003cp\u003e Crossref:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.crossref.org/works/\u003cDOI\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e OpenAlex:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://api.openalex.org/works/https://doi.org/\u003cDOI\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Step 2: Standardize journal names.\u003c/p\u003e\u003cp\u003e Standardization rules:\u003c/p\u003e\u003cp\u003e • All lowercase.\u003c/p\u003e\u003cp\u003e • HTML unescape.\u003c/p\u003e\u003cp\u003e • Replace \u0026 with and.\u003c/p\u003e\u003cp\u003e • Remove punctuation.\u003c/p\u003e\u003cp\u003e • Combine multiple spaces.\u003c/p\u003e\u003cp\u003e • When maki"])</script><script>self.__next_f.push([1,"ng 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 Biol Med\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e You can check:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=nlmcatalog\u0026term=Free%20Radic%20Biol%20Med%5BTitle%20Abbreviation%5D\u0026retmode=xml\u0026retmax=1\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e After obtaining the NLM Catalog ID, use it as follows:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=nlmcatalog\u0026id=\u003cid\u003e\u0026retmode=xml\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Read:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e Title\u003c/p\u003e\u003cp\u003e TitleAlternate\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Then use these full names to search for iikx.\u003c/p\u003e\u003cp\u003e Step 6: Check the iikx details interface.\u003c/p\u003e\u003cp\u003e If the search results contain:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e id=\u003cid\u003e\u003c/p\u003e\u003cp\u003e classid=\u003cclassid\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Call:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e https://m.iikx.com/api/restfull/?m=sci/index/detail\u0026id=\u003cid\u003e\u0026classid=\u003cclassid\u003e\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Read from detail:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF2024, IF2023, IF2022 ...\u003c/p\u003e\u003cp\u003e IF\u003c/p\u003e\u003cp\u003e zky2020 or other JCR quartile fields\u003c/p\u003e\u003cp\u003e jcr22 / jcr12 or partition field\u003c/p\u003e\u003cp\u003e issn\u003c/p\u003e\u003cp\u003e eissn\u003c/p\u003e\u003cp\u003e title\u003c/p\u003e\u003cp\u003e smalltitle\u003c/p\u003e\u003cp\u003e category\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Step 7: Select the latest IF statement.\u003c/p\u003e\u003cp\u003e Search the returned fields for all instances of the form:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF20xx\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e For example:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF2024\u003c/p\u003e\u003cp\u003e IF2023\u003c/p\u003e\u003cp\u003e IF2022\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Choose the year with the largest significant digit.\u003c/p\u003e\u003cp\u003e If IF20xx is not present, attempt to read:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e IF\u003c/p\u003e\u003cp\u003e if_value\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If no valid value is found, it is marked as not detected.\u003c/p\u003e\u003cp\u003e Step 8: Output confidence level and label.\u003c/p\u003e\u003cp\u003e If exact title/abbreviation matches, and detail returns a valid IF:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If the match is uncertain:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Pending Verification}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e If the public API returns no results:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=Not detected}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e 6.4 IF Annotation Format\u003c/p\u003e\u003cp\u003e Fixed format:\u003c/p\u003e\u003cp\u003e ```text\u003c/p\u003e\u003cp\u003e *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Example:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e Smith J et al., **Neuron** (2020), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=15.0, Q1}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Notice:\u003c/p\u003e\u003cp\u003e • The JCR year is not written inside the IF annotation.\u003c/p\u003e\u003cp\u003e • Do not write \"2024 JCR IF\".\u003c/p\u003e\u003cp\u003e • Do not write \"JCR 2024\"."])</script><script>self.__next_f.push([1,"\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\u003e3b:T4d3,8. 可复现伪代码\n```python\nqueries = build_queries(user_question)\n \nall_pmids = []\nfor query in queries:\n pmids = ncbi_esearch(query, retmax=20, sort='relevance')\n all_pmids.extend(pmids)\n \npmids = deduplicate_keep_order(all_pmids)\n \nmetadata = ncbi_esummary(pmids)\nabstracts = ncbi_efetch_abstract(pmids)\n \nrecords = merge_metadata_and_abstracts(metadata, abstracts)\nrecords = tag_evidence(records, user_question)\nrecords = rank_records(records)\nselected = select_top_records(records)\n \nif need_fulltext:\n for record in selected_key_records:\n pmcid = idconv_pmid_to_pmcid(record.pmid)\n if pmcid:\n record.fulltext = fetch_bioc_or_pmc_xml(pmcid)\n \nfor record in selected:\n journal_query = record.full_journal_name or record.journal_abbrev\n if_result = lookup_if_public_iikx(journal_query)\n if if_result.confident:\n record.if_annotation = f'*{IF={if_result.if_value},{if_result.quartile}}*'\n elif if_result.ambiguous:\n record.if_annotation = '*{IF=待核验}*'\n else:\n record.if_annotation = '*{IF=未检出}*'\n \nanswer = compose_answer(\n conclusion,\n evidence_groups,\n clickable_body_citations,\n full_reference_list_with_if\n)\n```3c: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\u003e3d: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 "])</script><script>self.__next_f.push([1,"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\u003e3e: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/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\u003e3f:T572,This skill intelligently retrieves, analyzes, and summarizes relevant scientific literature based on your biomedical research questions. Designed for researchers, students, and anyone interested in the latest developments in the biomedical field, it aims to provide precise and traceable literature evidence. Its core functionality includes breaking down complex natural language questions into structured elements and generating multi-level search strategies to ensure comprehensive coverage of relevant literature. It retrieves metadata and abstracts from authoritative databases such as PubMed and performs deduplication, evidence grading, and type labeling on the search results. For a small number of key documents, it can perform full-text verification, extracting detailed information such as figures, experimental methods, and dosage parameters. When presenting results, this skill provides clear conclusions and graded chains of evidence, with all citations accompanied by clickable links for easy access to the original text. A complete list of literature information is appended at the end, with rigorous verification and labeling of journal impact factors (IF) to ensure accuracy and transparency. Ultimately, you will receive a structured, easy-to-understand literature review containing clear explanations of direct and indirect evidence, mechanistic induction, and research gaps.40:T5c3,This skill provides a comprehensive SEO and GEO (Generative Engine Optimization) audit for any website, offering actionable insights to improve online visibility and authority. It is designed for brands, SaaS teams, SEO operators"])</script><script>self.__next_f.push([1,", agencies, and AI search growth teams seeking to understand and enhance their digital presence.\n\nThe skill evaluates a website across six core dimensions: technical SEO, page and content quality, GEO and AI visibility, trust and entity authority, off-site entity and brand mentions, and platform-specific AI readiness. It can perform audits ranging from a single page to an entire domain, including an analysis of off-site brand mentions. Users can choose from different output modes—Boss mode for executive summaries, Operator mode for balanced detail, or Specialist mode for in-depth analysis—tailoring the report to their specific needs.\n\nTo begin an audit, simply provide the website URL. You can also specify the desired audit scope (single page, site, or domain-level strategic review) and output mode. The skill then processes this information, collecting observable data and differentiating between factual observations and expert assessments. It provides a technical health score and evaluates strategic visibility across key areas, prioritizing findings into immediate, monthly, and future optimization categories. The final report is delivered in a clear, structured format, in either Chinese or English, based on your preference.7:[\"$\",\"div\",null,{\"className\":\"container pt-[42px] md:pt-[100px]\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col gap-5 md:gap-[60px]\",\"children\":[[\"$\",\"$L2e\",null,{\"label\":\"Skills\",\"fallbackHref\":\"/skills\"}],[\"$\",\"$L2f\",null,{\"skill\":{\"id\":\"019e00d2-78ba-73bc-93d4-eae7d91298a9\",\"created_at\":\"2026-05-07T05:04:14.010Z\",\"updated_at\":\"2026-05-07T09:01:52.823Z\",\"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 research literature retrieval and provide users with detailed and reliable output. Core Objectives: 1. After a user initiates a search, the system can break down the question and keywords. 2. Retrieve literature using publicly available 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 (Information Impact Factor) with publicly available sources; if high-confidence verification is not possible, it must be marked as \\\"Pending Verification\\\" or \\\"Not Detected\\\".\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Hedgehug\",\"icon_bg_color\":\"skill-bg13\",\"cover_images\":[\"https://cdn.gooo.ai/web-images/a5f4973dccb5c12acd58034ffdea6d898802a4d4be1e9568bb3088c4f635cda2\",\"https://cdn.gooo.ai/web-images/f697d3abe7d40284b9afc64c0ec008739ef2f24e668d3e36d7f7890b70206ad7\"],\"fork_count\":0,\"earned_credits\":0,\"price\":200,\"content\":{\"steps\":[{\"instructions\":\"$30\",\"instructions_raw\":\"$31\",\"localized_instructions_raw\":\"$32\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"$33\",\"instructions_raw\":\"$34\",\"localized_instructions_raw\":\"$35\",\"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只能找"])</script><script>self.__next_f.push([1,"到背景、推测、综述或相邻模型,没有直接实验结果。\\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\":\"$36\",\"tools\":{\"write\":{\"use_tool\":\"required\",\"model\":\"claude-4-5-sonnet\"}},\"tool_as_skill\":{\"id\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\",\"name\":\"写作\",\"config\":{\"model\":\"claude-4-5-sonnet\"}},\"at_references\":[]},{\"instructions\":\"4. 回复中如何组织引用\\n4.1 正文引用格式\\n正文引用必须可点击。\\n格式:\\n```markdown\\n[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\\n```\\n示例:\\n```markdown\\n已有研究在人源 retinal organoids 中观察到发育阶段相关的光感受器应激和退化现象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。\\n```\\n不要写成:\\n```text\\n[1]\\n(PMID: xxxxx)\\n见文献1\\n```\\n4.2 推荐回答结构\\n第一段:直接结论。\\n```text\\n结论:已有相关报道,但直接证据主要集中在……;关于……仍缺少直接证据。\\n```\\n第二段:证据分级。\\n```text\\n直接证据:\\n- 文献 A:……\\n \\n间接证据:\\n- 文献 B:……\\n \\n未见直接证据:\\n- 本轮未找到……\\n```\\n第三段:机制归纳。\\n按主题分组,例如:\\n• apoptosis / caspase pathway\\n• oxidative stress\\n• mitochondrial dysfunction\\n• ER stress\\n• hypoxia / metabolic stress\\n• inflammation\\n• developmental mismatch\\n第四段:研究空白。\\n明确说明哪些问题没有直接证据。\\n第五段:实验启发。\\n如果用户需要实验设计,给出 marker、assay、time point、control。\",\"instructions_raw\":\"\u003cp\u003e4. 回复中如何组织引用\u003c/p\u003e\u003cp\u003e4.1 正文引用格式\u003c/p\u003e\u003cp\u003e正文引用必须可点击。\u003c/p\u003e\u003cp\u003e格式:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e示例:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e已有研究在人源 retinal organoids 中观察到发育阶段相关的光感受器应激和退化现象[[1. **Cell Stem Cell**, 2019]](https://pubmed.ncbi.nlm.nih.gov/xxxxxxx/)。\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e不要写成:\u003c/p\u003e\u003cp\u003e```text\u003c/p\u003e\u003cp\u003e[1]\u003c"])</script><script>self.__next_f.push([1,"/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\":\"$37\",\"tools\":{\"write\":{\"use_tool\":\"required\",\"model\":\"claude-4-5-sonnet\"}},\"tool_as_skill\":{\"id\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\",\"name\":\"写作\",\"config\":{\"model\":\"claude-4-5-sonnet\"}},\"at_references\":[]},{\"instructions\":\"5. 文末完整文献信息列表\\n只要正文引用具体文献,文末必须附完整列表。\\n格式:\\n```markdown\\n## 完整文献信息列表\\n \\n1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*\\n2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\\n```\\n作者格式:\\n• 1–3 位作者:列出全部。\\n• 超过 3 位:第一作者 et al.\\nPMID / DOI / URL 必须可点击。\",\"instructions_raw\":\"\u003cp\u003e5. 文末完整文献信息列表\u003c/p\u003e\u003cp\u003e只要正文引用具体文献,文末必须附完整列表。\u003c/p\u003e\u003cp\u003e格式:\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e## 完整文献信息列表\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\u003cp\u003e作者格式:\u003c/p\u003e\u003cp\u003e• 1–3 位作者:列出全部。\u003c/p\u003e\u003cp\u003e• 超过 3 位:第一作者 et al.\u003c/p\u003e\u003cp\u003ePMID / DOI / URL 必须可点击。\u003c/p\u003e\",\"localized_instructions_raw\":\"\u003cp\u003e5. Complete list of references at the end of the article\u003c/p\u003e\u003cp\u003e If a specific reference is cited in the text, a complete list must be attached at the end of the article.\u003c/p\u003e\u003cp\u003e Format:\u003c/p\u003e\u003cp\u003e ```markdown\u003c/p\u003e\u003cp\u003e ## Complete List of Reference Information\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cp\u003e 1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Qn}*\u003c/p\u003e\u003cp\u003e 2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=To be verified}*\u003c/p\u003e\u003cp\u003e ```\u003c/p\u003e\u003cp\u003e Author format:\u003c/p\u003e\u003cp\u003e • 1–3 authors: List all.\u003c/p\u003e\u003cp\u003e • More than 3 authors: First author et al.\u003c/p\u003e\u003cp\u003e The PMID / DOI / URL must be clickable.\u003c/p\u003e\",\"tools\":{\"research\":{\"use_tool\":\"required\"}},\"tool_as_skill\":{\"id\":\"019c2855-1439-71b5-8699-936ec99b13c7\",\"name\":\"研究\"},\"at_references\":[]},{\"instructions\":\"$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\":\"7. 最终回复自检清单\\n发出前必须检查:\\n• 是否先回答用户核心问题。\\n• 是否区分直接证据、间接证据、未见直接证据。\\n• 是否所有正文引用都可点击。\\n• 是否文末有完整文献信息列表。\\n• 是否每篇文献都带 IF 标注或待核验/未检出标注。\\n• PMID/DOI/URL 是否可点击。\\n• 是否避免把整体组织结果偷换成特定细胞类型结论。\\n• 是否避免把活化/磷酸化偷换成总表达量升高。\\n• 是否标注预印本。\\n• 是否说明检索边界。\\n• IF 是否没有凭记"])</script><script>self.__next_f.push([1,"忆猜测。\",\"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\":\"$3b\",\"instructions_raw\":\"$3c\",\"localized_instructions_raw\":\"$3d\",\"tools\":{},\"at_references\":[]},{\"instructions\":\"9. 推荐最终交付模板\\n```markdown\\n结论:\\n……\\n \\n证据等级:\\n \\n直接证据:\\n- ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\\n \\n间接证据:\\n- ……[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\\n \\n未见直接证据:\\n- ……\\n \\n机制归纳:\\n1. ……\\n2. ……\\n \\n检索边界:\\n本轮主要检索 PubMed / PMC / BioC / bioRxiv;初筛基于 metadata + abstract,仅对关键文献进入全文复核。IF 标注基于公开可访问来源核查;无法高置信匹配时标为待核验或未检出。\\n \\n完整文献信息列表:\\n1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*\\n2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\\n```\",\"instructions_raw\":\"\u003cp\u003e9. 推荐最终交付模板\u003c/p\u003e\u003cp\u003e```markdown\u003c/p\u003e\u003cp\u003e结论:\u003c/p\u003e\u003cp\u003e……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e证据等级:\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e直接证据:\u003c/p\u003e\u003cp\u003e- ……[[1. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e间接证据:\u003c/p\u003e\u003cp\u003e- ……[[2. **Journal**, Year]](https://pubmed.ncbi.nlm.nih.gov/PMID/)\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e未见直接证据:\u003c/p\u003e\u003cp\u003e- ……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e机制归纳:\u003c/p\u003e\u003cp\u003e1. ……\u003c/p\u003e\u003cp\u003e2. ……\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e检索边界:\u003c/p\u003e\u003cp\u003e本轮主要检索 PubMed / PMC / BioC / bioRxiv;初筛基于 metadata + abstract,仅对关键文献进入全文复核。IF 标注基于公开可访问来源核查;无法高置信匹配时标为待核验或未检出。\u003c/p\u003e\u003cp\u003e \u003c/p\u003e\u003cp\u003e完整文献信息列表:\u003c/p\u003e\u003cp\u003e1. Smith J et al., **Journal Name** (2021), [PMID: 12345678](https://pubmed.ncbi.nlm.nih.gov/12345678/). *{IF=X,Q1}*\u003c/p\u003e\u003cp\u003e2. Wang X et al., **Journal Name** (2022), [DOI: 10.xxxx/xxxxx](https://doi.org/10.xxxx/xxxxx). *{IF=待核验}*\u003c/p\u003e\u003cp\u003e```\u003c/p\u003e\",\"localized_instructions_raw\":\"$3e\",\"tools\":{\"write\":{\"use_tool\":\"required\",\"model\":\"claude-4-5-sonnet\"}},\"tool_as_skill\":{\"id\":\"019c32a0-c571-74f0-8ae5-9262c15cced7\",\"name\":\"写作\",\"config\":{\"model\":\"claude-4-5-sonnet\"}},\"at_references\":[]}]},\"content_visibility\":\"public\",\"origin\":\"custom\",\"suggested_categories\":[\"research\"],\"featured_reason\":\"This skill provides a rigorous biomedical "])</script><script>self.__next_f.push([1,"literature review process, from multi-level searches to impact factor (IF) verification, ensuring highly reliable and reproducible results, making it a valuable tool for researchers.\",\"seo_description\":\"Accurately retrieve biomedical literature, providing clickable citations and a complete list of references through multi-level queries, evidence grading, and impact factor (IF) verification, ensuring reliable and reproducible information.\",\"long_description\":\"$3f\",\"input_hint\":\"Which biomedical topic would you like to research?\",\"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\":\"019e00e5-b5b1-7d1b-8568-e6566a6dfc09\",\"share_url\":\"https://youmind.com/skills/biomed-research-assistant-zXJCpN71mICVZ2\"},\"relatedSkills\":[{\"id\":\"019e01fe-ff0f-72b1-ad3a-8b5f5d4481b0\",\"created_at\":\"2026-05-07T10:32:29.199Z\",\"updated_at\":\"2026-05-07T15:51:49.510Z\",\"creator_id\":\"37ebef17-4a42-42ee-873f-d06fd2d71101\",\"name\":\"GitHub Front-End Hot Projects - Daily Ranking\",\"description\":\"Automatically retrieves the daily front-end project rankings and latest project data from Best of JS, combining real-time GitHub star counts and official descriptions to generate a standardized daily front-end trending list document. It includes project URLs, star counts, Chinese descriptions, and recommendations, making it ideal for front-end developers to quickly understand the day's popular projects and technology trends.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Flamingo\",\"icon_bg_color\":\"skill-bg05\",\"cover_images\":[\"https://cdn.gooo.ai/web-images/06b7eae6029ebb119a57585ed1c36049c0880bc68c4fea2b32b6de301b2ab159\"],\"fork_count\":1,\"earned_credits\":0,\"price\":0,\"content_visibility\":\"private\",\"origin\":\"custom\",\"categories\":[\"research\"],\"suggested_categories\":[\"learn\"],\"featured_reason\":\"此技能独家抓取 GitHub 前端日榜和最新项目,智能提取关键信息并生成深度报告,助你轻松追踪前端技术前沿。\",\"seo_description\":\"获取并分析 Best of JS 日榜与最新项目,生成GitHub前端热榜文档,包含项目地址、Star数、中文介绍及推荐语。\",\"long_description\":\"此技能旨在为前端开发者和技术爱好者提供每日更新的 GitHub 前端热门项目概览。它能自动抓取 Best of JS 上的日榜和最新项目数据,并深入挖掘每个项目的 GitHub 详细信息,最终生成一份结构清晰、内容丰富的报告。\\n\\n用户只需运行此技能,即可获得 GitHub 上最受关注和最新发布的前端项目信息。技能会自动检索项目的 GitHub 仓库地址、实时 Star 数量以及官方项目描述,并将其翻译成中文,方便用户快速理解。对于无法获取 Star 数的新晋项目,还会特别标注,帮助用户发现潜在的明星项目。\\n\\n技能会将收集到的信息整理成一份易于阅读的文档,其中包含日榜和最新项目的前五名。每个项目都配有详细的介绍、推荐理由和关键数据。完成文档创建后,技能还会提供一份总结报告,概述本期亮点项目、数据统计,并提醒用户文档已生成,方便查阅和分享。\",\"input_hint\":\"Want to see today's GitHub front-end trending topics?\",\"slug\":\"github-frontend-daily-trends\",\"featured\":false,\"approved_at\":\"2026-05-07T10:35:23.069Z\",\"creator\":{\"id\":\"37ebef17-4a42-42ee-873f-d06fd2d71101\",\"name\":\"冴羽\",\"picture\":\"https://lh3.googleusercontent.com/a/ACg8ocK2gIMlviaJufQF1lw4GmORDyyq4-A6ssot7cpKbXvEjLOqcYI=s96-c\"},\"latest_version_id\":\"019e0201-a63b-75d9-9475-a619b5fab23f\"},{\"id\":\"019e01f2-a3b6-7ac0-b8a6-05ea4421a522\",\"created_at\":\"2026-05-07T10:18:59.382"])</script><script>self.__next_f.push([1,"Z\",\"updated_at\":\"2026-05-07T10:37:41.656Z\",\"creator_id\":\"37ebef17-4a42-42ee-873f-d06fd2d71101\",\"name\":\"Front-end development topic library\",\"description\":\"Automatically collects high-quality articles and projects from 9 specified front-end platforms over the past month, and intelligently categorizes and organizes them into a structured collection document.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Bear\",\"icon_bg_color\":\"skill-bg03\",\"cover_images\":[\"https://cdn.gooo.ai/web-images/d1b56a638be9c3093b63fc726b236528beb7fd04f8f707c473c55e6face382f3\"],\"fork_count\":0,\"earned_credits\":0,\"price\":0,\"content_visibility\":\"private\",\"origin\":\"custom\",\"categories\":[\"research\"],\"suggested_categories\":[\"learn\"],\"featured_reason\":\"此技能能精准聚合9大前端平台最新内容,通过智能筛选与动态主题聚类,为开发者提供结构化、高价值的前端资讯,是前端学习与实践的得力助手。\",\"seo_description\":\"获取最新前端开发资讯!我们从9大平台精选当月最有价值文章和项目,涵盖AI编程、React、CSS等,助你紧跟技术前沿。\",\"long_description\":\"此技能旨在为前端开发者提供一份精心策划的月度前端资讯合集,帮助他们高效掌握行业动态和技术进展。它能从多个知名前端开发平台自动收集、筛选并整理高质量文章和项目,形成一份结构化文档。\\n\\n无论是希望追踪最新技术趋势的开发者、内容创作者,还是寻求灵感的技术团队,都可以利用此工具快速获取最有价值的前端内容。它能够智能识别实用技巧、可复用的方法论以及与AI编程相关的内容,并根据互动数据和时效性进行智能评分和排序,确保用户总能看到最热门、最前沿的资讯。\\n\\n该技能通过对Reddit、DEV Community、CSS-Tricks等九个前端开发平台进行深度内容检索,自动过滤重复、低质量或营销内容。它会将收集到的信息动态聚类成不同的技术主题,如“AI编程与测试”、“React性能与模式”等,并对每篇文章进行中文标题翻译和摘要总结。最终,它会生成一份排版清晰、内容详尽的文档,其中包含文章链接、来源、发布时间及互动数据,并提供内容来源分布、重点总结和特色亮点分析,让用户一目了然。\",\"input_hint\":\"What high-quality articles and projects in the field of front-end development are you looking for?\",\"slug\":\"frontend-dev-topic-curator\",\"featured\":false,\"approved_at\":\"2026-05-07T10:37:33.817Z\",\"creator\":{\"id\":\"37ebef17-4a42-42ee-873f-d06fd2d71101\",\"name\":\"冴羽\",\"picture\":\"https://lh3.googleusercontent.com/a/ACg8ocK2gIMlviaJufQF1lw4GmORDyyq4-A6ssot7cpKbXvEjLOqcYI=s96-c\"},\"latest_version_id\":\"019e0203-a4f5-7408-9cec-2296f05dadf7\"},{\"id\":\"019e0044-21c9-7ff6-96a3-16e46e0d96c8\",\"created_at\":\"2026-05-07T02:28:45.641Z\",\"updated_at\":\"2026-05-07T04:55:32.404Z\",\"creator_id\":\"d4dae4e9-b137-4640-96e6-de17eeb16c36\",\"name\":\"SEO GEO Audit\",\"description\":\"Unified SEO and GEO audit framework covering technical health, content quality, trust signals, entity authority, and AI visibility. Supports three audit scopes (single page/site/domain) and three output modes (boss/operator/specialist). Provide a website URL to start, or click to see full options.\",\"type\":\"prompt-executer\",\"visibility\":\"public\",\"review_status\":\"approved\",\"icon_value\":\"Crow\",\"icon_bg_color\":\"skill-bg13\",\"cover_images\":[\"https://cdn.gooo.ai/web-images/9295ba5c7e452dd19d927a17e6d1082c1dee67afbee874eafe35d450ecdc7178\"],\"fork_count\":1,\"earned_credits\":0,\"price\":0,\"content_visibility\":\"private\",\"origin\":\"custom\",\"categories\":[\"research\"],\"suggested_categories\":[\"research\"],\"featured_reason\":\"This skill provides a comprehensive SEO and GEO audit, uniquely integrating AI visibility and platform-specific readiness. Its flexible reporting modes cater to diverse stakeholders, from executives to specialists.\",\"seo_description\":\"Get a comprehensive SEO \u0026 GEO audit covering technical health, content, AI visibility, and aut"])</script><script>self.__next_f.push([1,"hority. Actionable insights for growth.\",\"long_description\":\"$40\",\"input_hint\":\"Which website should I audit?\",\"slug\":\"seo-geo-audit\",\"featured\":false,\"approved_at\":\"2026-05-07T02:40:40.744Z\",\"creator\":{\"id\":\"d4dae4e9-b137-4640-96e6-de17eeb16c36\",\"name\":\"dageno\",\"picture\":\"https://lh3.googleusercontent.com/a/ACg8ocJJjWJfPXzgd6JpcLU_vPiCtTIYvvsUsyZ0L1y-jo1jGvzr99M=s96-c\"},\"latest_version_id\":\"019e005e-6c99-7f28-907e-7594bc761518\"}],\"publicConfig\":{\"PUBLIC_AGENT_MODEL_MAP\":{\"lite\":\"claude-4-5-sonnet\",\"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\"]},\"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\",\"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\":\"gemini-3.1-pro-preview\",\"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_EXTENSION_ASK_AI_MODELS\":[\"gemini-2.5-flash\"],\"PUBLIC_FF_NEW_BOARD_V2\":true,\"PUBLIC_IMAGE_MODELS\":[\"gpt-image-2-2026-04-21\",\"seedream-5-0-lite-260128\",\"gemini-3-pro-image-preview\",\"gemini-3.1-flash-image-preview\",\"qwen-image-2.0-pro\",\"qwen-image-2.0\",\"doubao-seedream-4-5-251128\",\"gemini-2.5-flash-image\",\"gpt-image-1.5\",\"gpt-image-1\"],\"PUBLIC_LAST_YOUWEB_RELEASE_TIME\":\"2026-05-07T12:20:47Z\",\"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\","])</script><script>self.__next_f.push([1,"\"extra\":{\"prediction\":true}},\"gpt-5\":{\"title\":\"GPT-5\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"gpt-5-reasoning\":{\"title\":\"GPT-5\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-reasoning\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"display_thinking_tag\":true,\"paid_user_only\":false}},\"gpt-5-1\":{\"title\":\"GPT-5.1\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-5-1\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"gpt-5-mini\":{\"title\":\"GPT-5 mini\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-mini\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"gpt-5-nano\":{\"title\":\"GPT-5 nano\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-nano\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"text-embedding-3-large\":{\"title\":\"embedding\",\"type\":\"embedding\",\"from\":\"openai\",\"value\":\"text-embedding-3-large\",\"providers\":[\"openai\",\"azure\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\"},\"speech-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\":2"])</script><script>self.__next_f.push([1,"00000,\"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\",\"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_g"])</script><script>self.__next_f.push([1,"rok.png\",\"extra\":{\"paid_user_only\":false}},\"grok-4-fast\":{\"title\":\"Grok 4 Fast\",\"type\":\"chat\",\"from\":\"xai\",\"value\":\"grok-4-fast\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"extra\":{\"paid_user_only\":false}},\"grok-4-fast-reasoning\":{\"title\":\"Grok 4 Fast\",\"type\":\"reasoning\",\"from\":\"xai\",\"value\":\"grok-4-fast-reasoning\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"extra\":{\"fake_reasoning\":true,\"paid_user_only\":false}},\"kimi-k2\":{\"title\":\"Kimi K2\",\"type\":\"chat\",\"from\":\"moonshot\",\"value\":\"kimi-k2\",\"providers\":[\"moonshot\"],\"input_token_limit\":262144,\"output_token_limit\":30000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_kimi.png\",\"extra\":{\"disable_image_input\":true}},\"kimi-k2-thinking\":{\"title\":\"Kimi K2 Thinking\",\"type\":\"reasoning\",\"from\":\"moonshot\",\"value\":\"kimi-k2-thinking\",\"providers\":[\"moonshot\"],\"input_token_limit\":262144,\"output_token_limit\":30000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_kimi.png\",\"extra\":{\"disable_image_input\":true}},\"minimax-m2\":{\"title\":\"MiniMax M2\",\"type\":\"chat\",\"from\":\"minimax\",\"value\":\"minimax-m2\",\"providers\":[\"minimax\"],\"input_token_limit\":160000,\"output_token_limit\":8190,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_minimax.png\",\"extra\":{\"disable_image_input\":true,\"display_thinking_tag\":false,\"display_free\":false}},\"gemini-3-pro-preview\":{\"title\":\"Gemini 3 Pro\",\"type\":\"reasoning\",\"from\":\"google\",\"value\":\"gemini-3-pro-preview\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"providers\":[\"vertexai\"],\"input_token_limit\":1000000,\"output_token_limit\":64000,\"extra\":{\"fake_reasoning\":true,\"display_thinking_tag\":false,\"paid_user_only\":true}},\"grok-4-1-fast-reasoning\":{\"title\":\"Grok 4.1 Fast\",\"type\":\"reasoning\",\"from\":\"xai\",\"value\":\"grok-4-1-fast-reasoning\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_grok.png\",\"providers\":[\"xai\"],\"input_token_limit\":128000,\"output_token_limit\":16384,\"extra\":{\"fake_reasoning\":true,\"display_thinking_tag\":true,\"paid_user_only\":false}},\"gemini-3-pro-image-preview\":{\"title\":\"Nano Banana Pro\",\"type\":\"image\",\"from\":\"vertexai\",\"value\":\"gemini-3-pro-image-preview\",\"providers\":[\"vertexai\"],\"input_token_limit\":64000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_nano_banana.png\",\"extra\":{\"display_free\":false}},\"claude-4-5-opus\":{\"title\":\"Claude Opus 4.5\",\"type\":\"reasoning\",\"from\":\"anthropic\",\"value\":\"claude-4-5-opus\",\"providers\":[\"anthropic\",\"bedrock\"],\"input_token_limit\":200000,\"output_token_limit\":64000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_claude.png\",\"extra\":{\"paid_user_only\":true}},\"deepseek-chat\":{\"title\":\"DeepSeek V3.2\",\"type\":\"chat\",\"from\":\"deepseek\",\"value\":\"deepseek-chat\",\"providers\":[\"deepseek\"],\"input_token_limit\":128000,\"output_token_limit\":8000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_deepseek.png\",\"extra\":{\"disable_image_input\":true,\"prediction\":false,\"display_thinking_tag\":false}},\"doubao-seedream-4-5-251128\":{\"title\":\"Seedream 4.5\",\"type\":\"image\",\"from\":\"volcengine-fangzhou\",\"value\":\"doubao-seedream-4-5-251128\",\"providers\":[\"byteplus\"],\"input_token_limit\":0,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/seedream.avif\",\"extra\":{\"display_free\":false}},\"gpt-5-2\":{\"title\":\"GPT-5.2\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-2\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":400000,\"output_token_limit\":128000,\"extra\":{\"disable_image_input\":false,\"display_thinking_tag\":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\",\"aih"])</script><script>self.__next_f.push([1,"ubmix\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"kling-v2-5-turbo\":{\"title\":\"Kling video 2.5 turbo\",\"type\":\"video\",\"from\":\"kling\",\"value\":\"kling-v2-5-turbo\",\"icon_url\":\"https://cdn.gooo.ai/assets/keling.png\",\"providers\":[\"kling\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"kling-v1-6\":{\"title\":\"Kling video 1.6\",\"type\":\"video\",\"from\":\"kling\",\"value\":\"kling-v1-6\",\"icon_url\":\"https://cdn.gooo.ai/assets/keling.png\",\"providers\":[\"kling\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"seedance-1-5-pro-251215\":{\"title\":\"Seedance 1.5 Pro\",\"type\":\"video\",\"from\":\"byteplus\",\"value\":\"seedance-1-5-pro-251215\",\"icon_url\":\"https://cdn.gooo.ai/assets/seedance.png\",\"providers\":[\"byteplus\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"seedance-1-0-pro-250528\":{\"title\":\"Seedance 1.0 Pro\",\"type\":\"video\",\"from\":\"byteplus\",\"value\":\"seedance-1-0-pro-250528\",\"icon_url\":\"https://cdn.gooo.ai/assets/seedance.png\",\"providers\":[\"byteplus\"],\"input_token_limit\":128000,\"output_token_limit\":0,\"extra\":{}},\"minimax-m2-1\":{\"title\":\"MiniMax M2.1\",\"type\":\"reasoning\",\"from\":\"minimax\",\"value\":\"minimax-m2-1\",\"providers\":[\"minimax\"],\"input_token_limit\":204800,\"output_token_limit\":8190,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_minimax.png\",\"extra\":{\"disable_image_input\":true,\"display_thinking_tag\":false,\"display_free\":false}},\"glm-4.7\":{\"title\":\"GLM 4.7\",\"type\":\"reasoning\",\"from\":\"openrouter\",\"value\":\"glm-4.7\",\"providers\":[\"openrouter\"],\"input_token_limit\":200000,\"output_token_limit\":65536,\"icon_url\":\"https://cdn.gooo.ai/assets/zhipuai.png\",\"extra\":{\"display_free\":false,\"disable_image_input\":true}},\"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"])</script><script>self.__next_f.push([1,"\":{}},\"qwen-image-2.0-pro\":{\"title\":\"Qwen Image 2.0 Pro\",\"type\":\"image\",\"from\":\"qwen\",\"value\":\"qwen-image-2.0-pro\",\"providers\":[\"aliyun\"],\"input_token_limit\":1000000,\"output_token_limit\":0,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_qwen.png\",\"extra\":{}},\"gpt-5.3-chat-latest\":{\"title\":\"GPT-5.3\",\"type\":\"chat\",\"from\":\"openai\",\"value\":\"gpt-5.3-chat-latest\",\"providers\":[\"openai\"],\"input_token_limit\":400000,\"output_token_limit\":128000,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":false}},\"gemini-3.1-flash-lite-preview\":{\"title\":\"Gemini 3 Flash Lite\",\"type\":\"reasoning\",\"from\":\"google\",\"value\":\"gemini-3.1-flash-lite-preview\",\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_gemini.png\",\"providers\":[\"vertexai\"],\"input_token_limit\":1000000,\"output_token_limit\":64000,\"extra\":{\"fake_reasoning\":true,\"display_thinking_tag\":false,\"paid_user_only\":false}},\"gpt-5-4\":{\"title\":\"GPT-5.4\",\"type\":\"reasoning\",\"from\":\"openai\",\"value\":\"gpt-5-4\",\"providers\":[\"openai\",\"aihubmix\"],\"input_token_limit\":272000,\"output_token_limit\":16384,\"icon_url\":\"https://cdn.gooo.ai/assets/select_model_chatgpt.png\",\"extra\":{\"paid_user_only\":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\":false,\"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_ima"])</script><script>self.__next_f.push([1,"ge_input\":false,\"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,\"icon_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/67cb96e1c2/67cb96e1c2.zip\",\"shasum\":\"0a3a3353553761e8d3d72cf1be917dcb4de16226952d40439faa762da6ccec50\"}],\"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_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>