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 installThe 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-reviewerLimit 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 projectPin installs to a branch, tag, or commit:
npx yuri-skills install --ref v0.1.0Remove Yuri skills from the same default global locations:
npx yuri-skills removeDefaults: 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)
- Open the dist/ directory.
- Download the
<skill-name>.skillfile you want. - In Claude.ai, go to Settings → Capabilities → Skills → Upload skill.
- Select the downloaded
.skillfile. 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.mdhas 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>.skillLicense
MIT — see LICENSE.
