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

@orchestra-research/ai-research-skills

v1.5.3

Published

Install AI research engineering skills to your coding agents (Claude Code, OpenCode, Cursor, Gemini CLI, Hermes Agent, and more)

Downloads

3,075

Readme

@orchestra-research/ai-research-skills

Install AI research engineering skills to your coding agents (Claude Code, Hermes Agent, OpenCode, Cursor, Gemini CLI, and more).

npx @orchestra-research/ai-research-skills

Features

  • 86 skills across 22 categories for AI research engineering
  • Auto-detects installed coding agents
  • Interactive installer with guided experience
  • Global or local install — install globally with symlinks, or per-project with --local for version-controlled, project-specific skill sets
  • Works with 9 agents: Claude Code, Hermes Agent, OpenCode, OpenClaw, Cursor, Codex, Gemini CLI, Qwen Code, and shared .agents/

Quick Start

Run the interactive installer:

npx @orchestra-research/ai-research-skills

This will:

  1. Detect your installed coding agents
  2. Let you choose what to install (everything, categories, or quick start bundle)
  3. Download skills from GitHub
  4. Create symlinks to each agent's skills directory

Commands

# Interactive mode (recommended)
npx @orchestra-research/ai-research-skills

# Install everything (global)
npx @orchestra-research/ai-research-skills install --all

# Install a specific category
npx @orchestra-research/ai-research-skills install post-training

# List installed skills
npx @orchestra-research/ai-research-skills list

# Update all skills
npx @orchestra-research/ai-research-skills update

Local Installation (per-project)

Install skills directly into your project directory so different projects can have different skill sets:

# Install all skills locally to the current project
npx @orchestra-research/ai-research-skills install --all --local

# Install a category locally
npx @orchestra-research/ai-research-skills install --category post-training --local

# List locally installed skills
npx @orchestra-research/ai-research-skills list --local

# Update local skills
npx @orchestra-research/ai-research-skills update --local

# Uninstall local skills
npx @orchestra-research/ai-research-skills uninstall --local

Local installation copies skills (not symlinks) into agent directories within your project:

my-project/
├── .claude/skills/        # Claude Code picks these up
│   ├── grpo-rl-training/
│   └── vllm/
├── .cursor/skills/        # Cursor picks these up
│   ├── grpo-rl-training/
│   └── vllm/
├── .orchestra-skills.json # Tracks installed skills
└── ...

Benefits:

  • Per-project skills: Each project gets only the skills it needs
  • Version control: Commit skills to your repo so the whole team has them
  • Reproducible: Lock file (.orchestra-skills.json) tracks what's installed

Categories

| Category | Skills | Description | |----------|--------|-------------| | Autoresearch | 1 | Central orchestration — manages full research lifecycle, routes to all other skills | | Model Architecture | 6 | LitGPT, Mamba, TorchTitan, Megatron... | | Post-Training | 8 | GRPO, verl, slime, miles, torchforge... | | Fine-Tuning | 5 | Axolotl, Unsloth, PEFT, Torchtune... | | Distributed Training | 6 | DeepSpeed, FSDP, Megatron... | | Inference Serving | 4 | vLLM, TensorRT-LLM, SGLang... | | Optimization | 6 | Flash Attention, GPTQ, AWQ... | | And 15 more... | | Ideation, Paper Writing, RAG, Agents, Multimodal... |

How It Works

Global Install (default)

  1. Canonical Storage: Skills are stored once at ~/.orchestra/skills/
  2. Symlinks: Each agent gets symlinks pointing to the canonical copy
  3. Auto-activation: Skills activate when you discuss relevant topics
~/.orchestra/skills/       # Single source of truth
├── 06-post-training/
│   ├── verl/
│   └── grpo-rl-training/
└── ...

~/.claude/skills/          # Symlinks for Claude Code
├── verl → ~/.orchestra/skills/.../verl
└── grpo-rl-training → ...

~/.cursor/skills/          # Symlinks for Cursor
└── (same links)

Local Install (--local)

  1. Direct Copy: Skills are copied into agent directories within your project
  2. Version Control: Files can be committed to git for team sharing
  3. Lock File: .orchestra-skills.json tracks what's installed
my-project/
├── .claude/skills/verl/           # Copied for Claude Code
├── .cursor/skills/verl/           # Copied for Cursor
├── .codex/skills/verl/            # Copied for Codex
└── .orchestra-skills.json         # Lock file

Supported Agents

| Agent | Config Directory | |-------|-----------------| | Claude Code | ~/.claude | | OpenCode | ~/.config/opencode | | OpenClaw | ~/.openclaw | | Cursor | ~/.cursor | | Codex (OpenAI) | ~/.codex | | Gemini CLI | ~/.gemini | | Qwen Code | ~/.qwen | | Shared Agents | ~/.agents | | Hermes Agent | ~/.hermes |

License

MIT - Orchestra Research