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

@lythos/skill-curator

v0.17.0

Published

Skill Curator — read-only observer for skill cold pools. Scans and indexes; recommendation is agent-side LLM reasoning.

Readme

@lythos/skill-curator

Read-only indexer for skill cold pools. Scans, extracts metadata, builds REGISTRY.json + catalog.db. Tracks decision history (additions.jsonl). Zero algorithmic recommendation — facts only.

Why

As your skill ecosystem grows (GitHub trending, marketplace downloads, agent recommendations), you lose track of what you have and why you have it. skill-curator solves both:

  • REGISTRY.json + catalog.db: Structured index of every skill in your cold pool
  • additions.jsonl: Decision history — why you added each skill, arena results, fork lineage

Need recommendation or ranking? Use Arena. Curator provides the data; Arena provides the comparison. Together they feed the agent's recommendation workflow.

Install

bun add -d @lythos/skill-curator
# or use directly
bunx @lythos/[email protected] <command>

Quick Start

# Scan cold pool and build index
bunx @lythos/[email protected]

# Add a skill (with decision record)
bunx @lythos/[email protected] add github.com/foo/bar-skill \
  --pool ~/.agents/skill-repos \
  --reason "LobeHub trending, claims web scraping"

# Fork an existing skill
bunx @lythos/[email protected] add github.com/you/better-scraper \
  --pool ~/.agents/skill-repos \
  --forked-from github.com/foo/bar-skill \
  --reason "fork: fixed PDF extraction bug"

# Query the catalog
bunx @lythos/[email protected] query "SELECT name, description FROM skills WHERE niches LIKE '%testing%'"

Commands

Usage: lythoskill-curator [pool-path] [--output <dir>]
       lythoskill-curator add <github.com/owner/repo> --pool <dir> [--reason <text>] [--forked-from <locator>] [--branch <name>] [--full]
       lythoskill-curator query <SQL> [--db <path>]
       lythoskill-curator audit [--db <path>]
       lythoskill-curator restore [--output <dir>]
       lythoskill-curator tag <skill-name> --niche <value> [--qa <json>] [--db <path>]
       lythoskill-curator refresh-plan [--pool <dir>]
       lythoskill-curator refresh-execute [--pool <dir>]

Commands:
  (no args)             Scan cold pool and build REGISTRY.json + catalog.db
  add <locator>         Download a skill to cold pool (no install, no deck.toml)
                          --pool <dir>         Cold pool path (required)
                          --reason <text>      Why this skill was added
                          --forked-from <loc>  Original skill if this is a fork
                          --branch <name>      Specific branch (default: default branch)
                          --full               Full clone (default: --depth 1 shallow)
  find <bare-name>      Look up a skill by bare name (HIT: path + deck add; MISS: search guidance)
  query <SQL>           Query the catalog SQLite database (output: Markdown table)
  audit                 Run predefined checks and output an audit report
  restore               Roll back to the most recent backup
  tag <skill-name>      Write agent-enriched metadata to indexed skill
                          --niche <value>      Niche tag (repeatable)
                          --qa <json>          QA signal: {"source_type":"self/arena","signal_value":8,...}
                          --db, -d <path>      Database path
  refresh-plan          Scan cold pool for upstream updates, write TODO plan
                          --pool <dir>         Cold pool path (default: ~/.agents/skill-repos)
  refresh-execute       Pull behind repos one by one
                          --pool <dir>         Cold pool path (default: ~/.agents/skill-repos)

Options:
  --output, -o <dir>    Output directory (default: <pool>/.lythoskill-curator/)
  --pool <dir>          Cold pool path (default: ~/.agents/skill-repos)
  --db, -d <path>       Database path for find/query/audit

Architecture

Part of the lythoskill ecosystem.

Feeds (LobeHub, GitHub, agentskill.sh)
        │
        ▼ curator add --pool --reason
Cold Pool (~/.agents/skill-repos/)
        │ curator scan
        ▼
Catalog (REGISTRY.json + catalog.db)  +  Decision History (additions.jsonl)
        │                                          │
        ▼                                          ▼
Agent LLM reasoning ──── Arena test play ──── Deck governance
(tiered recommendations)  (L3 buyer's review)  (deny-by-default)

See references/architecture.md for the full data flow and three-layer trust model.

Skill Documentation

This package is the Starter layer (CLI implementation). The agent-visible Skill layer documentation is here: packages/lythoskill-curator/skill/SKILL.md

License

MIT