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

sundial-hub

v0.1.19

Published

A CLI to extend your agent's skills

Downloads

1,747

Readme

Sundial CLI

Add, publish, and discover skills for AI coding agents.

npm install -g sundial-hub

Add a skill

sun add tinker                   # From the registry
sun add ./my-local-skill         # From a local folder
sun add owner/repo               # Prefer registry match, otherwise pull from repo

Skills are installed into the canonical .agents/skills/ directory and linked to your agent folders.

Search for skills

sun find                       # Find public, private, and team-shared skills you can access

Publish a skill

sun login                        # Authenticate first
sun push                         # Push from current directory
sun push --team acme             # Push a skill under your team

Your SKILL.md needs name and description in the frontmatter. version is optional (defaults to 1).

Other commands

sun installed                    # List installed skills
sun check                        # Check for available updates
sun update                       # Update installed skills
sun init my-skill                # Create a SKILL.md template
sun mine                         # List skills you own and team-shared skills
sun remove tinker                # Remove a skill
sun config                       # Configure default agents + install mode
sun auth status                  # Check auth status
sun logout                       # Logout

Flags

sun add tinker --global                  # Install globally
sun add tinker --agent codex             # Install to specific agents
sun add tinker --choose-agents           # One-time interactive agent chooser
sun add tinker --skill \"my-skill\"       # Install specific skills from a source
sun add tinker --list                    # List available skills without installing
sun add tinker --all                     # Install all skills to all agents
sun add tinker --yes                     # Skip prompts
sun push --visibility private            # Publish as private
sun push --team acme                     # Publish to a specific team
sun push --skill-version 1.1.0           # Set version explicitly
sun push --categories coding writing     # Set categories (space-separated)
sun push --categories coding,writing     # Set categories (comma-separated)

Authenticated sun find includes your own private skills and private skills shared with your team. Without auth it falls back to public skills only.

Supported agents

Sundial supports popular agents like Claude Code, Codex, Cursor, Cline, OpenCode, and many more. By default, sun add uses your configured defaults (sun config) or detected installed agents. Use sun add --agent <name> to target specific agents.

Links