skill-find

Finds, installs, and loads public Agent Skills from GitHub repositories.

1.8k|303|Updated May 14, 2025
One-click install
npx skills add https://github.com/trpc-group/trpc-agent-go --skill skill-find
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-find
Source: https://github.com/trpc-group/trpc-agent-go/tree/main/examples/skillfind/skills/skill_find
Command: npx skills add https://github.com/trpc-group/trpc-agent-go --skill skill-find

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Locating and installing a new public Agent Skill from GitHub requires manual searching, URL verification, and multi-step installation, which this Skill automates through a guided workflow.

Core Features & Use Cases

  • GitHub Skill Discovery: Searches GitHub with web_search using queries targeting SKILL.md files and skill directories.
  • Automated Installation and Loading: Calls skill_install_github with the chosen URL, then immediately loads the installed skill by its returned name.
  • Safe Execution Guardrails: Never runs downloaded code automatically and only executes skills when local execution is explicitly enabled and requested.
  • Use Case: A user asks for a skill that converts Markdown to slides; the agent searches GitHub, installs a matching public skill, loads it, and reports what was installed and where it came from.

Quick Start

Find a public Agent Skill on GitHub for generating slide decks, install it, and load it for me.

Frequently Asked Questions about skill-find

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find and install an Agent Skill from GitHub?

Search GitHub with web_search using queries that mention SKILL.md, the topic, and site:github.com, then pass the chosen URL to skill_install_github. After installation, call skill_load with the returned skill_name to activate it.

What makes a good GitHub search query for finding Agent Skills?

Include the keyword SKILL.md, the requested topic, and site:github.com in the query. Prefer results pointing directly to a skill directory or SKILL.md page rather than a repository home page.

Does the skill run downloaded code automatically after installation?

No, downloaded code is never run automatically. Execution via skill_run only happens when local execution is explicitly enabled for the demo and the user asked for a runnable demo.

What should I do if skill installation from GitHub fails?

Explain the failure briefly to the user and try another candidate from the search results. Prefer small public skills with a clear SKILL.md to reduce the chance of installation problems.

How do I know which files an installed skill contains?

The skill_install_github tool result may include installed_files listing what was installed. Use these to identify entrypoints such as run.sh or scripts under the scripts/ directory instead of guessing.