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

mcpskill

v0.2.0

Published

CLI установки Cursor Agent Skills: из npm-пакета или git-репозитория в ~/.cursor/skills (аналог npx skills add).

Readme

База скиллов (Skills)

Репозиторий для хранения и установки Agent Skills в Cursor.

Репозиторий: GitFlic — az6/skills
Клонирование: git clone [email protected]:az6/skills.git (SSH без пароля при настроенном ключе).

Содержимое

Скиллы лежат в skills/<slug>/. Каждый скилл — папка с SKILL.md и опционально references/, скрипты и т.д.

| Скилл | Описание | Установка | |-------|----------|-----------| | write-shorter | Кратко, ясно, убедительно — информационный копирайтинг по методу «Пиши, сокращай» | npx mcpskill add --skill write-shorter | | gitflic | Работа с GitFlic: SSH для git, MCP для создания и управления репозиториями | npx mcpskill add --skill gitflic | | invoice-ru | Счёт на оплату в российском формате (ИП/ООО): HTML → PDF, автозаполнение по ИНН через DaData | npx mcpskill add --skill invoice-ru |

Установка

Репозиторий по SSH: [email protected]:az6/skills.git (HTTPS: https://gitflic.ru/project/az6/skills.git).

Через mcpskill (аналог npx skills add)

Установка из npm-пакета или из git-репозитория в ~/.cursor/skills (или в каталог проекта .cursor/skills):

# Список скиллов из пакета
npx mcpskill add --list

# Установить один скилл (из пакета)
npx mcpskill add --skill write-shorter
npx mcpskill write-shorter   # то же, короткая форма

# Установить все скиллы из пакета
npx mcpskill add --all

# Из git-репозитория (как npx skills add)
npx mcpskill add [email protected]:az6/skills.git --list
npx mcpskill add [email protected]:az6/skills.git --skill write-shorter
npx mcpskill add az6/skills --skill write-shorter -g   # короткая форма: [email protected]:az6/skills.git

# Опции: -g (глобально), --dest <dir>, --dry-run
npx mcpskill add --help

Без источника используются скиллы из npm-пакета. Источник — git URL или owner/repo (по умолчанию хост GitFlic).

Через skills CLI

skills CLI:

npx skills add [email protected]:az6/skills.git
npx skills add [email protected]:az6/skills.git --skill write-shorter
npx skills add [email protected]:az6/skills.git --list
npx skills add [email protected]:az6/skills.git -g

Ручная установка (SSH)

git clone [email protected]:az6/skills.git @skills
cd @skills

# write-shorter
cp -r skills/write-shorter ~/.cursor/skills/
# gitflic
cp -r skills/gitflic ~/.cursor/skills/
# invoice-ru
cp -r skills/invoice-ru ~/.cursor/skills/

# Все скиллы
for d in skills/*/; do cp -r "$d" ~/.cursor/skills/; done

После установки скилл доступен агенту по имени из frontmatter (name: write-shorter).

Как выгружать скилл

Процесс по skill-creator: валидация → упаковка (опционально) → push в репозиторий.

Зависимости для скриптов: pip install -r requirements.txt (нужен PyYAML).

  1. Валидация — проверить скилл перед выгрузкой:

    python scripts/quick_validate.py skills/<slug>
  2. Упаковка (опционально) — собрать .skill для раздачи одним файлом:

    python scripts/package_skill.py skills/<slug> dist
  3. Выгрузка в GitFlic — закоммитить и отправить:

    git add skills/<slug> skills/index.json README.md
    git commit -m "Add skill: <slug>"
    git push origin main

После push установка: npx mcpskill add [email protected]:az6/skills.git --skill <slug>.

Добавление скилла

  1. Создать папку skills/<slug>/.
  2. Добавить SKILL.md с frontmatter: name, description.
  3. Запустить валидацию: python scripts/quick_validate.py skills/<slug>.
  4. Обновить README: добавить строку в таблицу скиллов (команда установки npx mcpskill add --skill <slug>) и при необходимости ручной cp в разделе «Ручная установка». Обновить skills/index.json.