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

@mariojgmaster/skill-orchestrator

v0.8.1

Published

CLI for listing, installing, and validating Codex skills from the GPT-CODEX-SKILLs catalog.

Downloads

911

Readme

Skill Orchestrator CLI

@mariojgmaster/skill-orchestrator is a Node.js CLI for listing, installing, and validating Codex skill catalogs published from mariojgmaster/GPT-CODEX-SKILLs.

It is designed for workspace-first skill packs such as:

  • salesforce
  • mobile-desktop
  • rm

Installation

Install globally:

npm install -g @mariojgmaster/skill-orchestrator

On Windows, if global installation fails due to permissions, configure a user-level npm prefix first:

npm.cmd config set prefix "%APPDATA%\\npm" --location=user
npm.cmd install -g @mariojgmaster/skill-orchestrator

The global command is:

codex-skills

Core Commands

List remote catalog workspaces and skills:

codex-skills list
codex-skills list --workspace rm

Install a complete workspace:

codex-skills install salesforce
codex-skills install mobile-desktop
codex-skills install rm

Install into the current project root instead of the global Codex home:

codex-skills install rm --scope local

Local scope installs the selected workspace directly into the current project root. For example, a workspace can place AGENTS.md, skills/, .codex-utils/, and any other workspace files at the project root.

If the project already has a root .gitignore, the CLI preserves it and does not replace it with the workspace version. Existing .codex-utils/ is also preserved during local installation.

Install a single skill:

codex-skills install salesforce/sf-router-core-mandatory

Inspect installed skills:

codex-skills list --installed
codex-skills list --installed --scope local

Remove an installed workspace or skill:

codex-skills remove rm
codex-skills remove salesforce/sf-router-core-mandatory
codex-skills remove rm --scope local

Validate a local skill repository:

codex-skills doctor repo .
codex-skills doctor installed

Behavior

  • Installs skills into $CODEX_HOME/skills when CODEX_HOME is defined.
  • Falls back to ~/.codex/skills when CODEX_HOME is not set.
  • Supports --scope global and --scope local.
  • Global scope installs individual skills into the Codex home.
  • Local scope installs one workspace directly into the current project root and keeps orchestration metadata under ./.codex/.
  • Local scope supports full workspace install/remove only.
  • Local conflict confirmation focuses on workspace content relevant to the installed skill pack and ignores preserved infrastructure such as .codex-utils/ and an existing root .gitignore.
  • If another workspace is already installed locally, the CLI requires explicit confirmation before replacement and shows the project paths that will be removed.
  • Resolves the catalog from the GitHub repository configured in catalog.manifest.json.
  • Installs workspace packs as individual Codex skills compatible with the native skill model.
  • Maintains a local registry for managed installs.

Authentication

For private GitHub catalogs, export one of:

GITHUB_TOKEN
GH_TOKEN

Notes

  • The CLI manages catalog lifecycle only. It does not bootstrap AGENTS.md into user projects.
  • After installing or updating skills, restart Codex so the new skills are loaded.