返回技能列表

find-skills

agentbay-ai
更新于 2 days ago
6 次查看
40
2
40
在 GitHub 上查看
ai

关于

This skill enables developers to discover, search for, and install agent skills from the marketplace. It acts as a package manager, particularly useful when a user needs specific functionality like sandboxes or asks how to perform a task. Use it when the user is looking for installable capabilities or mentions related trigger phrases.

快速安装

Claude Code

推荐
主要方式
npx skills add agentbay-ai/agentbay-skills -a claude-code
插件命令备选方式
/plugin add https://github.com/agentbay-ai/agentbay-skills
Git 克隆备选方式
git clone https://github.com/agentbay-ai/agentbay-skills.git ~/.claude/skills/find-skills

在 Claude 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

  1. Search: Python script scripts/request.py with 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
  2. 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
    • 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:

  1. The domain or task (e.g., running code safely, automation, testing)
  2. Whether this is a common enough need that a skill likely exists
  3. 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:

  1. Import the POPRequest class from scripts/request.py
  2. Create a request with the SearchPublicMarketSkill action
  3. Set query parameters: UserQuery (search term) and TopK (max results)
  4. Execute the request and parse JSON response
  5. 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:

  1. skill_name: The identifier for the skill
  2. skill_id: The hash code for the skill
  3. skill_repo: Owner/organization for the GitHub repo
  4. description: Brief description of skill
  5. 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:

CategoryExample Queries
Web Developmentreact, nextjs, typescript, css, tailwind
Testingtesting, jest, playwright, e2e
DevOpsdeploy, docker, kubernetes, ci-cd
Documentationdocs, readme, changelog, api-docs
Code Qualityreview, lint, refactor, best-practices
Designui, ux, design-system, accessibility
Productivityworkflow, automation, git
Sandboxagentbay-aio-skills

Tips for Effective Searches

  1. Use specific keywords: "react testing" is better than just "testing"
  2. Try alternative terms: If "deploy" doesn't work, try "deployment" or "ci-cd"
  3. Check popular sources: Many skills come from vercel-labs/agent-skills or ComposioHQ/awesome-claude-skills

When No Skills Are Found

If no relevant skills exist:

  1. Acknowledge that no existing skill was found
  2. 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 仓库

agentbay-ai/agentbay-skills
路径: find-skills
0

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

polymarket

这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。

查看技能

creating-opencode-plugins

该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。

查看技能

sglang

SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。

查看技能