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

@deep-tui/plugin-skills

v0.1.0

Published

Agent Skills discovery and curated source management for Deep TUI.

Readme

@deep-tui/plugin-skills

Discovers portable Agent Skills, discloses their names and descriptions to the model, and loads full instructions only when a task needs them. The plugin also provides a small curated source catalog and project-local GitHub installation management.

The standard Deep TUI composition includes this plugin, but it does not install skills by default. Its reviewed catalog starts with Superpowers and Impeccable, and its searchable marketplace exposes installable entries from VoltAgent/awesome-agent-skills:

deep-tui skills catalog
deep-tui skills search accessibility
deep-tui skills install superpowers
deep-tui skills install impeccable
deep-tui skills list

Every built-in and search result includes a detailed description, its GitHub repository star count, and the date that count was retrieved. Built-in counts are reviewed snapshots; marketplace search refreshes counts through GitHub's REST API. Set GITHUB_TOKEN to raise GitHub's API rate limit. If a live star count cannot be retrieved, the remote search fails instead of presenting an undated or misleading number.

The same operations are available inside the TUI through /skills. Managed sources are cloned without running dependency or lifecycle scripts and live in .deep-tui/skills/sources/. Treat installed skills as trusted instructions: they can tell an agent to run bundled scripts or use other tools, whose normal Deep TUI permissions still apply.

Discovery

In precedence order, the plugin scans configured paths, project .agents/skills, .deep-tui/skills, project .claude/skills, managed source packs, user ~/.agents/skills, and user ~/.claude/skills. This makes existing cross-client skills available without reinstalling them. Duplicate names keep the first match and are reported as discovery warnings.

The model receives only each valid SKILL.md name and description. Its read-only skill tool supports list, load, and bounded skill-relative resource reads. This follows the Agent Skills progressive-disclosure model.

Configuration

Add private or team-curated GitHub repositories without replacing the built-in catalog:

{
  "use": "@deep-tui/plugin-skills",
  "config": {
    "catalog": [
      {
        "id": "team-skills",
        "name": "Team Skills",
        "description": "Our reviewed engineering workflows.",
        "repository": "https://github.com/example/team-skills",
        "ref": "v1.0.0",
        "skillsPath": "skills"
      }
    ],
    "paths": ["./shared/skills"]
  }
}

Catalog sources currently use uncredentialed GitHub HTTPS repositories. A source may contain one skill at skillsPath/SKILL.md or a collection at skillsPath/*/SKILL.md; skillName selects one skill from a collection. Custom entries can include stars and starsAsOf metadata. Set includeCuratedCatalog, includeAwesomeCatalog, includeUserSkills, or includeClaudeSkills to false to disable those discovery surfaces. Use catalogTimeoutMs to bound marketplace and GitHub API requests.