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

@sigcli/skills

v1.2.4

Published

AI agent skills for authenticated web access via sigcli

Downloads

731

Readme

@sigcli/skills

AI agent skills for authenticated web access via sigcli.

Give your AI agent (Claude, Cursor, Windsurf, Cline) the ability to interact with real websites — read feeds, send messages, post content — using your authenticated sessions managed by sigcli.

Quick Start

npx @sigcli/skills

This launches an interactive installer that auto-detects your AI agent and lets you pick which skills to install.

Usage

npx @sigcli/skills [options] [skill...]

Options

| Flag | Description | | ---------------- | -------------------------------------------------------------------------------- | | --agent <name> | Target agent: claude, cursor, windsurf, cline (auto-detected if omitted) | | --dest <path> | Custom installation directory | | --all | Install (or uninstall) all skills | | --list | List available skills and their install status | | --uninstall | Remove installed skills | | --help, -h | Show help |

Examples

# Install all skills for Claude
npx @sigcli/skills --all --agent claude

# Install specific skills
npx @sigcli/skills outlook slack x

# Install for Cursor
npx @sigcli/skills --agent cursor

# List available skills
npx @sigcli/skills --list

# Uninstall all skills
npx @sigcli/skills --uninstall --all

Bundled Skills

| Skill | Platform | Capabilities | | --------------- | -------------------- | ------------------------------------------------- | | bilibili | Bilibili (B站) | Browse videos, search, like, coin, favorite | | hackernews | Hacker News | Browse stories, search, comment, vote, submit | | linkedin | LinkedIn | View profiles/feed, search, post, connect | | msteams | Microsoft Teams | Send/read messages, search, calendar, transcripts | | outlook | Outlook | Read/send email, search, manage folders | | reddit | Reddit | Browse, search, post, comment, vote | | slack | Slack | Read channels, search, send messages, reactions | | v2ex | V2EX | Browse topics, search, reply, thank | | x | X (Twitter) | View/post tweets, like, retweet, follow | | xiaohongshu | Xiaohongshu (小红书) | Browse notes, search, like, comment | | youtube | YouTube | Search, browse channels, comments, like | | zhihu | Zhihu (知乎) | Browse Q&A, search, view profiles | | sigcli-auth | — | Auth system docs and credential management |

How It Works

  1. Install skillsnpx @sigcli/skills copies skill files to your agent's skills directory (e.g. ~/.claude/skills/)
  2. Authenticate — Use sig login <provider> to authenticate with each platform via browser
  3. Use — Your AI agent reads the skill docs and calls the bundled Python scripts with credentials injected by sigcli
Agent reads SKILL.md → calls script → sigcli injects credentials → authenticated request

Authentication

Skills rely on sigcli for credential management. Install the CLI first:

npm install -g @sigcli/cli

Then authenticate with the platforms you want to use:

sig login slack.com
sig login reddit.com
sig login x.com

Your agent uses sig run to execute scripts with credentials injected as environment variables:

sig run slack -- python3 scripts/read_channel.py --channel general --limit 20

Requirements

  • Node.js >= 18
  • Python 3 (for skill scripts)
  • sigcli for authentication

License

MIT