$npx -y skills add KimYx0207/Kim_Service --skill find-skillHelps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist a
| 1 | # find-skills |
| 2 | |
| 3 | Helps users discover and install agent skills from the open skills ecosystem. |
| 4 | |
| 5 | ## When to Use This Skill |
| 6 | |
| 7 | Use this skill when the user: |
| 8 | |
| 9 | - Asks "how do I do X" where X might be a common task with an existing skill |
| 10 | - Says "find a skill for X" or "is there a skill for X" |
| 11 | - Asks "can you do X" where X is a specialized capability |
| 12 | - Expresses interest in extending agent capabilities |
| 13 | - Wants to search for tools, templates, or workflows |
| 14 | - Mentions they wish they had help with a specific domain (design, testing, deployment, etc.) |
| 15 | |
| 16 | ## ⚠️ Windows Compatibility |
| 17 | |
| 18 | **On Windows, you MUST use PowerShell to run skills commands!** |
| 19 | |
| 20 | The default Bash/Git Bash environment on Windows does NOT work with `npx skills` - commands will return empty output. |
| 21 | |
| 22 | **Always use this format on Windows:** |
| 23 | ```bash |
| 24 | powershell -Command "npx skills find '[query]'" |
| 25 | powershell -Command "npx skills add [package] -g -y" |
| 26 | powershell -Command "npx skills list -g" |
| 27 | ``` |
| 28 | |
| 29 | ## What is the Skills CLI? |
| 30 | |
| 31 | The Skills CLI (`npx skills`) is the package manager for the open agent skills ecosystem. Skills are modular packages that extend agent capabilities with specialized knowledge, workflows, and tools. |
| 32 | |
| 33 | **Key commands (Windows format):** |
| 34 | |
| 35 | ```bash |
| 36 | # Search for skills |
| 37 | powershell -Command "npx skills find '[query]'" |
| 38 | |
| 39 | # Install a skill |
| 40 | powershell -Command "npx skills add [package] -g -y" |
| 41 | |
| 42 | # List installed skills |
| 43 | powershell -Command "npx skills list -g" |
| 44 | |
| 45 | # Check for updates |
| 46 | powershell -Command "npx skills check" |
| 47 | |
| 48 | # Update all skills |
| 49 | powershell -Command "npx skills update" |
| 50 | ``` |
| 51 | |
| 52 | **Browse skills at:** https://skills.sh/ |
| 53 | |
| 54 | ## How to Help Users Find Skills |
| 55 | |
| 56 | ### Step 1: Understand What They Need |
| 57 | |
| 58 | When a user asks for help with something, identify: |
| 59 | |
| 60 | 1. The domain (e.g., React, testing, design, deployment) |
| 61 | 2. The specific task (e.g., writing tests, creating animations, reviewing PRs) |
| 62 | 3. Whether this is a common enough task that a skill likely exists |
| 63 | |
| 64 | ### Step 2: Search for Skills |
| 65 | |
| 66 | Run the find command with a relevant query. |
| 67 | |
| 68 | **On Windows (REQUIRED):** |
| 69 | ```bash |
| 70 | powershell -Command "npx skills find '[query]'" |
| 71 | ``` |
| 72 | |
| 73 | **On macOS/Linux:** |
| 74 | ```bash |
| 75 | npx skills find [query] |
| 76 | ``` |
| 77 | |
| 78 | Example searches (Windows format): |
| 79 | |
| 80 | | User asks... | Run this command... | |
| 81 | | ------------ | ------------------- | |
| 82 | | "how do I make my React app faster?" | `powershell -Command "npx skills find 'react performance'"` | |
| 83 | | "can you help me with PR reviews?" | `powershell -Command "npx skills find 'pr review'"` | |
| 84 | | "I need to create a changelog" | `powershell -Command "npx skills find 'changelog'"` | |
| 85 | | "数据分析" | `powershell -Command "npx skills find 'data analysis'"` | |
| 86 | |
| 87 | > **Note:** Search only supports English keywords! See Chinese keyword reference below. |
| 88 | |
| 89 | ### Step 3: Present Options to the User |
| 90 | |
| 91 | When you find relevant skills, present them to the user with: |
| 92 | |
| 93 | 1. The skill name and what it does |
| 94 | 2. The install command they can run (Windows format!) |
| 95 | 3. A link to learn more at skills.sh |
| 96 | |
| 97 | Example response: |
| 98 | |
| 99 | ``` |
| 100 | I found a skill that might help! The "vercel-react-best-practices" skill provides |
| 101 | React and Next.js performance optimization guidelines from Vercel Engineering. |
| 102 | |
| 103 | To install it (Windows): |
| 104 | powershell -Command "npx skills add vercel-labs/agent-skills@vercel-react-best-practices -g -y" |
| 105 | |
| 106 | Learn more: https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices |
| 107 | ``` |
| 108 | |
| 109 | ### Step 4: Offer to Install |
| 110 | |
| 111 | If the user wants to proceed, install the skill for them: |
| 112 | |
| 113 | **On Windows (REQUIRED):** |
| 114 | ```bash |
| 115 | powershell -Command "npx skills add <owner/repo@skill> -g -y" |
| 116 | ``` |
| 117 | |
| 118 | **On macOS/Linux:** |
| 119 | ```bash |
| 120 | npx skills add <owner/repo@skill> -g -y |
| 121 | ``` |
| 122 | |
| 123 | The `-g` flag installs globally (user-level) and `-y` skips confirmation prompts. |
| 124 | |
| 125 | ## Common Skill Categories |
| 126 | |
| 127 | | Category | Example Queries | |
| 128 | | --------------- | ---------------------------------------- | |
| 129 | | Web Development | react, nextjs, typescript, css, tailwind | |
| 130 | | Testing | testing, jest, playwright, e2e | |
| 131 | | DevOps | deploy, docker, kubernetes, ci-cd | |
| 132 | | Documentation | docs, readme, changelog, api-docs | |
| 133 | | Code Quality | review, lint, refactor, best-practices | |
| 134 | | Design | ui, ux, design-system, accessibility | |
| 135 | | Productivity | workflow, automation, git | |
| 136 | | Data Analysis | data analysis, pandas, jupyter | |
| 137 | |
| 138 | ## Chinese to English Keyword Reference |
| 139 | |
| 140 | **Important: Search only supports English keywords!** |
| 141 | |
| 142 | | Chinese (中文) | English Keywords | |
| 143 | | ------------- | ---------------- | |
| 144 | | 数据分析 | |