能力标签
Claude技能

科学智能代理

基于 Python · 专为 Claude 深度优化,CLI 一键安装
英文名:scientific-agent-skills
⭐ 26.2k Stars 🍴 2.7k Forks 💻 Python 📄 MIT 🏷 AI 8.0分
8.0AI 综合评分
claude_skillagent-skillsai-scientistbioinformaticschemoinformatics
✦ AI Skill Hub 推荐

AI Skill Hub 强烈推荐:科学智能代理 是一款优质的Claude技能。在 GitHub 上收获超过 26.2k 颗 Star,AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的Claude技能解决方案,这是一个值得深入了解的选择。

📚 深度解析

科学智能代理 是一款基于 Python 的开源工具,在 GitHub 上收获 26k+ Star,是claude_skill、agent-skills、ai-scientist、bioinformatics领域中的优质开源项目。开源工具的最大优势在于代码完全透明,你可以审计每一行代码的安全性,也可以根据自身需求进行二次开发和定制。

**为什么要使用开源工具而非商业 SaaS?**
对于个人开发者和有隐私需求的用户,本地部署的开源工具意味着数据不离本机,不受第三方服务商的数据政策约束。同时,开源工具通常没有使用次数限制和月度费用,一次安装即可长期使用,对于高频使用场景的总拥有成本(TCO)远低于订阅制商业工具。

**安装与环境准备**
科学智能代理 依赖 Python 运行环境。建议通过 pyenv(Python)或 nvm(Node.js)管理 Python 版本,避免全局环境污染。对于新手用户,推荐先创建虚拟环境(python -m venv venv && source venv/bin/activate),再安装依赖,这样即使出现问题也可以随时删除虚拟环境重新开始,不影响系统稳定性。

**社区与维护**
GitHub Issue 和 Discussion 是获取帮助的最快渠道。在提问前建议先检查 Closed Issues(已关闭的问题),大多数常见问题都已有解答。遇到 Bug 时,提供 pip list 的输出、完整错误堆栈和最小可复现示例,能显著提高开发者响应速度。AI Skill Hub 将持续追踪 科学智能代理 的版本更新,及时通知重要功能变化。

📋 工具概览

将任何AI代理转化为AI科学家,开源Claude技能

科学智能代理 是一款基于 Python 开发的开源工具,专注于 claude_skill、agent-skills、ai-scientist 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。

GitHub Stars
⭐ 26.2k
开发语言
Python
支持平台
Windows / macOS / Linux
维护状态
活跃维护,更新频繁
开源协议
MIT
AI 综合评分
8.0 分
工具类型
Claude技能
Forks
2.7k

📖 中文文档

以下内容由 AI Skill Hub 根据项目信息自动整理,如需查看完整原始文档请访问底部「原始来源」。

将任何AI代理转化为AI科学家,开源Claude技能

科学智能代理 是一款基于 Python 开发的开源工具,专注于 claude_skill、agent-skills、ai-scientist 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。

📌 核心特色
  • 专为 Claude 系列模型深度优化的扩展技能
  • 通过 Claude Code CLI 一键安装,配置零门槛
  • 充分利用 Claude 的长上下文和推理能力
  • 支持与 MCP 工具组合使用,扩展能力边界
🎯 主要使用场景
  • 在 Claude 中快速解决特定专业领域的问题
  • 复杂任务的 AI 辅助分析、推理和报告生成
  • 构建个人专属的 AI 技能工具箱
以下安装命令基于项目开发语言和类型自动生成,实际以官方 README 为准。
安装命令
# 方式一: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('安装成功')"
📋 安装步骤说明
  1. 访问 GitHub 仓库页面
  2. 按照 README 文档完成依赖安装
  3. 根据系统环境完成初始化配置
  4. 参考官方示例或文档开始使用
  5. 遇到问题可在 GitHub Issues 中查找解答
以下用法示例由 AI Skill Hub 整理,涵盖最常见的使用场景。
常用命令 / 代码示例
# 命令行使用
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"
📑 README 深度解析 真实文档 完整度 78/100 查看 GitHub 原文 →
以下内容由系统直接从 GitHub README 解析整理,保留代码块、表格与列表结构。

Scientific Agent Skills

License: MIT Version Skills Databases Agent Skills Security Scan Works with X LinkedIn YouTube

📦 What's Included

