SkillsMP API

Search and discover AI skills from the SkillsMP marketplace

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "SkillsMP API" with this command: npx skills add kevintsai1202/skillmp-api/kevintsai1202-skillmp-api-skillsmp-api

SkillsMP API Skill

This skill provides search functionality for the SkillsMP skill marketplace, supporting both keyword search and AI semantic search.

Prerequisites

Installation

First-time setup requires installing the requests library:

pip install requests

[!NOTE] This step only needs to be run once. Python's requests library is the only external dependency required.

API Key Configuration

Check if API Key is configured

Before running any search script, check if .env file exists:

# Check if .env exists
test -f .env && echo "Configured" || echo "Not configured"

Setup API Key

Option 1: Using setup script (Recommended)

python scripts/setup.py <API_KEY>

Option 2: Create .env file directly

Create a .env file with the following content:

SKILLSMP_API_KEY=sk_live_skillsmp_xxxxxxxxxx

[!TIP] Get your API Key from SkillsMP API Settings


Features

1. Keyword Search

Search the skill library using keywords.

Usage:

python scripts/search.py "<keyword>" [page] [per_page] [sort]

Parameters:

ParameterRequiredDescription
keywordSearch keyword
pagePage number, default: 1
per_pageItems per page, default: 20, max: 100
sortstars or recent

Examples:

# Basic search
python scripts/search.py "SEO"

# With pagination and sorting
python scripts/search.py "web scraper" 1 10 stars

2. AI Semantic Search

Use AI-powered semantic search (Cloudflare AI).

Usage:

python scripts/ai_search.py "<query>"

Parameters:

ParameterRequiredDescription
queryNatural language query

Examples:

python scripts/ai_search.py "How to create a web scraper"
python scripts/ai_search.py "skills for building REST APIs"

3. Install Helper

Search skills and get installation command suggestions.

Usage:

python scripts/install_helper.py "<keyword>" [limit]

Parameters:

ParameterRequiredDescription
keywordSkill keyword to search
limitNumber of results to show, default: 5

Examples:

python scripts/install_helper.py "spring boot"
python scripts/install_helper.py "react" 10

Output includes:

  • Skill name, author, stars, description
  • GitHub search link to find the repository
  • Installation command instructions


Skill Installation

This skill integrates with add-skill CLI to install skills directly from Git repositories.

Supported Agents

AgentIdentifierGlobal Skills Directory
Antigravityantigravity~/.gemini/antigravity/skills/
Claude Codeclaude-code~/.claude/skills/
Cursorcursor.cursor/skills/
Codexcodex.codex/skills/
OpenCodeopencode.opencode/skills/
GitHub Copilotgithub-copilot.github/copilot/skills/
Roo Coderoo.roo/skills/

Install Command References

The add-skill tool installs skills from any Git repository.

Install specific skill to global scope (User-level):

npx add-skill <owner>/<repo> --skill "<skill-name>" -g -a antigravity -y

Install ALL skills from a repo:

npx add-skill <owner>/<repo> -g -a antigravity -y

Install to project scope (Local):

npx add-skill <owner>/<repo> --skill "<skill-name>" -a antigravity -y

List available skills in a repo:

npx add-skill <owner>/<repo> --list

Complete Installation Workflow

  1. Search for skills Use the helper script to find the repository and skill name:

    python scripts/install_helper.py "spring boot"
    
  2. Verify repository content List all skills available in the repository:

    npx add-skill <owner>/<repo> --list
    
  3. Install the skill Choose one of the installation commands above. For most cases, use the Global Install:

    npx add-skill <owner>/<repo> --skill "<skill-name>" -g -a antigravity -y
    
  4. Verify Installation Check if the skill files are created in the agent's skill directory.


Response Format

Success Response:

{
  "success": true,
  "data": {
    "skills": [...]
  }
}

Error Response:

{
  "success": false,
  "error": {
    "code": "ERROR_CODE",
    "message": "Error message"
  }
}

Agent Workflow

When a user requests SkillsMP search functionality:

  1. Check if .env exists

    • If exists → Run search script directly
    • If not → Guide user through setup
  2. Guide user to get API Key

  3. Configure API Key

    • Use setup.py script or create .env file
    • Verify setup before running search

[!CAUTION] The .env file contains sensitive information and is excluded from Git. Never share or expose your API Key publicly.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

humanizer-zh-tw

No summary provided by upstream source.

Repository SourceNeeds Review
General

add-skill-installer

No summary provided by upstream source.

Repository SourceNeeds Review
General

gemini-watermark-remove

No summary provided by upstream source.

Repository SourceNeeds Review
General

Pdf To Markdown

PDF转Markdown工具。PDF文本转Markdown、表格识别转换、关键信息提取、格式美化修复、内容摘要、文档对比。PDF to Markdown converter with table recognition, info extraction, formatting, summarization, do...

Registry SourceRecently Updated
1910ckchzh