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

@allanpk716/work-skills-setup

v1.9.0

Published

Work Skills installer for Windows developers

Readme

Work Skills

English | 中文

个人技能集合,用于提升 Claude Code 的日常工作效率。

🚀 快速开始

npx github:allanpk716/work-skills#main

简写形式:npx allanpk716/work-skills


前提条件

  • Windows 开发环境
  • 已配置 SSH (PuTTY/Pageant) 的 Git
  • 已安装 Node.js 环境 (用于 Claude Code 插件系统)

安装

任选一条命令安装(均从 GitHub 拉取):

# 推荐 - 显式指定 GitHub 源和分支
npx github:allanpk716/work-skills#main

# 简写形式 - 效果相同
npx allanpk716/work-skills

安装器自动完成环境检测、插件安装和 Claude Code 配置。无需在 Claude Code 中手动管理插件。

手动安装

git clone https://github.com/allanpk716/work-skills.git
cd work-skills
node installer/src/index.js

更新

重新运行安装命令即可获取最新版本:

npx github:allanpk716/work-skills#main

手动克隆方式:

cd work-skills && git pull origin main && node installer/src/index.js

可用插件

| 插件 | 描述 | 技能 | | --- | --- | --- | | windows-git-commit | Windows Git 工作流自动化 (plink + PPK) | windows-git-commit | | claude-notify | 任务完成通知 (Pushover + Windows Toast) | claude-notify |

可用技能

windows-git-commit

使用命令行 git 和 plink + PPK 认证的自动化 Git 提交和推送。

特性:

  • 自动分析代码变更
  • 生成描述性提交信息
  • 使用命令行 git (无 GUI 对话框)
  • 自动配置 PuTTY/plink SSH 认证
  • 在子代理中运行以保留上下文

用法:

# 自动提交和推送 (推荐)
/windows-git-commit

# 使用自定义提交信息
/windows-git-commit Commit message here

# 仅提交特定文件
/windows-git-commit for changes in src/ and tests/

前提条件:

  • Pageant 必须运行并加载了 PPK 密钥
  • 必须安装 TortoiseGit 或 PuTTY
  • 首次运行会自动配置 git 使用 TortoisePlink

一次性配置:

# 配置 git 使用 TortoisePlink (64位系统)
git config --global core.sshcommand "\"C:\\Program Files\\TortoiseGit\\bin\\TortoisePlink.exe\""

# 或 32位系统
git config --global core.sshcommand "\"C:\\Program Files (x86)\\TortoiseGit\\bin\\TortoisePlink.exe\""

详细故障排除请参阅技能文档。

claude-notify

当 Claude Code 完成任务时自动发送通知。通过 Pushover 接收移动推送通知,在 Windows 系统上接收桌面 Toast 通知。

特性:

  • 通过 Pushover 发送移动推送通知
  • Windows Toast 桌面通知
  • 使用 Claude CLI 生成 AI 驱动的任务摘要
  • 并行执行实现即时投递
  • 未配置 Pushover 时优雅降级
  • 在 5 秒内完成

用法:

无需手动调用 - 通知在 Claude Code 任务完成时自动发送。

前提条件:

  • Python 3.8 或更高版本
  • Pushover 账号(可选,用于移动通知)

安装配置:

  1. 配置 Pushover(可选):
# Windows 命令提示符
setx PUSHOVER_TOKEN "your-pushover-app-token"
setx PUSHOVER_USER "your-pushover-user-key"
  1. 验证安装:
python scripts/verify-installation.py
  1. 测试:

在 Claude Code 中完成任何任务,你应该会自动收到通知。

不使用 Pushover:

Windows Toast 通知无需任何配置即可工作。只需安装插件即可开始使用。

详细文档请参阅技能文档

项目结构

work-skills/
├── plugins/
│   ├── windows-git-commit/   # Git 工作流自动化插件
│   ├── claude-notify/        # 通知插件
├── installer/                # NPX 安装器
├── README.md                 # 英文说明
├── README.zh.md              # 中文说明 (本文件)
└── CHANGELOG.md              # 版本历史

贡献

这是个人技能集合。欢迎 fork 并根据你的需求进行调整!

许可证

MIT

致谢

项目结构和组织方式受到 baoyu-skills (作者 Jim Liu) 的启发。