بنقرة واحدة
skillsmp-api
Search and discover AI skills from the SkillsMP marketplace
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Search and discover AI skills from the SkillsMP marketplace
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
本地搜索引擎与网页内容获取工具 - 绕过WebSearch/WebFetch域名限制,支持多API搜索、代理抓取、反爬处理。触发场景:(1) WebSearch被限制 (2) WebFetch无法访问特定域名 (3) 需要获取GitHub等内容 (4) 需要处理反爬网站
Analyzes codebases to understand structure, tech stack, patterns, and conventions. Use when onboarding to a new project, exploring unfamiliar code, or when asked "how does this work?" or "what's the architecture?"
为项目构建分层式LLM友好文档体系。已有项目:扫描项目结构→架构分类→生成CLAUDE.md主索引→基础模块文档→业务模块API/数据模型/坑点文档→配置文档→git变更日志(含风险评估+回滚指南)→交叉验证。新项目:解析PRD→按脚手架规范设计架构→需求拆解为开发任务→融合代码规范生成CLAUDE.md开发指南→模块级API设计+数据模型+开发清单。当用户需要为项目创建AI编程文档、建立项目索引、梳理代码、新建项目规划、或提到llm.txt/CLAUDE.md时使用。
阿里云百炼Qwen-Image文生图API调用助手 - 用于通过阿里云百炼平台调用Qwen-Image系列模型生成高质量图像。支持同步和异步调用方式、提示词智能改写、多分辨率输出、反向提示词等高级功能。触发场景:(1) 用户需要生成图像 (2) 用户提到文生图、AI绘画 (3) 用户询问阿里云百炼图像生成 (4) 需要批量生成图片 (5) 需要定制化图像生成参数
HTML PPT Studio — author professional static HTML presentations in many styles, layouts, and animations, all driven by templates. Use when the user asks for a presentation, PPT, slides, keynote, deck, slideshow, "幻灯片", "演讲稿", "做一份 PPT", "做一份 slides", a reveal-style HTML deck, a 小红书 图文, or any kind of multi-slide pitch/report/sharing document that should look tasteful and be usable with keyboard navigation. Triggers include keywords like "presentation", "ppt", "slides", "deck", "keynote", "reveal", "slideshow", "幻灯片", "演讲稿", "分享稿", "小红书图文", "talk slides", "pitch deck", "tech sharing", "technical presentation".
Unified entry point for Stitch design work. Handles prompt enhancement (UI/UX keywords, atmosphere), design system synthesis (.stitch/DESIGN.md), and high-fidelity screen generation/editing via Stitch MCP.
| 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.