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

agent-skill-harbor

v0.15.6

Published

Skill governance for companies. Skill discovery for teams.

Readme

Agent Skill Harbor

Skill Governance for companies.
Skill Discovery for teams.

Agent Skill Harbor catalogs Agent Skills (SKILL.md) across your GitHub organization and publishes a browsable internal catalog.

Overview

  • Governance: mark skills as recommended, discouraged, or prohibited
  • Provenance: track copied or installed skills back to their origin
  • Git-native: collected data is stored in data/ as YAML/JSON and committed back to Git
  • Backend-less: the catalog site is a prerendered web app
  • Workflow-friendly: collection and post-collection processing run as separate jobs

Demo site:

  • https://skill-mill.github.io/agent-skill-harbor-demo/

Quick Start

npx agent-skill-harbor init my-skill-harbor
cd my-skill-harbor

pnpm install
pnpm install --dir collector

# edit .env and set GH_ORG

gh auth login && GH_TOKEN=$(gh auth token) pnpm collect
# Or edit .env and set GH_TOKEN, then run:
# pnpm collect
pnpm dev

pnpm install installs the root package (agent-skill-harbor) for CLI + web.
pnpm install --dir collector installs the collector runtime used by pnpm collect and pnpm post-collect.

CLI Commands

When installed, the main CLI is available as harbor or agent-skill-harbor.

| Command | Description | | -------------------------- | -------------------------------------- | | harbor init [dir] | Scaffold a new project | | harbor setup <plugin-id> | Scaffold optional plugin runtime files |

Daily project operations are exposed through the generated root scripts:

pnpm collect
pnpm post-collect
pnpm dev
pnpm build
pnpm preview

Under the hood, generated projects call the packaged runtime entry modules directly:

  • node collector/node_modules/agent-skill-harbor-collector/dist/src/runtime/collect-command.js
  • node collector/node_modules/agent-skill-harbor-collector/dist/src/runtime/post-collect-command.js
  • node node_modules/agent-skill-harbor/dist/src/runtime/dev.js
  • node node_modules/agent-skill-harbor/dist/src/runtime/build.js
  • node node_modules/agent-skill-harbor/dist/src/runtime/preview.js

Organization Setup

  1. Create a new project with npx agent-skill-harbor init.
  2. Push it to a private repository in your organization.
  3. Configure GH_TOKEN as a GitHub Actions secret.
  4. Enable GitHub Pages or Cloudflare Pages.
  5. Run the generated CollectSkills workflow once.

The generated CollectSkills workflow is a thin caller pinned to Harbor's reusable workflow at wf-v0.

Inside the reusable workflow:

  • collect installs only collector/ core dependencies and runs collection
  • post_collect restores the collected artifact, installs collector/ core dependencies again, then installs only enabled optional plugin manifests
  • the final data/ directory is committed back to the repository

This keeps GitHub collection and optional post-collect dependencies structurally separate.

See Organization Setup for details.

Project Structure

my-skill-harbor/
├── .env
├── config/
│   ├── harbor.yaml
│   └── governance.yaml
├── collector/
│   ├── package.json
│   └── plugins/
│       └── <plugin-id>/
├── data/
│   ├── assets/
│   ├── collects.yaml
│   ├── plugins/
│   ├── skills.yaml
│   └── skills/
├── guide/
├── .github/workflows/
└── package.json

Notes:

  • root package.json depends only on agent-skill-harbor
  • collector/package.json is a Harbor-managed runtime manifest for agent-skill-harbor-collector
  • optional plugin manifests and example user-defined plugins live under collector/plugins/<plugin-id>/

Post-Collect Plugins

Built-in plugins are enabled from config/harbor.yaml.

Examples:

  • builtin.detect-drift
  • builtin.notify-slack
  • builtin.audit-promptfoo-security
  • builtin.audit-skill-scanner

Optional runtime files are scaffolded with harbor setup:

harbor setup example-user-defined-plugin
harbor setup builtin.audit-promptfoo-security
harbor setup builtin.audit-skill-scanner

Generated files go under collector/plugins/<plugin-id>/.

See Post-Collect Plugins.

Documentation

License

MIT