fix: replace Windows iwr install command with npx skills add
Summary
- Replace all Windows PowerShell
iwr/install.ps1commands with community-standardnpx skills add --skill <name> -g -y - Linux/macOS
curl | bashcommands left unchanged - Labels changed from "Windows" to "所有平台" since npx skills is cross-platform
Why
The PowerShell script was prone to download corruption, encoding issues, and execution policy problems. npx skills (maintained by Vercel Labs) is Node.js-based, cross-platform, and supports GitLab URLs natively.
Changes
-
src/components/Hero.tsx— simplified to single npx command, removed platform toggle -
src/components/SkillDrawer.tsx— unified to npx, removed platform toggle, changed labels -
src/app/docs/installation/page.tsx— updated Windows install section -
src/app/docs/usage/page.tsx— updated Windows install instructions and FAQ