소스 정보
- 저장소
- kevintsai1202/skillmp-api
- 최근 소스 활동
- 2026년 1월 18일 05:55
- 감지된 SKILL.md 언어
- 영어
- 스타
- 6
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/kevintsai1202/skillmp-api --skill skillsmp-api명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | SkillsMP API |
| description | Search and discover AI skills from the SkillsMP marketplace |
This skill provides search functionality for the SkillsMP skill marketplace, supporting both keyword search and AI semantic search.
pip install requests)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.
Before running any search script, check if .env file exists:
# Check if .env exists
test -f .env && echo "Configured" || echo "Not configured"
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
Search the skill library using keywords.
Usage:
python scripts/search.py "<keyword>" [page] [per_page] [sort]
Parameters:
| Parameter | Required | Description |
|---|---|---|
| keyword | ✓ | Search keyword |
| page | Page number, default: 1 | |
| per_page | Items per page, default: 20, max: 100 | |
| sort | stars or recent |
Examples:
# Basic search
python scripts/search.py "SEO"
# With pagination and sorting
python scripts/search.py "web scraper" 1 10 stars
Use AI-powered semantic search (Cloudflare AI).
Usage:
python scripts/ai_search.py "<query>"
Parameters:
| Parameter | Required | Description |
|---|---|---|
| query | ✓ | Natural language query |
Examples:
python scripts/ai_search.py "How to create a web scraper"
python scripts/ai_search.py "skills for building REST APIs"
Search skills and get installation command suggestions.
Usage:
python scripts/install_helper.py "<keyword>" [limit]
Parameters:
| Parameter | Required | Description |
|---|---|---|
| keyword | ✓ | Skill keyword to search |
| limit | Number of results to show, default: 5 |
Examples:
python scripts/install_helper.py "spring boot"
python scripts/install_helper.py "react" 10
Output includes:
This skill integrates with add-skill CLI to install skills directly from Git repositories.
| Agent | Identifier | Global Skills Directory |
|---|---|---|
| Antigravity | antigravity | ~/.gemini/antigravity/skills/ |
| Claude Code | claude-code | ~/.claude/skills/ |
| Cursor | cursor | .cursor/skills/ |
| Codex | codex | .codex/skills/ |
| OpenCode | opencode | .opencode/skills/ |
| GitHub Copilot | github-copilot | .github/copilot/skills/ |
| Roo Code | roo | .roo/skills/ |
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
Search for skills Use the helper script to find the repository and skill name:
python scripts/install_helper.py "spring boot"
Verify repository content List all skills available in the repository:
npx add-skill <owner>/<repo> --list
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
Verify Installation Check if the skill files are created in the agent's skill directory.
Success Response:
{
"success": true,
"data": {
"skills": [...]
}
}
Error Response:
{
"success": false,
"error": {
"code": "ERROR_CODE",
"message": "Error message"
}
}
When a user requests SkillsMP search functionality:
Check if .env exists
Guide user to get API Key
Configure API Key
setup.py script or create .env file[!CAUTION] The
.envfile contains sensitive information and is excluded from Git. Never share or expose your API Key publicly.