AI4DigitalPathology Literature Skill
Purpose
This skill helps an agent maintain and query a curated AI for Digital Pathology literature knowledge base. It is designed for repositories such as Awesome-AI4DigitalPathology, where papers, datasets, benchmarks, models, code repositories, and surveys are organized by research type.
The skill has two core modes:
- Update mode: add newly found papers, benchmarks, datasets, models, or repositories into a fixed Markdown format and a structured JSONL index.
- Query mode: answer user questions by quickly retrieving representative papers from a specified category, method type, venue, year, task, model family, or application scenario.
When to Use This Skill
Use this skill when the user asks for:
- recent or representative papers in AI pathology, digital pathology, computational pathology, WSI analysis, pathology foundation models, pathology VLMs, pathology agents, MIL, dense prediction, multimodal pathology, spatial omics, pathology benchmarks, pathology datasets, or clinical pathology AI;
- updating a GitHub awesome-list with new papers;
- formatting new papers into the repository's fixed Markdown style;
- comparing methods within a category;
- recommending papers for a literature review, related work section, project proposal, benchmark design, or research roadmap;
- generating BibTeX, paper tables, or reading lists from the repository.
Do not use this skill for general medical diagnosis or clinical decision-making.
Repository Scope
The target knowledge base focuses on AI for digital and computational pathology, including but not limited to:
- Surveys, Reviews, and Perspectives
- Digital Slide Scanners and File Formats
- Datasets and Benchmarks
- Multiple Instance Learning
- Federated Learning in Computational Pathology
- Patch-Level Foundation Models
- Slide-Level Foundation Models and Slide Encoders
- Cytology and Cervical Cytology in Pathology AI
- Generative Models for Computational Pathology
- Computational Pathology with Multi-Omics
- Vision-Language Models and Pathology Agents
- Dense Prediction in Computational Pathology
- Clinical Tasks and Applications
- Pathology Image Registration and Spatial Alignment
- Resources, Toolkits, and Open-Source Projects
- Future Trends and Hot Topics
Canonical Paper Schema
For every paper or resource, normalize it into the following fields:
{
"id": "short_unique_id",
"title": "full paper or resource title",
"short_name": "common method/model/dataset name",
"year": 2026,
"venue": "CVPR / MICCAI / NeurIPS / Nature Medicine / arXiv / etc.",
"category": "Vision-Language Models and Pathology Agents",
"type": "paper | dataset | benchmark | code | model | survey | toolkit | website",
"task": ["WSI classification", "VQA", "report generation"],
"method_family": ["VLM", "MIL", "foundation model", "agent"],
"disease_or_organ": ["digestive system", "breast", "prostate", "pan-cancer"],
"modality": ["H&E WSI", "IHC", "spatial transcriptomics", "text"],
"contribution": "one-sentence contribution",
"limitation": "main limitation if known",
"paper_url": "https://...",
"code_url": "https://...",
"dataset_url": "https://...",
"model_url": "https://...",
"bibtex": "optional BibTeX entry",
"tags": ["open-source", "benchmark", "multi-modal"],
"updated_at": "YYYY-MM-DD"
}
Canonical Markdown Format
When updating the README, preserve the repository's awesome-list style:
- **ShortName** — concise one-sentence description. [](paper_url) [](code_url) [](dataset_url) [](model_url)
Rules:
- Use
ShortName if the method/model/dataset has a widely used name; otherwise use a compact title.
- The description should be concise and functional, usually 8–18 words.
- Use consistent badges:
- Paper:
Paper-Venue%20Year-1f77b4.svg
- Code:
Code-GitHub-green.svg
- Dataset:
Dataset-Website-orange.svg or dataset platform name
- Model:
Model-HuggingFace-yellow.svg
- Website:
Website-Leaderboard-ffb6c1.svg
- Place each item under the most specific category.
- If a paper spans multiple categories, place it in the primary category and add cross-reference tags in the JSONL index.
Update Mode Workflow
When the user asks to update the knowledge base:
Determine scope
- Identify target category, time range, venue range, and whether the update is for papers, datasets, code, models, or benchmarks.
- If the user gives no category, infer from keywords.
Collect candidates
- Search or parse candidate papers from user-provided links, arXiv, PubMed, Semantic Scholar, conference proceedings, or GitHub repositories when tools are available.
- If online search is unavailable, use only the provided text/files and say that external discovery was not performed.
Filter candidates
- Prefer papers that are representative, influential, recent, open-source, benchmark-related, or directly relevant to pathology AI.
- Remove duplicates and weakly related general medical AI papers unless they clearly involve pathology images or pathology-language data.
Normalize fields
- Convert every candidate into the canonical JSON schema.
- Extract title, short name, year, venue, URL, code/model/dataset links, method family, task, modality, and contribution.
Classify category
- Assign one primary category from the repository taxonomy.
- Add secondary tags for cross-category retrieval.
Generate README entry
- Produce Markdown entries in the repository's badge style.
- Keep descriptions short and comparable across entries.
Generate index entry
- Produce JSONL records for retrieval.
- Include
updated_at.
Report changes
- Return a compact changelog:
- added items
- skipped items and reason
- uncertain metadata
- recommended category placement
Query Mode Workflow
When the user asks for papers:
Parse intent:
- category: MIL, foundation models, VLMs, agents, dense prediction, benchmarks, datasets, etc.
- constraints: year, venue, task, disease, modality, code availability, model availability.
- output style: quick list, table, literature review paragraph, BibTeX, or comparison.
Retrieve candidates:
- Use the structured JSONL index first.
- If no index exists, parse the README category sections.
- Prefer exact category matches, then tag matches, then semantic matches.
Rank candidates:
- For quick answer: prioritize representative and recent papers.
- For literature review: include canonical early works + recent state-of-the-art works.
- For implementation: prioritize papers with code/model links.
- For benchmark design: prioritize datasets, benchmarks, evaluation frameworks, and leaderboards.
Answer with fixed format:
## Recommended Papers
| Paper | Year/Venue | Type | Why it matters | Link |
|---|---:|---|---|---|
| ShortName | 2025 / CVPR | VLM | One-sentence reason | Paper / Code |
## Reading Order
1. Foundational paper
2. Representative modern method
3. Most relevant recent extension
## How to Use in Related Work
A concise paragraph explaining how these works form a research line.
- Avoid hallucination:
- Do not invent paper titles, venues, links, or years.
- If metadata is missing, mark it as
unknown and suggest verification.
Category Classification Guide
Use the following mapping:
- MIL, WSI classification, weak supervision, bag-level prediction →
Multiple Instance Learning
- tile/patch encoders, SSL, DINO, CLIP-style patch encoders →
Patch-Level Foundation Models
- slide encoders, WSI-level foundation models, gigapixel sequence modeling →
Slide-Level Foundation Models and Slide Encoders
- pathology VQA, report generation, pathology LMM, WSI assistant, reasoning, agent →
Vision-Language Models and Pathology Agents
- nucleus segmentation, tissue segmentation, cell detection, dense tasks →
Dense Prediction in Computational Pathology
- morphology-to-omics, survival with genomics, spatial transcriptomics →
Computational Pathology with Multi-Omics
- domain adaptation across hospitals, privacy-preserving learning, multi-center FL →
Federated Learning in Computational Pathology
- public datasets, challenge benchmarks, leaderboards →
Datasets and Benchmarks
- tool libraries, pipelines, viewers, preprocessing repositories →
Resources, Toolkits, and Open-Source Projects
- cytology, Pap smear, cervical screening →
Cytology and Cervical Cytology in Pathology AI
- stain transfer, H&E-to-IHC, synthetic pathology images, diffusion →
Generative Models for Computational Pathology
- registration, spatial alignment, WSI matching →
Pathology Image Registration and Spatial Alignment
- prognosis, grading, biomarker prediction, diagnosis applications →
Clinical Tasks and Applications
Quality Bar
Prefer adding papers/resources that satisfy at least one of:
- published in a strong venue or journal;
- influential or canonical in pathology AI;
- open-source code/model/dataset is available;
- introduces a new benchmark, dataset, evaluation protocol, or leaderboard;
- directly advances digital pathology foundation models, multimodal pathology, WSI reasoning, MIL, dense prediction, or morphology-to-omics;
- highly relevant to current research trends.
Avoid adding:
- generic medical AI papers without pathology-specific content;
- papers with unclear relation to digital pathology;
- duplicates of existing items;
- very low-quality, non-reproducible, or link-only resources unless historically important.
Response Templates
Fast Recommendation
我建议优先看这几篇:
1. **ShortName** — why it is important. Paper / Code.
2. **ShortName** — why it is important. Paper / Code.
3. **ShortName** — why it is important. Paper / Code.
如果你是为了写 related work,可以按“早期方法 → foundation model → multimodal/agent”的逻辑组织。
Literature Review Paragraph
In computational pathology, prior studies have progressed from weakly supervised WSI learning to pathology-specific foundation models and, more recently, multimodal pathology-language systems. Early MIL methods focused on slide-level prediction from instance bags, while recent foundation models improve transferable patch and slide representations through large-scale self-supervised or multimodal pretraining. Current pathology VLMs and agents further extend this line by enabling report generation, visual question answering, and interactive WSI reasoning. These developments collectively indicate a shift from task-specific pathology models toward general-purpose, multimodal, and agentic pathology AI systems.
README Update Changelog
## Update Summary
Added:
- Category: `Vision-Language Models and Pathology Agents`
- `ShortName` — reason for inclusion.
Skipped:
- `Paper X` — weak pathology relevance / duplicate / missing reliable metadata.
Need verification:
- `Paper Y` — venue or code link uncertain.
Failure Handling
If the agent cannot access the internet or GitHub repository:
- Work from user-provided links, pasted text, uploaded files, or local README content.
- Clearly state that the update is based only on available local/provided information.
- Produce entries marked as
metadata_to_verify when necessary.
If the user asks for automatic scheduled updates, explain that this requires an external scheduler such as cron, GitHub Actions, or an automation tool. Then provide the update prompt and output format.
Source: lingxitong/Awesome-AI4DigitalPathology — distributed by TomeVault.
1---2name: awesome-ai4digitalpathology3description: This skill helps an agent maintain and query a curated AI for Digital Pathology literature knowledge base. It is designed for repositories such as `Awesome-AI4DigitalPathology`, where papers, datasets, benchmarks, models, code repositories, and surveys are organized by research type. Use when this capability is needed.4---5# AI4DigitalPathology Literature Skill67## Purpose89This skill helps an agent maintain and query a curated AI for Digital Pathology literature knowledge base. It is designed for repositories such as `Awesome-AI4DigitalPathology`, where papers, datasets, benchmarks, models, code repositories, and surveys are organized by research type.1011The skill has two core modes:12131. **Update mode**: add newly found papers, benchmarks, datasets, models, or repositories into a fixed Markdown format and a structured JSONL index.142. **Query mode**: answer user questions by quickly retrieving representative papers from a specified category, method type, venue, year, task, model family, or application scenario.1516## When to Use This Skill1718Use this skill when the user asks for:1920- recent or representative papers in AI pathology, digital pathology, computational pathology, WSI analysis, pathology foundation models, pathology VLMs, pathology agents, MIL, dense prediction, multimodal pathology, spatial omics, pathology benchmarks, pathology datasets, or clinical pathology AI;21- updating a GitHub awesome-list with new papers;22- formatting new papers into the repository's fixed Markdown style;23- comparing methods within a category;24- recommending papers for a literature review, related work section, project proposal, benchmark design, or research roadmap;25- generating BibTeX, paper tables, or reading lists from the repository.2627Do not use this skill for general medical diagnosis or clinical decision-making.2829## Repository Scope3031The target knowledge base focuses on AI for digital and computational pathology, including but not limited to:3233- Surveys, Reviews, and Perspectives34- Digital Slide Scanners and File Formats35- Datasets and Benchmarks36- Multiple Instance Learning37- Federated Learning in Computational Pathology38- Patch-Level Foundation Models39- Slide-Level Foundation Models and Slide Encoders40- Cytology and Cervical Cytology in Pathology AI41- Generative Models for Computational Pathology42- Computational Pathology with Multi-Omics43- Vision-Language Models and Pathology Agents44- Dense Prediction in Computational Pathology45- Clinical Tasks and Applications46- Pathology Image Registration and Spatial Alignment47- Resources, Toolkits, and Open-Source Projects48- Future Trends and Hot Topics4950## Canonical Paper Schema5152For every paper or resource, normalize it into the following fields:5354```json55{56 "id": "short_unique_id",57 "title": "full paper or resource title",58 "short_name": "common method/model/dataset name",59 "year": 2026,60 "venue": "CVPR / MICCAI / NeurIPS / Nature Medicine / arXiv / etc.",61 "category": "Vision-Language Models and Pathology Agents",62 "type": "paper | dataset | benchmark | code | model | survey | toolkit | website",63 "task": ["WSI classification", "VQA", "report generation"],64 "method_family": ["VLM", "MIL", "foundation model", "agent"],65 "disease_or_organ": ["digestive system", "breast", "prostate", "pan-cancer"],66 "modality": ["H&E WSI", "IHC", "spatial transcriptomics", "text"],67 "contribution": "one-sentence contribution",68 "limitation": "main limitation if known",69 "paper_url": "https://...",70 "code_url": "https://...",71 "dataset_url": "https://...",72 "model_url": "https://...",73 "bibtex": "optional BibTeX entry",74 "tags": ["open-source", "benchmark", "multi-modal"],75 "updated_at": "YYYY-MM-DD"76}77```7879## Canonical Markdown Format8081When updating the README, preserve the repository's awesome-list style:8283```markdown84- **ShortName** — concise one-sentence description. [](paper_url) [](code_url) [](dataset_url) [](model_url)85```8687Rules:8889- Use `ShortName` if the method/model/dataset has a widely used name; otherwise use a compact title.90- The description should be concise and functional, usually 8–18 words.91- Use consistent badges:92 - Paper: `Paper-Venue%20Year-1f77b4.svg`93 - Code: `Code-GitHub-green.svg`94 - Dataset: `Dataset-Website-orange.svg` or dataset platform name95 - Model: `Model-HuggingFace-yellow.svg`96 - Website: `Website-Leaderboard-ffb6c1.svg`97- Place each item under the most specific category.98- If a paper spans multiple categories, place it in the primary category and add cross-reference tags in the JSONL index.99100## Update Mode Workflow101102When the user asks to update the knowledge base:1031041. **Determine scope**105 - Identify target category, time range, venue range, and whether the update is for papers, datasets, code, models, or benchmarks.106 - If the user gives no category, infer from keywords.1071082. **Collect candidates**109 - Search or parse candidate papers from user-provided links, arXiv, PubMed, Semantic Scholar, conference proceedings, or GitHub repositories when tools are available.110 - If online search is unavailable, use only the provided text/files and say that external discovery was not performed.1111123. **Filter candidates**113 - Prefer papers that are representative, influential, recent, open-source, benchmark-related, or directly relevant to pathology AI.114 - Remove duplicates and weakly related general medical AI papers unless they clearly involve pathology images or pathology-language data.1151164. **Normalize fields**117 - Convert every candidate into the canonical JSON schema.118 - Extract title, short name, year, venue, URL, code/model/dataset links, method family, task, modality, and contribution.1191205. **Classify category**121 - Assign one primary category from the repository taxonomy.122 - Add secondary tags for cross-category retrieval.1231246. **Generate README entry**125 - Produce Markdown entries in the repository's badge style.126 - Keep descriptions short and comparable across entries.1271287. **Generate index entry**129 - Produce JSONL records for retrieval.130 - Include `updated_at`.1311328. **Report changes**133 - Return a compact changelog:134 - added items135 - skipped items and reason136 - uncertain metadata137 - recommended category placement138139## Query Mode Workflow140141When the user asks for papers:1421431. Parse intent:144 - category: MIL, foundation models, VLMs, agents, dense prediction, benchmarks, datasets, etc.145 - constraints: year, venue, task, disease, modality, code availability, model availability.146 - output style: quick list, table, literature review paragraph, BibTeX, or comparison.1471482. Retrieve candidates:149 - Use the structured JSONL index first.150 - If no index exists, parse the README category sections.151 - Prefer exact category matches, then tag matches, then semantic matches.1521533. Rank candidates:154 - For quick answer: prioritize representative and recent papers.155 - For literature review: include canonical early works + recent state-of-the-art works.156 - For implementation: prioritize papers with code/model links.157 - For benchmark design: prioritize datasets, benchmarks, evaluation frameworks, and leaderboards.1581594. Answer with fixed format:160161```markdown162## Recommended Papers163164| Paper | Year/Venue | Type | Why it matters | Link |165|---|---:|---|---|---|166| ShortName | 2025 / CVPR | VLM | One-sentence reason | Paper / Code |167168## Reading Order1691. Foundational paper1702. Representative modern method1713. Most relevant recent extension172173## How to Use in Related Work174A concise paragraph explaining how these works form a research line.175```1761775. Avoid hallucination:178 - Do not invent paper titles, venues, links, or years.179 - If metadata is missing, mark it as `unknown` and suggest verification.180181## Category Classification Guide182183Use the following mapping:184185- MIL, WSI classification, weak supervision, bag-level prediction → `Multiple Instance Learning`186- tile/patch encoders, SSL, DINO, CLIP-style patch encoders → `Patch-Level Foundation Models`187- slide encoders, WSI-level foundation models, gigapixel sequence modeling → `Slide-Level Foundation Models and Slide Encoders`188- pathology VQA, report generation, pathology LMM, WSI assistant, reasoning, agent → `Vision-Language Models and Pathology Agents`189- nucleus segmentation, tissue segmentation, cell detection, dense tasks → `Dense Prediction in Computational Pathology`190- morphology-to-omics, survival with genomics, spatial transcriptomics → `Computational Pathology with Multi-Omics`191- domain adaptation across hospitals, privacy-preserving learning, multi-center FL → `Federated Learning in Computational Pathology`192- public datasets, challenge benchmarks, leaderboards → `Datasets and Benchmarks`193- tool libraries, pipelines, viewers, preprocessing repositories → `Resources, Toolkits, and Open-Source Projects`194- cytology, Pap smear, cervical screening → `Cytology and Cervical Cytology in Pathology AI`195- stain transfer, H&E-to-IHC, synthetic pathology images, diffusion → `Generative Models for Computational Pathology`196- registration, spatial alignment, WSI matching → `Pathology Image Registration and Spatial Alignment`197- prognosis, grading, biomarker prediction, diagnosis applications → `Clinical Tasks and Applications`198199## Quality Bar200201Prefer adding papers/resources that satisfy at least one of:202203- published in a strong venue or journal;204- influential or canonical in pathology AI;205- open-source code/model/dataset is available;206- introduces a new benchmark, dataset, evaluation protocol, or leaderboard;207- directly advances digital pathology foundation models, multimodal pathology, WSI reasoning, MIL, dense prediction, or morphology-to-omics;208- highly relevant to current research trends.209210Avoid adding:211212- generic medical AI papers without pathology-specific content;213- papers with unclear relation to digital pathology;214- duplicates of existing items;215- very low-quality, non-reproducible, or link-only resources unless historically important.216217## Response Templates218219### Fast Recommendation220221```markdown222我建议优先看这几篇:2232241. **ShortName** — why it is important. Paper / Code.2252. **ShortName** — why it is important. Paper / Code.2263. **ShortName** — why it is important. Paper / Code.227228如果你是为了写 related work,可以按“早期方法 → foundation model → multimodal/agent”的逻辑组织。229```230231### Literature Review Paragraph232233```markdown234In computational pathology, prior studies have progressed from weakly supervised WSI learning to pathology-specific foundation models and, more recently, multimodal pathology-language systems. Early MIL methods focused on slide-level prediction from instance bags, while recent foundation models improve transferable patch and slide representations through large-scale self-supervised or multimodal pretraining. Current pathology VLMs and agents further extend this line by enabling report generation, visual question answering, and interactive WSI reasoning. These developments collectively indicate a shift from task-specific pathology models toward general-purpose, multimodal, and agentic pathology AI systems.235```236237### README Update Changelog238239```markdown240## Update Summary241242Added:243- Category: `Vision-Language Models and Pathology Agents`244 - `ShortName` — reason for inclusion.245246Skipped:247- `Paper X` — weak pathology relevance / duplicate / missing reliable metadata.248249Need verification:250- `Paper Y` — venue or code link uncertain.251```252253## Failure Handling254255If the agent cannot access the internet or GitHub repository:256257- Work from user-provided links, pasted text, uploaded files, or local README content.258- Clearly state that the update is based only on available local/provided information.259- Produce entries marked as `metadata_to_verify` when necessary.260261If the user asks for automatic scheduled updates, explain that this requires an external scheduler such as cron, GitHub Actions, or an automation tool. Then provide the update prompt and output format.262263---264> Source: [lingxitong/Awesome-AI4DigitalPathology](https://github.com/lingxitong/Awesome-AI4DigitalPathology) — distributed by [TomeVault](https://tomevault.io).265<!-- tomevault:4.0:skill_md:2026-06-29 -->