Loading...
Loading...
Use this skill when users want to search, discover, browse, or find Alibaba Cloud (阿里云) agent skills. Triggers include: "find a skill for X", "search alicloud skills", "阿里云有什么 skill", "搜索阿里云技能", "有没有管理 ECS/RDS/OSS 的 skill", "阿里云 skills 有哪些类目", "帮我找一个 skill", "browse alicloud skills", "list alicloud skill categories", "is there an alicloud skill that can...", "what alicloud skills are available", "XX Skill 的内容是什么", "我想了解阿里云 XX Skill 具体做什么", "阿里云 agent skill 市场", "搜一下阿里云的 skill".
npx skill4agent add aliyun/alibabacloud-aiops-skills alibabacloud-find-skillsagentexplorerPre-check: Aliyun CLI >= 3.3.1 requiredRunto verify >= 3.3.1. If not installed or version too low, see references/cli-installation-guide.md for installation instructions. Then [MUST] runaliyun versionto enable automatic plugin installation.aliyun configure set --auto-plugin-install true
# Install the agentexplorer plugin
aliyun plugin install --names agentexplorer
# Verify installation
aliyun agentexplorer --help --user-agent AlibabaCloud-Agent-SkillsPre-check: Alibaba Cloud Credentials RequiredSecurity Rules:
- NEVER read, echo, or print AK/SK values (e.g.,
is FORBIDDEN)echo $ALIBABA_CLOUD_ACCESS_KEY_ID- NEVER ask the user to input AK/SK directly in the conversation or command line
- NEVER use
with literal credential valuesaliyun configure set- ONLY use
to check credential statusaliyun configure listbashaliyun configure list --user-agent AlibabaCloud-Agent-SkillsCheck the output for a valid profile (AK, STS, or OAuth identity).If no valid profile exists, STOP here.
- Obtain credentials from Alibaba Cloud Console
- Configure credentials outside of this session (via
in terminal or environment variables in shell profile)aliyun configure- Return and re-run after
shows a valid profilealiyun configure list
agentexplorer:ListCategoriesagentexplorer:SearchSkillsagentexplorer:GetSkillContent[MUST] Permission Failure Handling: When any command or API call fails due to permission errors at any point during execution, follow this process:
- Read
to get the full list of permissions required by this SKILLreferences/ram-policies.md- Use
skill to guide the user through requesting the necessary permissionsram-permission-diagnose- Pause and wait until the user confirms that the required permissions have been granted
IMPORTANT: Parameter Confirmation — Before executing any command or API call, ALL user-customizable parameters (e.g., keyword, category-code, skill-name, max-results, etc.) MUST be confirmed with the user. Do NOT assume or use default values without explicit user approval.
| Parameter Name | Required/Optional | Description | Default Value |
|---|---|---|---|
| Optional | Search keyword (product name, feature name, or description) | None |
| Optional | Category code for filtering (e.g., "computing", "computing.ecs") | None |
| Optional | Maximum number of results per page (1-100) | 20 |
| Optional | Pagination token from previous response | None |
| Optional | Number of items to skip | 0 |
| Required (for get-skill-content) | Unique skill identifier | None |
# Step 1: Confirm search keyword with user
# Example: "ECS", "database backup", "OSS", "monitoring"
# Step 2: Execute search command
aliyun agentexplorer search-skills \
--keyword "<user-confirmed-keyword>" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 3: Parse and display results to user
# Show: skillName, displayName, description, categoryName, installCount, likeCount# Step 1: List all available categories
aliyun agentexplorer list-categories \
--user-agent AlibabaCloud-Agent-Skills
# Step 2: Confirm category selection with user
# Example: "computing", "database", "computing.ecs"
# Step 3: Search skills in selected category
aliyun agentexplorer search-skills \
--category-code "<user-confirmed-category>" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 4: Display results to user# Step 1: Confirm skill name with user
# (Usually obtained from previous search results)
# Step 2: Retrieve skill content
aliyun agentexplorer get-skill-content \
--skill-name "<user-confirmed-skill-name>" \
--user-agent AlibabaCloud-Agent-Skills
# Step 3: Display skill details including:
# - Full description
# - Usage instructions
# - Prerequisites
# - Examples# Step 1: Confirm skill name with user
# Step 2: Execute installation command
npx skills add aliyun/alibabacloud-skills \
--skill <user-confirmed-skill-name>
# Step 3: Verify installation success
# Check that skill appears in available skills list# Step 1: Confirm both keyword and category with user
# Step 2: Execute combined search
aliyun agentexplorer search-skills \
--keyword "<user-confirmed-keyword>" \
--category-code "<user-confirmed-category>" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 3: Display filtered results# Step 1: Execute initial search
aliyun agentexplorer search-skills \
--keyword "<keyword>" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 2: Extract nextToken from response
# Step 3: Fetch next page if user requests more results
aliyun agentexplorer search-skills \
--keyword "<keyword>" \
--max-results 20 \
--next-token "<next-token-from-previous-response>" \
--user-agent AlibabaCloud-Agent-Skillsecsrdsossslbvpclist-categoriescomputingdatabasestoragenetworkingsecuritycomputing.ecsdatabase.rdscomputing,database--max-results# Strategy 1: Try alternative keywords
# Instead of "云服务器" try "ECS" or "instance"
# Strategy 2: Remove filters
# Drop category filter, search by keyword only
# Strategy 3: Browse by category
aliyun agentexplorer list-categories --user-agent AlibabaCloud-Agent-Skills
aliyun agentexplorer search-skills --category-code "computing" --user-agent AlibabaCloud-Agent-Skills
# Strategy 4: Use broader terms
# Instead of "RDS backup automation" try just "RDS" or "database"Found N skills:
| Skill Name | Display Name | Description | Category | Install Count |
|------------|--------------|-------------|----------|---------------|
| alibabacloud-ecs-batch | ECS Batch Operations | Batch manage ECS instances | Computing > ECS | 245 |
| ... | ... | ... | ... | ... |aliyun configure listskillNamenextTokenget-skill-content# User: "Find skills for managing ECS instances"
# Step 1: Search by keyword
aliyun agentexplorer search-skills \
--keyword "ECS" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 2: Display results table
# Step 3: If user selects a skill, get details
aliyun agentexplorer get-skill-content \
--skill-name "alibabacloud-ecs-batch-command" \
--user-agent AlibabaCloud-Agent-Skills# User: "What database skills are available?"
# Step 1: List categories to show database category
aliyun agentexplorer list-categories \
--user-agent AlibabaCloud-Agent-Skills
# Step 2: Search database category
aliyun agentexplorer search-skills \
--category-code "database" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 3: Display results grouped by subcategory# User: "搜索 OSS 相关的 skill"
# Step 1: Search using Chinese or English
aliyun agentexplorer search-skills \
--keyword "OSS" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 2: Display results in user's preferred language# User: "Find backup skills for RDS"
# Step 1: Combined search
aliyun agentexplorer search-skills \
--keyword "backup" \
--category-code "database.rds" \
--max-results 20 \
--user-agent AlibabaCloud-Agent-Skills
# Step 2: Display targeted results| Reference | Description |
|---|---|
| references/ram-policies.md | Detailed RAM permission requirements |
| references/related-commands.md | Complete CLI command reference |
| references/verification-method.md | Success verification steps for each workflow |
| references/cli-installation-guide.md | Alibaba Cloud CLI installation guide |
| references/acceptance-criteria.md | Testing acceptance criteria and patterns |
| references/category-examples.md | Common category codes and examples |
aliyun plugin install --names aliyun-cli-agentexplorerlist-categoriesnextToken