This repository provides 140 scientific and research skills organized into the following categories:

  • 100+ Scientific & Financial Databases - A unified database-lookup skill provides direct access to 78 public databases (PubChem, ChEMBL, UniProt, COSMIC, ClinicalTrials.gov, FRED, USPTO, and more), plus dedicated skills for DepMap, Imaging Data Commons, PrimeKG, U.S. Treasury Fiscal Data, and Hugging Science (curated catalog of scientific datasets, models, and demos across 17 scientific domains on Hugging Face). Multi-database packages like BioServices (~40 bioinformatics services), BioPython (38 NCBI sub-databases via Entrez), and gget (20+ genomics databases) add further coverage
  • 70+ Optimized Python Package Skills - Explicitly defined skills for RDKit, Scanpy, PyTorch Lightning, scikit-learn, BioPython, pyzotero, BioServices, PennyLane, Qiskit, Molecular Dynamics (OpenMM/MDAnalysis), scVelo, TimesFM, and others — with curated documentation, examples, and best practices. Note: the agent can write code using any Python package, not just these; these skills simply provide stronger, more reliable performance for the packages listed
  • 9 Scientific Integration Skills - Explicitly defined skills for Benchling, DNAnexus, LatchBio, OMERO, Protocols.io, Open Notebook, Ginkgo Cloud Lab, LabArchives, and Opentrons. Again, the agent is not limited to these — any API or platform reachable from Python is fair game; these skills are the optimized, pre-documented paths
  • 30+ Analysis & Communication Tools - Literature review, scientific writing, peer review, document processing, Paperzilla, PACSOMATIC, Exa Search, posters, slides, schematics, infographics, Mermaid diagrams, and more
  • 10+ Research & Clinical Tools - Hypothesis generation, grant writing, clinical decision support, treatment plans, BIDS, regulatory compliance, scenario analysis, and workflow-derived skill drafting with Autoskill

Each skill includes: - ✅ Comprehensive documentation (SKILL.md) - ✅ Practical code examples - ✅ Use cases and best practices - ✅ Integration guides - ✅ Reference materials

---

⚙️ Prerequisites

  • Python: 3.13+ for repository tooling; individual skill dependencies may support broader Python ranges
  • uv: Python package manager (required for installing skill dependencies)
  • Client: Any agent that supports the Agent Skills standard (Cursor, Claude Code, Gemini CLI, Codex, Google Antigravity, etc.)
  • System: macOS, Linux, or Windows with WSL2
  • Dependencies: Automatically handled by individual skills (check SKILL.md files for specific requirements)

🎯 Getting Started

Browse and install interactively

gh skill install K-Dense-AI/scientific-agent-skills

Install a specific skill directly

gh skill install K-Dense-AI/scientific-agent-skills scanpy

Update all installed skills

gh skill update --all ```

That's it! Your AI agent will automatically discover the skills and use them when relevant to your scientific tasks. You can also invoke any skill manually by mentioning the skill name in your prompt.

---

Installing uv

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.

---

Installation & Setup

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.

💡 Quick Examples

Once you've installed the skills, you can ask your AI agent to execute complex multi-step scientific workflows. Here are some example prompts:

🔬 Use Cases

Contribution Guidelines

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

Option 1: npx (all platforms)

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, and any other agent that supports the open Agent Skills standard.

Option 2: GitHub CLI (`gh skill`)

If you use the GitHub CLI (v2.90.0+), you can install skills with gh skill:

```bash

🔧 **Easy Integration**

  • Simple Setup - Copy skills to your skills directory and start working
  • Automatic Discovery - Your agent automatically finds and uses relevant skills
  • Well Documented - Each skill includes examples, use cases, and best practices

🧪 Drug Discovery Pipeline

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

---

🔬 Single-Cell RNA-seq Analysis

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

---

🔧 Troubleshooting

❓ FAQ

General Questions

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, and Google Antigravity.

🎯 aiskill88 AI 点评 A 级 2026-05-27

高质量的AI科学家技能库,值得关注

⚡ 核心功能

👥 适合人群

Claude 重度用户AI 研究者和开发者需要专业领域 AI 增强的专家

🎯 使用场景

  • 在 Claude 中快速解决特定专业领域的问题
  • 复杂任务的 AI 辅助分析、推理和报告生成
  • 构建个人专属的 AI 技能工具箱

⚖️ 优点与不足

✅ 优点
  • +GitHub 26.2k Star,社区高度认可
  • +MIT 协议,可免费商用
  • +深度优化 Claude 使用体验
  • +CLI 一键安装,极度便捷
  • +官方支持,稳定可靠
⚠️ 不足
  • 仅限 Claude 用户使用,受平台限制
  • 功能边界受当前 Claude 模型能力约束
⚠️ 使用须知

AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。

建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。

📄 License 说明

✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。

🔗 相关工具推荐

🧩 你可能还需要
基于当前 Skill 的能力图谱,自动补全的工具组合

❓ 常见问题 FAQ

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.
💡 AI Skill Hub 点评

总体来看,科学智能代理 是一款质量优秀的Claude技能,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。

⬇️ 获取与下载
⬇ 下载源码 ZIP

✅ MIT 协议 · 可免费商用 · 直接从 aiskill88 服务器下载,无需跳转 GitHub

📚 深入学习 科学智能代理
查看分步骤安装教程和完整使用指南,快速上手这款工具
🌐 原始信息
原始名称 scientific-agent-skills
Topics claude_skillagent-skillsai-scientistbioinformaticschemoinformatics
GitHub https://github.com/K-Dense-AI/scientific-agent-skills
License MIT
语言 Python
🔗 原始来源
🐙 GitHub 仓库  https://github.com/K-Dense-AI/scientific-agent-skills 🌐 官方网站  https://k-dense.ai

收录时间:2026-05-27 · 更新时间:2026-05-27 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。