skill-finder
Search for and install agent skills from Hugging Face. Use this skill when users want to discover new skills, browse available skills on the Hub, or install skills to extend agent capabilities.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install nymbo-skills-skill-finder
Repository
Skill path: HUGGING FACE/skill-finder
Search for and install agent skills from Hugging Face. Use this skill when users want to discover new skills, browse available skills on the Hub, or install skills to extend agent capabilities.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: Nymbo.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install skill-finder into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/Nymbo/Skills before adding skill-finder to shared team environments
- Use skill-finder for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: skill-finder description: Search for and install agent skills from Hugging Face. Use this skill when users want to discover new skills, browse available skills on the Hub, or install skills to extend agent capabilities. --- # Skill Finder: Discover and Install Agent Skills from Hugging Face ## Overview Agent skills are packaged instructions and resources hosted on Hugging Face Spaces with the `agent-skill` tag. Use the Hugging Face MCP tools to search and install them. ## Searching for Skills Use the `hf_space_search` MCP tool to find skills: ```python # Search for all skills hf_space_search(filter="agent-skill") # Search with keywords hf_space_search(filter="agent-skill", search="training") ``` ## Installing Skills Use the `hf_download` MCP tool to download a skill: ```python # Download a skill space hf_download(repo_id="hf-skills/llm-trainer", repo_type="space", local_dir=".claude/skills/llm-trainer") ``` ## Skill Structure A valid skill contains a `SKILL.md` file with YAML front matter: ```markdown --- name: my-skill-name description: When to use this skill and what it does. --- # Instructions for the agent... ``` Optional directories: `scripts/`, `references/`, `templates/`