Windows兼容版Claude Code技能搜索工具,修复npx skills空输出问题 | Windows-compatible Claude Code skills finder
npx skills add https://github.com/kimyx0207/findskill --skill find-skills使用 CLI 安装这个技能,并在你的工作区中直接复用对应的 SKILL.md 工作流。
Windows 兼容版 Claude Code 技能搜索工具
🔗 GitHub仓库:https://github.com/KimYx0207/findskill
老金的开源知识库,实时更新群二维码:https://my.feishu.cn/wiki/OhQ8wqntFihcI1kWVDlcNdpznFf
A Windows-compatible fork of vercel-labs/skills find-skills that fixes the empty output issue in Claude Code on Windows.
On Windows, Claude Code uses a Bash/Git Bash environment that doesn't properly handle npx skills commands - they return empty output silently.
# ❌ This returns nothing on Windows in Claude Code
npx skills find "react"
This fork modifies the SKILL.md to instruct Claude Code to use PowerShell for running skills commands:
# ✅ This works on Windows
powershell -Command "npx skills find 'react'"
npx skills add vercel-labs/skills@find-skills -g -y
C:\Users\<YourUsername>\.agents\skills\find-skills\SKILL.md
Close and reopen Claude Code.
Say to Claude Code: "find a skill for data analysis"
If you see search results, installation is successful.
findskill/
├── README.md # English documentation (this file)
├── README_CN.md # Chinese documentation
├── LICENSE # MIT License
├── original/
│ └── SKILL.md # Original version from vercel-labs
└── windows/
└── SKILL.md # Windows-compatible version
powershell -Command "..." formatAfter installation, ask Claude Code:
Claude Code will now correctly use PowerShell to run the search.
MIT (same as original)