npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

bioskill

v0.1.1

Published

One command to install bio agent skills into your AI coding agent. Powered by awesome-bio-agent-skills.

Readme

bioskill

One command to install bio agent skills into your AI coding agent.

Powered by awesome-bio-agent-skills — a curated catalog of 1,600+ SKILL.md folders for biomedical research, aggregated from 20+ open-source skill repos.

Maintained by BioTender.

npm install -g bioskill

Quick start

# Browse the catalog
bioskill list
bioskill list --category proteomics
bioskill list --source adaptyv --long

# Search by name or description
bioskill search alphafold
bioskill search "single cell"

# Inspect one skill
bioskill info alphafold

# Install into Claude Code (project-local)
bioskill install alphafold proteinmpnn --target claude-code

# Install a whole category into MiMo-Code (global)
bioskill install --category protein-design --target mimocode --scope global

# Install everything from one upstream source
bioskill install --source adaptyv --target claude-code --yes

# Preview without writing
bioskill install --category proteomics --target mimocode --dry-run

What it does

  • Clones (and updates) the awesome-bio-agent-skills repo into ~/.bioskill/cache/.
  • Enumerates every skills/<source>/<name>/SKILL.md folder on disk (so all 1,600+ skills are visible even if the CSV index lags).
  • Copies the selected skill folders into the target agent's skill directory.

Supported targets

| Target | Project scope | Global scope | | ------------- | ------------------------ | ----------------------------------------- | | claude-code | ./.claude/skills/ | ~/.claude/skills/ | | mimocode | ./.mimocode/skills/ | ~/.config/mimocode/skills/ | | opencode | ./.opencode/skills/ | ~/.config/opencode/skills/ | | generic | ./skills/ or --dir | ~/bio-skills/ or $BIOSKILL_TARGET_DIR |

Adding a new target is one file under src/targets.ts — PRs welcome.

Commands

| Command | What it does | | ----------------------------- | --------------------------------------------- | | bioskill list [--category --source --long] | Browse the catalog | | bioskill search <query> | Full-text search | | bioskill info <skill> | Show one skill's metadata + SKILL.md location | | bioskill install [skills…] | Copy skill folders into a target | | bioskill targets | List supported agent targets | | bioskill sync | Force-refresh the cached catalog |

Environment variables

  • BIOSKILL_CACHE_DIR — override ~/.bioskill/cache/
  • BIOSKILL_REPO_URL — point at a fork of awesome-bio-agent-skills
  • BIOSKILL_TARGET_DIR — default install dir for the generic target

License

MIT — see LICENSE.

The skill catalog itself is licensed under CC0 by the awesome-bio-agent-skills maintainers. Individual upstream skill sources may carry their own licenses; see each SKILL.md for attribution.