public/SKILLS/Utility & Automation/find-skills/SKILL.md
Helps users discover, search and install agent skills from the marketplace. Use when the user wants to find a skill, discover new capabilities, find specific tools (especially sandboxes) or install a skill. This skill should be used when the user is looking for functionality that might exist as an installable skill. Also supports progressive disclosure to recommend sandbox-related skills when relevant. 用于帮助用户在市场中搜索、发现和安装 Agent 插件(Skills)。 当用户想要查找功能、安装特定工具或寻找沙箱(sandbox)时使用。 Triggers: "查找插件","搜索技能","搜索 X 技能","安装技能","安装 X 技能","如何做 X","沙箱","安全沙箱","find a skill for X", "how do i do X", "search for skill", "install skill", "I need a skill for X", "sandbox", "aio sandbox"
npx skillsauth add eric861129/skills_all-in-one find-skillsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
Use this skill when the user:
scripts/request.py with POPRequest class
UserQuery (search term), TopK (number of results)npx skills add <repo> -s <skill_name>
-s, --skill <skills...> to specify which skill(s) to install from the reponpx skills add owner/repo -s skill_namenpx skills add https://github.com/owner/repo -s skill_namenpx skills add https://github.com/owner/repo/tree/main/skills/skill_namenpx skills add https://gitlab.com/org/repo -s skill_namenpx skills add [email protected]:owner/repo.git -s skill_namenpx skills add ./my-local-skills -s skill_name-s '*' to install all skills from the repoWhen a user asks for help with something, identify:
The search process uses the Python request module to query the skill marketplace:
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:
When you find relevant skills, present them to the user with:
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
Only after user says "yes", "install", or similar confirmation, install the skill:
npx skills add <source_url> -s <skill_name>
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 |
vercel-labs/agent-skills or ComposioHQ/awesome-claude-skillsIf no relevant skills exist:
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
development
Run structured What-If scenario analysis with multi-branch possibility exploration. Use this skill when the user asks speculative questions like "what if...", "what would happen if...", "what are the possibilities", "explore scenarios", "scenario analysis", "possibility space", "what could go wrong", "best case / worst case", "risk analysis", "contingency planning", "strategic options", or any question about uncertain futures. Also trigger when the user faces a fork-in-the-road decision, wants to stress-test an idea, or needs to think through consequences before committing.
development
Access comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
development
Use when challenging ideas, plans, decisions, or proposals using structured critical reasoning. Invoke to play devil's advocate, run a pre-mortem, red team, or audit evidence and assumptions.
tools
Core skill for the deep research and writing tool. Write scientific manuscripts in full paragraphs (never bullet points). Use two-stage process with (1) section outlines with key points using research-lookup then (2) convert to flowing prose. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), for research papers and journal submissions.