find-skills
정보
이 스킬은 개발자가 마켓플레이스에서 에이전트 스킬을 탐색, 검색 및 설치할 수 있도록 합니다. 패키지 관리자 역할을 하며, 사용자가 샌드박스와 같은 특정 기능이 필요하거나 작업 수행 방법을 물을 때 특히 유용합니다. 사용자가 설치 가능한 기능을 찾거나 관련 트리거 문구를 언급할 때 이 스킬을 사용하세요.
빠른 설치
Claude Code
추천npx skills add agentbay-ai/agentbay-skills -a claude-code/plugin add https://github.com/agentbay-ai/agentbay-skillsgit clone https://github.com/agentbay-ai/agentbay-skills.git ~/.claude/skills/find-skillsClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Find Skills - Skill Marketplace
This skill allows you to explore and install new capabilities into the agent environment. It acts as the "package manager" for your agent's skills.
When to Use This Skill
Use this skill when the user:
- Asks: "How can I do X?", "Find a skill for X", or "What skills are available?"
- Wants to install skills by name or from search results ("install skill web-search")
- Wants to extend capabilities with specialized tools or workflows
- Expresses needs for specific capabilities that might exist as skills
- Is interested in sandbox or secure execution ("I want to safely run bash commands")
- Mentions specific capabilities like "sandbox", "automation", "testing"
Core Tools
- Search: Python script
scripts/request.pywith POPRequest class- Makes authenticated API calls to Alibaba Cloud skill marketplace
- Parameters:
UserQuery(search term),TopK(number of results) - Returns: JSON response with skill details including name, description, repository info
- Install:
npx skills add <repo> -s <skill_name>- Restriction: Must ALWAYS ask for user confirmation before executing.
- Use
-s, --skill <skills...>to specify which skill(s) to install from the repo - Supports multiple repo formats:
- GitHub shorthand:
npx skills add owner/repo -s skill_name - Full GitHub URL:
npx skills add https://github.com/owner/repo -s skill_name - Direct path to skill:
npx skills add https://github.com/owner/repo/tree/main/skills/skill_name - GitLab URL:
npx skills add https://gitlab.com/org/repo -s skill_name - Git URL:
npx skills add [email protected]:owner/repo.git -s skill_name - Local path:
npx skills add ./my-local-skills -s skill_name
- GitHub shorthand:
- Use
-s '*'to install all skills from the repo
Workflow
Step 1: Understand the Need & Search
When a user asks for help with something, identify:
- The domain or task (e.g., running code safely, automation, testing)
- Whether this is a common enough need that a skill likely exists
- Does the query fit common sandbox/secure execution needs?
Step 2: Search for Skills via Python API
The search process uses the Python request module to query the skill marketplace:
- Import the POPRequest class from scripts/request.py
- Create a request with the SearchPublicMarketSkill action
- Set query parameters: UserQuery (search term) and TopK (max results)
- Execute the request and parse JSON response
- Extract skill information: name, owner, repository, description
Convert user's natural language intent into a concise search keyword (maintaining the original language).
from scripts.request import POPRequest
import json
# Create request
request = POPRequest(
http_method='GET',
canonical_uri='/',
x_acs_action='SearchPublicMarketSkill',
host='wuyingai.cn-shanghai.aliyuncs.com',
base_url='wuyingai.cn-shanghai.aliyuncs.com',
x_acs_version='2026-01-08',
signature_version='1.0'
)
# Search for skills
request.set_query_params({
'UserQuery': 'sandbox', # User's search query
'TopK': '10'
})
# Execute and parse
response = request.call()
results = json.loads(response)
Example Searches:
- "我需要一个沙箱" -> UserQuery: "sandbox"
- "如何处理 PDF?" -> UserQuery: "pdf"
- "帮我找个代码审查的插件" -> UserQuery: "code review"
- "I need a sandbox" -> UserQuery: "sandbox"
- "How to handle PDF?" -> UserQuery: "pdf"
- "Can you help me with code review?" -> UserQuery: "code review"
Step 3: Present Options to the User
When you find relevant skills, present them to the user with:
- skill_name: The identifier for the skill
- skill_id: The hash code for the skill
- skill_repo: Owner/organization for the GitHub repo
- description: Brief description of skill
- source_url: Direct path to a skill in a repo (use this for installation)
Use the returned SourceUrl (repo URL) and SkillName from the search results to format the install command:
npx skills add <source_url> -s <skill_name>
Example response:
I found a skill that might help! The "vercel-react-best-practices" skill provides
React and Next.js performance optimization guidelines from Vercel Engineering.
To install it:
npx skills add https://github.com/vercel-labs/agent-skills -s vercel-react-best-practices
Learn more: https://pre-agentbay.console.aliyun.com/agentbay-skills/skill-detail?skillId=hw8edas7skphamvk
Step 4: Offer to Install
Only after user says "yes", "install", or similar confirmation, install the skill:
npx skills add <source_url> -s <skill_name>
Common Skill Categories
When searching, consider these common categories:
| Category | Example Queries |
|---|---|
| Web Development | react, nextjs, typescript, css, tailwind |
| Testing | testing, jest, playwright, e2e |
| DevOps | deploy, docker, kubernetes, ci-cd |
| Documentation | docs, readme, changelog, api-docs |
| Code Quality | review, lint, refactor, best-practices |
| Design | ui, ux, design-system, accessibility |
| Productivity | workflow, automation, git |
| Sandbox | agentbay-aio-skills |
Tips for Effective Searches
- Use specific keywords: "react testing" is better than just "testing"
- Try alternative terms: If "deploy" doesn't work, try "deployment" or "ci-cd"
- Check popular sources: Many skills come from
vercel-labs/agent-skillsorComposioHQ/awesome-claude-skills
When No Skills Are Found
If no relevant skills exist:
- Acknowledge that no existing skill was found
- Offer to help with the task directly using your general capabilities
Example:
I searched for skills related to "xyz" but didn't find any matches.
I can still help you with this task directly! Would you like me to proceed?
If this is something you do often, you could create your own skill:
npx skills init my-xyz-skill
Safety Guidelines
- Do not hallucinate skill names. Only recommend what the Python search API returns.
- Ensure the user understands that installing a skill grants the agent new permissions.
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
