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

yuri-skills

v0.1.1

Published

A curated collection of Agent Skills for AI workflows, engineering, research, and productivity.

Readme

yuri-skills

A curated collection of Agent Skills for AI workflows, engineering, research, and productivity.

Each skill is a self-contained folder under skills/. Pre-packaged .skill files for one-click install live in dist/.

Skills may be authored in English or Chinese. Chinese skills are suffixed (e.g. -zh) in the folder name.


Installation

Pick the method that matches your AI client.

Option A: Claude Code + Codex via npx

Install every Yuri skill globally for both Claude Code and Codex:

npx yuri-skills install

The npm package only ships the installer. Skills are downloaded from GitHub at install time, so skill updates only need to be pushed to this repository.

Install one or more skills:

npx yuri-skills install grill-me-harder
npx yuri-skills install grill-me-harder ruthless-paper-reviewer

Limit the target agent or install into the current project:

npx yuri-skills install --agent codex
npx yuri-skills install --agent claude
npx yuri-skills install --scope project

Pin installs to a branch, tag, or commit:

npx yuri-skills install --ref v0.1.0

Remove Yuri skills from the same default global locations:

npx yuri-skills remove

Defaults: all skills, both Claude and Codex, user-global install, GitHub main branch. The installer supports macOS, Linux, and Windows.

Option B: Claude.ai web / desktop app (recommended for non-technical users)

  1. Open the dist/ directory.
  2. Download the <skill-name>.skill file you want.
  3. In Claude.ai, go to Settings → Capabilities → Skills → Upload skill.
  4. Select the downloaded .skill file. Done.

Option C: Manual install

You can also copy a skill folder directly into your agent's skills directory.

Claude Code global install (available in every project):

# macOS / Linux
cp -r skills/<skill-name> ~/.claude/skills/

# Windows (PowerShell)
Copy-Item -Recurse skills\<skill-name> $env:USERPROFILE\.claude\skills\

Claude Code project-scoped install (current repo only):

cp -r skills/<skill-name> <your-project>/.claude/skills/

Codex project-scoped install (current repo only):

# macOS / Linux
mkdir -p .agents/skills
cp -r skills/<skill-name> .agents/skills/

# Windows (PowerShell)
New-Item -ItemType Directory -Force .agents\skills
Copy-Item -Recurse skills\<skill-name> .agents\skills\

Codex user-scoped install (available in every project):

# macOS / Linux
mkdir -p ~/.agents/skills
cp -r skills/<skill-name> ~/.agents/skills/

# Windows (PowerShell)
New-Item -ItemType Directory -Force $HOME\.agents\skills
Copy-Item -Recurse skills\<skill-name> $HOME\.agents\skills\

Restart Claude Code or Codex if the new skill does not appear. Some older Codex setups may use ~/.codex/skills; prefer .agents/skills for new installs.


Triggering skills

After installation, Claude Code and Codex can auto-trigger skills based on each skill's description field in SKILL.md.

You can also invoke the intended behavior directly in natural language, for example:

grill me on this design
pressure test this plan
拷打我这个方案
帮我锐评这篇论文

Chinese-language skills use the -zh suffix and include Chinese trigger phrasing in their own SKILL.md.


Available skills

This list grows as new skills are added. Each skill's SKILL.md has full details and trigger examples.

| Skill | What it does | Source | | --- | --- | --- | | grill-me-harder | Adversarially interviews you about a plan or design, one branch at a time, until every decision is concrete. | Adapted from mattpocock/skills · grill-me | | grill-me-harder-zh | 中文版"拷打我"。用调侃但不留情面的语气,逐个分支把你的方案追问到落地,直到你"悟了"。 | Adapted from mattpocock/skills · grill-me | | ruthless-paper-reviewer | Ruthlessly roasts an academic paper. Hunts for fatal logic flaws, tech-washing, dataset-timeline mismatches, and unsupported conclusions. Evidence-grounded, no "pros and cons" essays. | Original | | ruthless-paper-reviewer-zh | 中文版"学术论文锐评"。B 站锐评味儿打底,第一性原理收尾——专治缝合怪、A+B 灌水、跑分游戏、Math/Tech-washing。皮调侃,骨头硬。 | Original |


For contributors

See CLAUDE.md for the full skill-authoring workflow — you can hand it to Claude Code and have it walk through the process.

Package a skill:

python scripts/package_skill.py skills/<skill-name>
# Output: dist/<skill-name>.skill

License

MIT — see LICENSE.