技能 hub
- 作者仓库星标 378
- 作者仓库 BioClaw
Skills Hub Browser
Search, browse, and install community-contributed skills from the BioClaw Skills Hub.
The Hub contains 70+ specialized bioinformatics skills organized into domains. Skills downloaded from the Hub are cached locally so they persist for the rest of the session.
When to Use
- User requests an analysis not covered by the built-in skills listed in your system prompt
- User asks "what other skills are available" or "do you have a skill for X"
- User needs a specialized pipeline (e.g., protein design, EHR analysis, spatial transcriptomics workflows beyond the built-in)
Hub Structure
The Hub organizes skills into these domains:
| Domain | Examples |
|---|---|
core-bioinformatics |
alignment-and-mapping, read-qc, sequence-io, database-access |
transcriptomics |
bulk-rna-expression, differential-expression |
single-cell-and-spatial |
scrna-preprocessing, spatial-transcriptomics, cell-annotation |
epigenomics-and-regulation |
atac-seq, chip-seq, dna-methylation |
genomics-and-variation |
variant-calling, genome-assembly, long-read-genomics |
metagenomics-and-microbiome |
metagenomics, phylogenetics, microbial-community |
proteomics-and-metabolomics |
mass-spec, metabolomics |
multi-omics-and-systems |
multi-omics-integration, pathway-analysis |
protein-design |
alphafold2-multimer, proteinmpnn, rfdiffusion, boltzgen |
ehr-analysis |
electronic health record analysis |
How to Execute
Step 1: Fetch the taxonomy (skill index)
curl -sL "https://raw.githubusercontent.com/zongtingwei/Bioclaw_Skills_Hub/main/catalog/taxonomy.yaml"
This returns the full skill catalog organized by domain. Use it to find the skill name that matches the user's need.
Step 2: List skills in a specific domain
curl -sL "https://api.github.com/repos/zongtingwei/Bioclaw_Skills_Hub/contents/skills/<domain>" | python3 -c "
import json, sys
for item in json.load(sys.stdin):
if item['type'] == 'dir':
print(item['name'])
"
Replace <domain> with a domain name from the table above.
Step 3: Download and read a skill
# Download the SKILL.md
DOMAIN="<domain>"
SKILL="<skill-name>"
CACHE_DIR="/workspace/group/.hub-skills/${SKILL}"
mkdir -p "${CACHE_DIR}"
curl -sL "https://raw.githubusercontent.com/zongtingwei/Bioclaw_Skills_Hub/main/skills/${DOMAIN}/${SKILL}/SKILL.md" \
-o "${CACHE_DIR}/SKILL.md"
Then read the downloaded skill:
read_file({ file_path: "/workspace/group/.hub-skills/<skill-name>/SKILL.md" })
Step 4: Install dependencies (if needed)
Some Hub skills require extra Python packages. Check the SKILL.md for a "Preferred Tools" or "Dependencies" section. Install with:
pip install <package> --quiet 2>/dev/null
Step 5: Execute the skill
Follow the workflow described in the downloaded SKILL.md, just like any built-in skill.
Important Notes
- Always check built-in skills first before fetching from the Hub
- Downloaded skills are cached in
/workspace/group/.hub-skills/for the session - The Hub is a community resource — skills may reference tools not installed in the container; install them with pip/apt as needed
- If GitHub is unreachable, inform the user and suggest using built-in skills instead
- 流狐分类
- 通用
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @Runchuan-BU · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 This returns the full skill catalog organized by domain. Use it to find the skill name that matches the user's need.
Replace <domain> with a domain name from the table above.
Then read the downloaded skill:
Some Hub skills require extra Python packages. Check the SKILL.md for a "Preferred Tools" or "Dependencies" section. Install with:
Follow the workflow described in the downloaded SKILL.md, just like any built-in skill.
# Skills Hub Browser
Search, browse, and install community-contributed skills from the [BioClaw Skills Hub](https://github.com/zongtingwei/Bioclaw_Skills_Hub).
The Hub contains 70+ specialized bioinformatics skills organized into domains. Skills downloaded from the Hub are cached locally so they persist for the rest of the session.
## When to Use
- User requests an analysis not covered by the built-in skills listed in your system prompt
- User asks "what other skills are available" or "do you have a skill for X"
- User needs a specialized pipeline (e.g., protein design, EHR analysis, spatial transcriptomics workflows beyond the built-in)
## Hub Structure
The Hub organizes skills into these domains:
| Domain | Examples |
|--------|----------|
| `core-bioinformatics` | alignment-and-mapping, read-qc, sequence-io, database-access |
| `transcriptomics` | bulk-rna-expression, differential-expression |
| `single-cell-and-spatial` | scrna-preprocessing, spatial-transcriptomics, cell-annotation |
| `epigenomics-and-regulation` | atac-seq, chip-seq, dna-methylation |
| `genomics-and-variation` | variant-calling, genome-assembly, long-read-genomics |
| `metagenomics-and-microbiome` | metagenomics, phylogenetics, microbial-community |
| `proteomics-and-metabolomics` | mass-spec, metabolomics |
| `multi-omics-and-systems` | multi-omics-integration, pathway-analysis |
| `protein-design` | alphafold2-multimer, proteinmpnn, rfdiffusion, boltzgen |
| `ehr-analysis` | electronic health record analysis |
## How to Execute
### Step 1: Fetch the taxonomy (skill index)
```bash
curl -sL "https://raw.githubusercontent.com/zongtingwei/Bioclaw_Skills_Hub/main/catalog/taxonomy.yaml"
```
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> When to Use → Hub Structure → How to Execute → Step 1: Fetch the taxonomy (skill index) → Step 2: List skills in a specific domain → Step 3: Download and read a skill
要点 -> Search, browse, and install community-contributed skills from the [BioClaw Skills Hub](https://github.com/zongtingwei/BioclawSkillsHub). · The Hub contains 70+ specialized bioinformatics skills organized into domains. · This returns the full skill catalog organized by domain. · Replace <domain> with a domain name from the table above. · Some Hub skills require extra Python packages. · Follow the workflow described in the downloaded SKILL.md, just like any built-in skill.
文件/命令 -> core-bioinformatics · transcriptomics · single-cell-and-spatial · epigenomics-and-regulation · genomics-and-variation · metagenomics-and-microbiome · proteomics-and-metabolomics · multi-omics-and-systems
内容 SHA-256 -> 3d4942815350
方法与流程
适用与边界
原文中的明确线索
core-bioinformatics、transcriptomics、single-cell-and-spatial、epigenomics-and-regulation、genomics-and-variation、metagenomics-and-microbiome、proteomics-and-metabolomics、multi-omics-and-systems