Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "skyll" skill in my project. Repository: https://github.com/assafelovic/skyll Please read the repo to find the SKILL.md file(s), then: 1. Download them into the correct skills directory (.claude/skills/ or .cursor/skills/) 2. Include any companion files referenced by the skill 3. Confirm what was installed and where
Description
Search and retrieve agent skills at runtime. This skill should be used when the agent needs to find specialized capabilities, workflows, or domain knowledge to accomplish a task. Skyll aggregates skills from skills.sh and returns full SKILL.md content ready for context injection.
Skyll - Agent Skill Discovery
Skyll enables agents to dynamically discover and retrieve skills at runtime. Instead of having all skills pre-loaded, agents can search for relevant skills on-demand and inject them into context.
When to Use This Skill
Use Skyll when: • The current task requires specialized knowledge or workflows not in context • Looking for best practices for a specific framework, library, or domain • Needing procedural knowledge for complex multi-step tasks • Wanting to enhance capabilities with community-contributed skills
Option 1: Python Client (Recommended)
`python from skyll import Skyll async with Skyll() as client: # Search for relevant skills skills = await client.search("react performance optimization", limit=3) for skill in skills: print(f"Skill: {skill.title}") print(f"Score: {skill.relevance_score}") print(skill.content) # Full SKILL.md content `
Option 2: REST API
Search for skills: `bash curl "https://api.skyll.app/search?q=react+performance&limit=3" ` Get a specific skill: `bash curl "https://api.skyll.app/skills/anthropics/skills/skill-creator" `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
