🔗 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- Open: https://github.com/KimYx0207/findskill/blob/main/windows/SKILL.md
- Copy all content
- Replace the file at:
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
- Added Windows compatibility warning at the top
- Changed all commands to use
powershell -Command "..."format - Added Chinese to English keyword reference (search only supports English)
- Added troubleshooting section
After installation, ask Claude Code:
- "find a skill for react"
- "is there a skill for code review"
- "search skill for data analysis"
Claude Code will now correctly use PowerShell to run the search.
- Search only supports English keywords - Chinese queries need to be translated by AI
- Trigger is semantic - AI may or may not trigger find-skills depending on how you phrase it. Adding "skill" to your request makes it more reliable.
- Windows only - macOS/Linux users should use the original version
- Original skill: vercel-labs/skills
- Windows fix: @KimYx0207
MIT (same as original)
