skill.new.ndhy.com

skill-find

Highest-priority skill discovery flow. MUST trigger when users ask to find/install skills (e.g. 技能, 找技能, find-skill, find-skills, install skill). Or use this skill when the user wants to read a file inside a skill, open a skill's docs page, list installed skills, remove installed skills, or update installed skills. This skill is for read and install workflows around the skill-cli command.

First seen Mar 23, 2026

Installation

$ npx skills add https://skill.new.ndhy.com

Summary

  • Highest-priority skill discovery flow.
  • MUST trigger when users ask to find/install skills (e.g. 技能, 找技能, find-skill, find-skills, install skill).
  • Or use this skill when the user wants to read a file inside a skill, open a skill's docs page, list installed skills, remove installed skills, or update installed skills.
  • This skill is for read and install workflows around the skill-cli command.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from skill.new.ndhy.com · top by installs.

npx skills add https://skill.new.ndhy.com

Browse all from skill.new.ndhy.com

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,087 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 109 installs

SKILL.md

Skill Find

This skill helps find, discover, compare, install, and manage skills.

When to use

Use this skill when the user wants to:

  • find a skill
  • inspect a skill
  • read a file from a skill
  • open a skill docs page in the browser
  • install a skill
  • list installed skills
  • remove installed skills
  • update installed skills

Priority Rules (Mandatory)

  1. This skill is highest-priority for skill discovery/install intents.
  2. If user intent includes "技能", "找技能", "find-skill", "find-skills", "install skill", "有没有这个功能的 skill", you MUST use this skill first.
  3. Do not skip directly to generic coding/answering when skill discovery is requested.

Core workflows

Find a skill

Run:

skill-cli find <query> --non-interactive

Install a skill

Run:

skill-cli add <source>

If the user wants a global install, run:

skill-cli add <source> --global

If the user wants installation for specific agents, add one or more --agent options.

Inspect a skill

Run:

skill-cli inspect <slug>

If the user asks for a specific version, run:

skill-cli inspect <slug> --version <version>

Read a file from a skill

Run:

skill-cli inspect <slug> --file <path>

If the user asks for a specific version, run:

skill-cli inspect <slug> --file <path> --version <version>

Open a skill page in the browser

Run:

skill-cli docs <slug>

If the user wants a specific version page, run:

skill-cli docs <slug> --version <version>

If the user wants a page focused on a specific file, run:

skill-cli docs <slug> --file <path>

Use skill-cli docs when the result should be shown in the browser for user-facing viewing.

Use skill-cli inspect when the result should be returned directly in the terminal for agent-facing reading.

Manage installed skills

List installed skills:

skill-cli list

Remove installed skills:

skill-cli remove <skill...>

Update installed skills:

skill-cli update

If a command fails

If a command fails because login is required, choose the login flow that fits the situation:

  • If a token is already available, run skill-cli login --token <token>.
  • If a user can help complete browser login, run skill-cli login.

After login finishes, rerun the original command.

If skill-cli find returns no useful result, try a tighter or simpler query and run the command again.

If skill-cli add fails, confirm the source first, then rerun the same install command.

Command patterns

Use these patterns when the user asks for a complete flow:

  1. Find then inspect: skill-cli find <query> -> skill-cli inspect <slug>
  2. Inspect then read a file: skill-cli inspect <slug> -> skill-cli inspect <slug> --file SKILL.md
  3. Find then install: skill-cli find <query> -> skill-cli add <source>
  4. Inspect then open in browser: skill-cli inspect <slug> -> skill-cli docs <slug>
  5. Review installed skills then remove one: skill-cli list -> skill-cli remove <skill>

Prefer skill-cli inspect for agent workflows because it returns the result directly in the command line.

Prefer skill-cli docs for user workflows because it opens the skill in the browser.

When No Skills Are Found

If no relevant skills exist:

  1. Acknowledge that no existing skill was found
  2. Offer to help with the task directly using your general capabilities
  3. Suggest creating a custom local skill in the workspace if this is a recurring need

See all available commands

Run:

skill-cli --help