project
Science Skills - Google DeepMind's open-source research skills toolkit
Science Skills is an open-source collection of scientific skills from Google DeepMind, designed to accelerate AI agent-driven scientific research workflows. The tools integrate AlphaGenome, AlphaFold Database, UniPro...
What are Science Skills?
Science Skills is an open-source collection of scientific research skills launched by Google DeepMind, designed to accelerate AI agent-driven scientific research workflows. The tool integrates over 30 life science databases and tools, including AlphaGenome, AlphaFold Database, and UniProt, covering fields such as genomics, structural biology, cheminformatics, and literature retrieval, enabling researchers to complete complex analytical tasks that would otherwise take hours in minutes.
Main functions of Science Skills
-
Genomics analysis: Use techniques such as AlphaGenome for gene variant annotation, disease association analysis, and genome data mining.
-
Structural biology researchIt integrates the AlphaFold Database, supporting tasks such as protein structure prediction, molecular docking, and structure alignment.
-
Cheminformatics processingIt provides analytical capabilities related to compound property prediction, molecular screening, and drug discovery.
-
Intelligent document retrieval: Automatically retrieve, filter, and synthesize academic literature using tools such as OpenAlex to generate structured reviews.
-
Multi-database integrationUnified access to 30+ authoritative databases enables one-stop scientific querying and analysis across data sources.
The technical principles of Science Skills
- Standardized Skill ArchitectureScience Skills employs a unified three-tier modular protocol: each skill consists of...
SKILL.md(Including YAML route frontmatter and Markdown execution directives)scripts/(Executable script tools) andreferences/(Supplementary documentation loaded on demand) constitutes a structure that makes skills reusable, scalable, and maintainable. - Progressive disclosure and token efficiencyBy replacing traditional monolithic instructions with a layered architecture: the core module is always loaded (only 38.5% of the necessary content is retained), and auxiliary content (examples, backgrounds, templates) is dynamically loaded when the Agent explicitly needs it through tool calls, reducing the cost of a single call to Token by about 39% and achieving an end-to-end saving of 43.2%.
- Script execution isolation
:scripts/The code runs directly on the file system, and the execution result (such as verification status or value) rather than the code itself is injected into the Agent context. Compared with the traditional method of "generating code in the conversation and then executing it", it reduces token consumption by about 89% while ensuring execution determinism and reusability. - Routing layer optimizationEach
SKILL.mdThe top YAML frontmatter contains concise route descriptions for quickly matching user requests with corresponding skills. By compressing lengthy descriptions and removing non-route-related content (such as feature lists and trigger word enumerations), it ensures that only the necessary skill context is loaded, avoiding irrelevant information from consuming tokens.
How to use Science Skills
- Installation Skill PackInstall a complete skill set with a single click using the npx command:
npx skills add google-deepmind/science-skills/ - Enable in AntigravityAfter downloading Google Antigravity, select the Science plugin in the "Build with Google" step; existing users can download the Science plugin in the settings.
- Configure environmentThe Agent will automatically install upon first triggering of the Science Skill.
uvPackage manager; it is recommended to restart Antigravity after installation. - Configure API keySome skills, such as AlphaGenome and OpenAlex, require API keys. The agent will guide users to obtain and write these keys.
~/.envdocument. - Natural Language CallAfter installation, you can directly ask the Agent scientific questions in natural language, and the Agent will automatically load the relevant skills and perform analysis.
The core advantages of Science Skills
- Agentic Workflow AccelerationIt compresses manual analyses that originally required hours, such as structural bioinformatics and genomic analysis, into minutes, significantly improving research efficiency.
- Depth data groundingIt directly integrates with 30+ authoritative databases to ensure that the analysis results are based on the latest and most reliable scientific data, reducing model illusions.
- Efficient Token DesignOptimized for scientific tasks, enabling more complex reasoning and analysis with less token consumption.
- Standardized Skill ArchitectureEach skill uses a unified approach.
SKILL.md + scripts/ + references/The structure facilitates expansion, reuse, and community collaboration. - Fully open sourceThe code is licensed under the Apache 2.0 license, and the documentation is licensed under the CC-BY license, allowing for free use and secondary development.
Science Skills project address
- GitHub repositoryhttps://github.com/google-deepmind/science-skills
Comparison of Science Skills with similar products
| Dimension | Google DeepMind Science Skills | Elicit 2.0 | Perplexity AI Research Pro |
|---|---|---|---|
| Core positioning | AI Agent Science Skills Package, focusing on life science database integration and automated analysis. | Systematic literature review and hypothesis mapping tools | Real-time academic search and citation tracking engine |
| Database coverage | 30+ life science databases (AlphaFold, UniProt, AlphaGenome, etc.) | 140 million+ academic papers | PubMed, arXiv, Semantic Scholar, etc. |
| Work mode | The agent autonomously executes scripts to complete end-to-end scientific analysis tasks. | Structured data extraction and evidence synthesis | Real-time retrieval + reference chain reconstruction |
| open source | Fully open source (Apache 2.0 + CC-BY) | Open source weight (Apache 2.0), can be deployed locally. | Closed-source SaaS |
| Applicable Scenarios | Genomic/protein/chemistry data-intensive research | Systematic review, meta-analysis, evidence synthesis | Rapid literature review and citation verification |
Application scenarios of Science Skills
- Rare disease researchRapidly analyze the mechanisms linking gene mutations to diseases. For example, the DeepMind team used Science Skills to discover the potential mechanism by which AK2 gene mutations lead to rare genetic diseases.
- Protein structure analysisBatch prediction and comparison of protein structures accelerates vaccine design and enzyme engineering research.
- Drug discoveryUsing cheminformatics skills to screen compounds and predict molecular properties can shorten the early-stage R&D cycle.
- Systematic Literature ReviewAutomatically retrieves, extracts, and synthesizes millions of academic papers to quickly generate field review reports.
- Interdisciplinary data integrationThe tool can simultaneously query genomic, protein, compound, and literature data to build multi-dimensional research insights.