AI SummarySkyll 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. Get a specific skill: The API returns ranked skills with relevance scores (0-100):
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "skyll" skill in my project. Please run this command in my terminal: # Install skill into your project mkdir -p .claude/skills/skyll && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/skyll/SKILL.md "https://raw.githubusercontent.com/assafelovic/skyll/main/skills/skyll/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
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