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/ara-skills

v0.2.0

Published

Install Agent-Native Research Artifact (ARA) skills — compiler, research-manager, rigor-reviewer — into Claude Code, Cursor, OpenCode, Gemini CLI, Codex, and more.

Readme

@orchestra-research/ara-skills

One-command installer for the three Agent-Native Research Artifact (ARA) skills:

| Skill | Invoke | What it does | |-------|--------|--------------| | compiler | /compiler <input> | Convert a paper, repo, or notes into a complete ARA artifact | | research-manager | /research-manager | Post-session recorder that captures decisions, dead ends, and claims | | rigor-reviewer | /rigor-reviewer <dir> | ARA Seal Level 2 semantic epistemic review across six dimensions |

Quick start

# interactive (auto-detects Claude Code, Cursor, Gemini CLI, OpenCode, Codex, Hermes)
npx @orchestra-research/ara-skills

# install everything to every detected agent (global / user-level)
npx @orchestra-research/ara-skills install --all

# install just the compiler to Claude Code
npx @orchestra-research/ara-skills install --skill compiler --agent claude-code

# install into the current project instead of $HOME
npx @orchestra-research/ara-skills install --all --local

Commands

ara-skills                             # interactive
ara-skills install  [--all] [--skill <id>] [--agent <id>] [--local] [--force]
ara-skills update   [--agent <id>] [--local]
ara-skills uninstall [--skill <id>] [--agent <id>] [--local]
ara-skills list                        # what is installed, where
ara-skills skills                      # what's available to install
ara-skills agents                      # which agents are supported / detected

All --skill and --agent flags are repeatable.

Agent targets

| Agent | Global dir | Local dir | |--------------|-------------------------------|-----------------------------| | claude-code | ~/.claude/skills/ | .claude/skills/ | | cursor | ~/.cursor/skills/ | .cursor/skills/ | | gemini-cli | ~/.gemini/skills/ | .gemini/skills/ | | opencode | ~/.opencode/skills/ | .opencode/skills/ | | codex | ~/.codex/skills/ | .codex/skills/ | | hermes | ~/.hermes/skills/ | .hermes/skills/ | | generic | ~/.skills/ | ./skills/ |

After install, each skill lives at <target>/<skill-id>/SKILL.md. A small .ara-skills.json lock file records what was installed so update and uninstall --all work.

Development

cd packages/ara-skills
npm install
node bin/cli.js install --skill compiler --local --force

In dev mode the CLI reads skills from the sibling ../../skills/ directory. On npm pack / npm publish, prepack copies that directory into packages/ara-skills/skills/ so the tarball is self-contained; postpack removes the copy afterward.

Upstream source of truth

The three skill directories live at the repo root under skills/. Edit them there — never edit the copy inside this package, which is created on demand by prepack.