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

@arcanea/skill-registry

v0.1.0

Published

Dynamic skill discovery and activation with capability matching, versioning, and Guardian-aware routing

Readme

@arcanea/skill-registry

Dynamic skill discovery and activation for the Arcanea Intelligence OS — capability matching, versioning, health monitoring, and Guardian-aware routing.

Install

npm install @arcanea/skill-registry

Usage

import { SkillRegistry } from '@arcanea/skill-registry';

const registry = new SkillRegistry();

// Register a skill
registry.register({
  id: 'code-gen',
  name: 'Code Generator',
  version: '1.0.0',
  description: 'Generates TypeScript code from specs',
  provider: 'shinkami-agent',
  capabilities: ['code-generation', 'typescript', 'refactoring'],
  guardianAffinity: ['shinkami'],
});

// Discover skills by capability
const matches = registry.discover({
  capabilities: ['code-generation'],
  activeOnly: true,
  minHealth: 0.5,
});

// Create skill pipelines
const pipeline = registry.createPipeline('code-review', [
  { skillId: 'code-gen' },
  { skillId: 'code-review', fallbackSkillId: 'manual-review' },
]);

Features

  • Runtime registration — register and deregister skills dynamically
  • Capability matching — semantic discovery by capability tags
  • Version compatibility — semver-aware dependency checking
  • Health monitoring — automatic health scoring with gradual degradation/recovery
  • Guardian affinity — route skills to matching Guardians
  • Skill pipelines — compose skills into multi-step chains
  • Execution tracking — success rates, latency, and execution counts

API

| Export | Description | |---|---| | SkillRegistry | Main registry for skill management and discovery |

License

MIT