find-skills
Scannednpx machina-cli add skill mcqua007/agents-skeleton/find-skills --openclawFiles (1)
SKILL.md
1.0 KB
Find Skills
Use this skill when a user asks about extending agent capabilities, finding tools for specific tasks, or when functionality might exist as a community skill.
When to Use
- User asks "how do I do X" and X might be a skill
- User asks to "find a skill for..." or "is there a skill that can..."
- User wants to extend agent capabilities
- Looking for domain-specific tooling or integrations
How to Search
- Check the skill registry at skills.sh
- Search GitHub for repositories with
.agents/skills/directories - Look for
SKILL.mdfiles in relevant repositories
Installing a Skill
npx skills add <owner/repo>
Tips
- Skills are user-level by default (
~/.agents/skills/) - Project-specific skills go in
.agents/skills/within the repo - Each skill must have a
SKILL.mdwithnameanddescriptionfrontmatter
Source
git clone https://github.com/mcqua007/agents-skeleton/blob/main/.agents/skills/find-skills/SKILL.mdView on GitHub Overview
Find-skills helps you locate installable agent capabilities when functionality might exist as a community skill. It guides you to the skill registry, repository scans for SKILL.md, and installing with a simple command.
How This Skill Works
It directs users to the skill registry and relevant repositories, then verifies that a SKILL.md exists containing a name and description. Once a suitable skill is found, installation is performed with the command: npx skills add <owner/repo>.
When to Use It
- A user asks how to do X and X might be a skill
- A user asks to 'find a skill for...' or 'is there a skill that can...'
- A user wants to extend agent capabilities
- Looking for domain-specific tooling or integrations
- A user wants to explore installable skills across registries and repos
Quick Start
- Step 1: Check the skill registry at skills.sh
- Step 2: Search GitHub for repositories with .agents/skills/ and inspect SKILL.md
- Step 3: Install the desired skill with npx skills add <owner/repo> and verify it in ~/.agents/skills/ or the project path
Best Practices
- Start by checking the skills.sh registry for vetted options
- Search GitHub for repositories containing .agents/skills/ directories
- Look for SKILL.md files with frontmatter containing name and description
- Prefer skills labeled as user-level by default (~/.agents/skills/)
- Install with npx skills add <owner/repo> and test in a safe environment
Example Use Cases
- A user asks how to automate calendar events and discovers a calendar skill, then installs it with npx skills add owner/calendar-skill
- A developer looks for a web-scraping tool as a skill and adds it to the agent via npx skills add owner/web-scrape-skill
- A team needs a payments processing capability and finds a payments skill to install
- An engineer searches for a CI or GitHub actions integration skill and installs it to streamline workflows
- A product manager explores CRM/analytics domain skills and adds a relevant skill to the agent
Frequently Asked Questions
Add this skill to your agents