AI Skill Hub 强烈推荐:科学智能代理 是一款优质的Claude技能。在 GitHub 上收获超过 26.2k 颗 Star,AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的Claude技能解决方案,这是一个值得深入了解的选择。
将任何AI代理转化为AI科学家,开源Claude技能
科学智能代理 是一款基于 Python 开发的开源工具,专注于 claude_skill、agent-skills、ai-scientist 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
将任何AI代理转化为AI科学家,开源Claude技能
科学智能代理 是一款基于 Python 开发的开源工具,专注于 claude_skill、agent-skills、ai-scientist 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install scientific-agent-skills
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install scientific-agent-skills
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/K-Dense-AI/scientific-agent-skills
cd scientific-agent-skills
pip install -e .
# 验证安装
python -c "import scientific_agent_skills; print('安装成功')"
# 命令行使用
scientific-agent-skills --help
# 基本用法
scientific-agent-skills input_file -o output_file
# Python 代码中调用
import scientific_agent_skills
# 示例
result = scientific_agent_skills.process("input")
print(result)
# scientific-agent-skills 配置文件示例(config.yml) app: name: "scientific-agent-skills" debug: false log_level: "INFO" # 运行时指定配置文件 scientific-agent-skills --config config.yml # 或通过环境变量配置 export SCIENTIFIC_AGENT_SKILLS_API_KEY="your-key" export SCIENTIFIC_AGENT_SKILLS_OUTPUT_DIR="./output"
This repository provides 148 scientific and research skills organized into the following categories:
Each skill includes: - ✅ Comprehensive documentation (SKILL.md) - ✅ Practical code examples - ✅ Use cases and best practices - ✅ Integration guides - ✅ Reference materials
---
SKILL.md files for specific requirements)gh skill install K-Dense-AI/scientific-agent-skills
gh skill install K-Dense-AI/scientific-agent-skills scanpy
gh skill update --all ```
The skills use uv as the package manager for installing Python dependencies. Install it using the instructions for your operating system:
macOS and Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Alternative (via pip):
pip install uv
After installation, verify it works by running:
uv --version
For more installation options and details, visit the official uv documentation.
---
Q: Do I need all the Python packages installed? A: No! Only install the packages you need. Each skill specifies its requirements in its SKILL.md file.
Q: What if a skill doesn't work? A: First check the Troubleshooting section. If the issue persists, file an issue on GitHub with detailed reproduction steps.
Q: Do the skills work offline? A: Database skills require internet access to query APIs. Package skills work offline once Python dependencies are installed.
Once you've installed the skills, you can ask your AI agent to execute complex multi-step scientific workflows. Here are some example prompts:
✅ Adhere to the Agent Skills Specification — Every skill must follow the official spec (valid SKILL.md frontmatter, naming conventions, directory structure) ✅ Include a quoted metadata.version value in every SKILL.md ✅ Increment metadata.version when updating an existing skill ✅ Maintain consistency with existing skill documentation format ✅ Ensure all code examples are tested and functional ✅ Follow scientific best practices in examples and workflows ✅ Update relevant documentation when adding new capabilities ✅ Provide clear comments and docstrings in code ✅ Include references to official documentation
Install Scientific Agent Skills with a single command:
npx skills add K-Dense-AI/scientific-agent-skills
This is the official standard approach for installing Agent Skills across all platforms, including Claude Code, Claude Cowork, Codex, Gemini CLI, Google Antigravity, Cursor, OpenClaw, NVIDIA NemoClaw, Hermes, Pi, and any other agent that supports the open Agent Skills standard.
If you use the GitHub CLI (v2.90.0+), you can install skills with gh skill:
```bash
Goal: Find novel EGFR inhibitors for lung cancer treatment
Prompt:
Use available skills you have access to whenever possible. Query ChEMBL for EGFR inhibitors (IC50 < 50nM), analyze structure-activity relationships
with RDKit, generate improved analogs with datamol, perform virtual screening with DiffDock
against AlphaFold EGFR structure, search PubMed for resistance mechanisms, check COSMIC for
mutations, and create visualizations and a comprehensive report.
Skills Used: database-lookup, rdkit, datamol, diffdock, paper-lookup, scientific-visualization
---
Goal: Comprehensive analysis of 10X Genomics data with public data integration
Prompt:
Use available skills you have access to whenever possible. Load 10X dataset with Scanpy, perform QC and doublet removal, integrate with Cellxgene
Census data, identify cell types using NCBI Gene markers, run differential expression with
PyDESeq2, infer gene regulatory networks with Arboreto, enrich pathways via Reactome/KEGG,
and identify therapeutic targets with Open Targets.
Skills Used: scanpy, cellxgene-census, database-lookup, pydeseq2, arboreto
---
Q: Is this free to use? A: Yes! This repository is MIT licensed. However, each individual skill has its own license specified in the license metadata field within its SKILL.md file—be sure to review and comply with those terms.
Q: Why are all skills grouped together instead of separate packages? A: We believe good science in the age of AI is inherently interdisciplinary. Bundling all skills together makes it trivial for you (and your agent) to bridge across fields—e.g., combining genomics, cheminformatics, clinical data, and machine learning in one workflow—without worrying about which individual skills to install or wire together.
Q: Can I use this for commercial projects? A: The repository itself is MIT licensed, which allows commercial use. However, individual skills may have different licenses—check the license field in each skill's SKILL.md file to ensure compliance with your intended use.
Q: Do all skills have the same license? A: No. Each skill has its own license specified in the license metadata field within its SKILL.md file. These licenses may differ from the repository's MIT License. Users are responsible for reviewing and adhering to the license terms of each individual skill they use.
Q: How often is this updated? A: We regularly update skills to reflect the latest versions of packages and APIs. Major updates are announced in release notes.
Q: Can I use this with other AI models? A: The skills follow the open Agent Skills standard and work with any compatible agent, including Cursor, Claude Code, Codex, Google Antigravity, OpenClaw, NVIDIA NemoClaw, Hermes, and Pi.
scientific-agent-skills 是一个专为科研场景设计的 AI Agent 能力库。该项目集成了丰富的科学研究技能,旨在通过标准化的 Agent Skills 协议,为 AI 智能体提供强大的科研辅助能力,使其能够理解并执行复杂的科学任务。
本项目包含 140 项科学与研究技能,涵盖了 100 多个科学及金融数据库。通过统一的数据库查询技能,用户可以直接访问 PubChem、ChEMBL、UniProt、COSMIC、ClinicalTrials.gov 等 78 个公共数据库,并针对 DepMap、Imaging Data Commons、PrimeKG 及美国财政部数据(U.S. Treasury Fiscal Data)提供了专门的技能支持。
在使用本项目前,请确保您的环境满足以下要求:Python 版本需为 3.13+(用于仓库工具链,单个技能的依赖可能支持更广泛的版本);必须安装 uv 作为 Python 包管理器,用于安装技能所需的依赖;此外,您需要使用任何支持 Agent Skills 协议的 Client(如 Claude 等)来驱动这些技能。
您可以通过多种方式安装技能。推荐使用官方标准方式,通过 npx 命令进行全平台安装,支持 Claude Code、Cursor、Gemini CLI 等主流 Agent;如果您已安装 GitHub CLI (v2.90.0+),可以使用 `gh skill install` 命令进行交互式安装或直接安装特定的技能(如 scanpy)。
安装完成后,您可以直接向您的 AI Agent 发送复杂的科研工作流指令。例如,您可以要求 Agent 利用已安装的技能进行单细胞 RNA-seq 数据分析,或者构建药物发现流水线(Drug Discovery Pipeline),通过查询 ChEMBL 数据库、结合 RDKit 进行结构分析并进行虚拟筛选,实现端到端的自动化科研流程。
本项目提供了灵活的配置与安装方案。官方推荐使用 `npx skills add K-Dense-AI/scientific-agent-skills` 命令,这是在所有平台(包括 Claude Code、Claude Cowork、Codex、Gemini CLI、Google Antigravity 及 Cursor)上安装 Agent Skills 的标准做法。此外,开发者也可以通过 GitHub CLI 的 `gh skill` 扩展进行高效管理。
本项目设计了极简的集成流程:只需将技能文件复制到您的 skills 目录即可快速启动;具备自动发现机制,您的 Agent 会自动识别并调用相关的技能;同时,每个技能都附带详尽的文档、使用案例与最佳实践,确保科研工作流的顺畅运行。
本项目提供了针对常见科研场景的 FAQ 与故障排除指南。例如,在处理 Single-Cell RNA-seq 分析时,用户可以利用 Scanpy 加载 10X 数据集,并结合 Cellxgene Census 数据进行质量控制(QC)与细胞类型鉴定。通过明确的 Prompt 指引,Agent 可以高效调用相关技能完成复杂任务。
高质量的AI科学家技能库,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,科学智能代理 是一款质量优秀的Claude技能,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | scientific-agent-skills |
| 原始描述 | 开源Claude技能:Turn any AI agent into an AI Scientist. The #1 Agent Skills library for science,。⭐26.2k · Python |
| Topics | claude_skillagent-skillsai-scientistbioinformaticschemoinformatics |
| GitHub | https://github.com/K-Dense-AI/scientific-agent-skills |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-27 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端