Skip to main content

Skill Lookup

The Skill Lookup skill provides context injection for discovering skills from the Agent Skills Marketplace (SkillsMP).

Overview

PropertyValue
Skill IDct-skill-lookup
Tier3 (Support)
Protocolresearch
Tagsskills, discovery

SkillsMP Integration

CLEO integrates with the Agent Skills Marketplace (agentskills.in API) for discovering external skills from a marketplace of 100,000+ agent skills.

Search Commands

Search Marketplace

# Search for skills
cleo skills search "rust" --mp

# Human-readable output
cleo skills search "authentication" --mp --human

# Search both local and marketplace
cleo skills search "query" --source all

View Installed Skills

# List marketplace-installed skills
cleo skills installed

# JSON output
cleo skills installed --json

Check for Updates

# Check all skills for updates
cleo skills update

# Check specific skill
cleo skills update rust-async-patterns

Search Results

Results include:
FieldDescription
nameSkill name
authorGitHub username
scopedNameFull identifier (@author/name)
descriptionSkill description
starsGitHub repository stars
categorySkill category

Installation

# Install to project
cleo skills install @author/skill-name --mp

# Install globally
cleo skills install @author/skill-name --mp --global

Quality Indicators

IndicatorGood Sign
Stars>1000 indicates wide usage
AuthorKnown authors (anthropics, wshobson)
DescriptionClear, specific use cases
RepositoryActive maintenance

Workflow Example

# 1. Search for relevant skills
cleo skills search "rust cli" --mp --human

# 2. Install useful skill
cleo skills install @wshobson/rust-async-patterns --mp

# 3. Use the skill
@skills/mp/rust-async-patterns/SKILL.md
Build a calculator CLI in Rust.

Categories

CategoryExamples
devopsCI/CD, deployment, infrastructure
backendAPIs, databases, authentication
frontendReact, Vue, styling
documentationREADME generation, API docs
securityAuditing, vulnerability scanning
testingUnit tests, integration tests