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

@exellix/catalox-ai-skills

v1.2.0

Published

Catalox skill catalog domain for ai-skills and ai-sub-skills — resolve, merge, CRUD, tokens, and picker helpers

Readme

@exellix/catalox-ai-skills

Single source of truth for Catalox ai-skills and ai-sub-skills catalogs: resolve/merge forged sub-skills, CRUD, template tokens, authoring validation, and picker helpers.

Node-only — no browser bundle.

Catalox 6: This package bootstraps via Mongo (createCataloxFromEnvAsync / ensureCataloxFromEnv in init-mongo-and-catalox.ts). Env: MONGO_URI or MONGODB_URI. See documenations/catalox-6-rollout.md.

Usage

import {
  createCataloxFromEnv,
  resolveSkillRuntime,
  getSkillTemplatesForPresentation,
  createSubSkill,
  listSkillsForPicker,
  crossValidateSkillTokens,
} from "@exellix/catalox-ai-skills";

Execution (gateway invoke, FlexMD, Activix) stays in @exellix/ai-skills.

Re-consider skills (system)

Five built-in System Skills for AI response revision. Catalog keys (provisioned via AI_SKILLS_CATALOG_ITEMS, tagged usageHints.expectedObjectTypes: ["system"]):

| Skill key | Purpose | |-----------|---------| | re-consider.fill-gap | Fill a known gap in a prior response → gapOutput | | re-consider.review | Review against original instructions → reviewStatus, reviewOutput | | re-consider.rewrite-scope | Rewrite one scope/section → correctedScope | | re-consider.rewrite-full | Full answer rewrite → correctedAnswer | | re-consider.calibrate-decision | Recalibrate decision/priority/ranking → calibratedOutput |

In the skills manager UI they appear under System Skills (not the preset catalog).

Template seeds live under templates/re-consider.*. Provision and sync like any other base skill:

npm run catalox:provision-ai-skills
npm run catalox:sync-skill-templates

Typed execution wrappers (fillReConsiderationGap, reviewReConsiderationResponse, etc.) are on ExellixSkillsClient in @exellix/ai-skills — see ai-skills README.

Provisioning

npm run catalox:provision-ai-skills
npm run catalox:sync-skill-templates
npm run catalox:verify

Provision upserts seed rows from AI_SKILLS_CATALOG_ITEMS and keeps other Catalox skills (e.g. imported cyber-analysis rows). To delete non-seed rows intentionally:

npx tsx scripts/provision-ai-skills-catalog.ts --prune

Catalog CLI (export / import)

Requires MONGO_URI / MONGODB_URI (package .env is loaded automatically).

# list / inspect
npm run catalox:skills -- list
npm run catalox:skills -- get Assets-Cyber-Analysis

# export (all, branch, or selected keys)
npm run catalox:skills -- export --out skills.json
npm run catalox:skills -- export --branch professional-answer --out branch.json
npm run catalox:skills -- export --skills Assets-Cyber-Analysis,Users-Cyber-Analysis --out cyber.json

# import a bundle
npm run catalox:skills -- import --file skills.json --dry-run
npm run catalox:skills -- import --file skills.json --mode replace

# build (+ optional apply) from folders of instructions.md + prompt.md [+ meta.json]
npm run catalox:skills -- from-md --dir ./my-skill-pairs --out bundle.json
npm run catalox:skills -- from-md --dir ./my-skill-pairs --apply --mode replace

After publish, the same entrypoint is available as catalox-ai-skills on PATH.