mcpbeat Sign in

Skills Hub Agent Skill

Browse and install community skills from the BioClaw Skills Hub. Use when a user's task is not covered by built-in skills, or when the user asks about available skills, advanced workflows, or specialized analysis pipelines. Triggers on "skills hub", "more skills", "install skill", "community skills", "find a skill for".

929 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
132
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/BioTender-max/awesome-bio-agent-skills --skill skills-hub

The instruction itself

10 sections, as written by the author

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

Other skills for the same job

different authors, same section of the catalogue
Skill Creator
by anthropics
vendor ×10

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

56k tokens scripts
Skill Creator
by vercel-labs
vendor ×10

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

12k tokens scripts
Skill Creator
by JayZeeDesign
×9

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

10k tokens scripts
Template Skill
by JayZeeDesign
×7

Replace with description of the skill and when Claude should use it.

35 tokens
Dispatching Parallel Agents
by ZhanlinCui
×5

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

2k tokens
Skill Development
by anthropics
vendor ×4

This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.

9k tokens
Find Skills
by sanity-io
vendor ×4

Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.

1k tokens
Writing Skills
by ZhanlinCui
×4

Use when creating new skills, editing existing skills, or verifying skills work before deployment

26k tokens scripts

How to use it

Copy the folder

Take biotender-max/skills-hub from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference pip. Without those the skill loads but fails at the first command.