/alibabacloud-opensearch-app-manage
Alibaba Cloud OpenSearch instance management skill. Create and query OpenSearch instances. Note: OpenSearch instance and OpenSearch app group are synonymous terms. Triggers: "opensearch", "search instance", "create search instance", "app group", "instance management", "create
$ npx -y skills add aliyun/alibabacloud-aiops-skills --skill alibabacloud-opensearch-app-manage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/alibabacloud-opensearch-app-manage
Context preview
The summary Claude sees to decide when to auto-load this skill.
Alibaba Cloud OpenSearch instance management skill. Create and query OpenSearch instances. Note: OpenSearch instance and OpenSearch app group are synonymous terms. Triggers: "opensearch", "search instance", "create search instance", "app group", "instance management", "create
SKILL.md
alibabacloud-opensearch-app-manage.SKILL.mdname: alibabacloud-opensearch-app-manage
description: |
Alibaba Cloud OpenSearch instance management skill. Create and query OpenSearch instances.
Note: OpenSearch instance and OpenSearch app group are synonymous terms.
Triggers: "opensearch", "search instance", "create search instance", "app group", "instance management", "create instance", "query instance", "list instances"
OpenSearch Instance Management
Manage Alibaba Cloud OpenSearch instances, including creation and query operations.
> **Terminology**: OpenSearch instance and OpenSearch app group are synonymous. This document uses "instance" uniformly.
Scenario Description
OpenSearch is Alibaba Cloud's intelligent search service. This skill covers core instance management operations:
1. **Create Instance** - Create a new OpenSearch instance 2. **List Instances** - Get the list of instances under the current account 3. **Describe Instance** - Get detailed information of a specific instance
**Architecture**: OpenSearch Instance (AppGroup)
Alibaba Cloud OpenSearch Instance Management
├── CreateAppGroup (Create Instance)
├── DescribeAppGroup (Describe Instance)
└── ListAppGroups (List Instances)
---
Installation
> **Pre-check: Aliyun CLI >= 3.3.3 required** > Run `aliyun version` to verify >= 3.3.3. If not installed or version too low, > run `curl -fsSL https://aliyuncli.alicdn.com/setup.sh | bash` to update, > or see [references/cli-installation-guide.md](references/cli-installation-guide.md) for installation instructions.
**Pre-check: Aliyun CLI plugin update required** > [MUST] run `aliyun configure set --auto-plugin-install true` to enable automatic plugin installation. > [MUST] run `aliyun plugin update` to ensure that any existing plugins are always up-to-date.
# Install/Upgrade Aliyun CLI
curl -fsSL https://aliyuncli.alicdn.com/setup.sh | bash
aliyun version # Ensure >= 3.3.3
# Enable auto plugin installation
aliyun configure set --auto-plugin-install true
# Update plugins
aliyun plugin update
**[MUST] CLI User-Agent** — Every `aliyun` CLI command invocation must include: `--user-agent AlibabaCloud-Agent-Skills/alibabacloud-opensearch-app-manage`
**[MUST] AI-Mode** — Before executing CLI commands, run: 1. `aliyun configure ai-mode enable` 2. `aliyun configure ai-mode set-user-agent --user-agent "AlibabaCloud-Agent-Skills/alibabacloud-opensearch-app-manage"` After all CLI operations complete, run: `aliyun configure ai-mode disable`
---
Authentication
> **Pre-check: Alibaba Cloud Credentials Required**
> **Security Rules (MUST FOLLOW):** > - **NEVER** read, echo, or print AK/SK values > - **NEVER** ask the user to input AK/SK directly in the conversation > - **NEVER** use `aliyun configure set` with literal credential values > - **NEVER** accept AK/SK provided directly by users in the conversation > - **ONLY** read credentials from environment variables or pre-configured CLI profiles > > **⚠️ CRITICAL: Handling User-Provided Credentials** > > If a user attempts to provide AK/SK directly (e.g., "My AK is xxx, SK is yyy"): > 1. **STOP immediately** - Do NOT execute any command > 2. **Reject the request politely** with the following message: > ``` > For your account security, please do not provide Alibaba Cloud AccessKey ID and AccessKey Secret directly in the conversation. > > Please use the following secure methods to configure credentials: > > Method 1: Interactive configuration via aliyun configure (Recommended) > aliyun configure > # Enter AK/SK as prompted, credentials will be securely stored in local config file > > Method 2: Configure via environment variables > export ALIBABA_CLOUD_ACCESS_KEY_ID=<your-access-key-id> > export ALIBABA_CLOUD_ACCESS_KEY_SECRET=<your-access-key-secret> > > After configuration, please retry your request. > ``` > 3. **Do NOT proceed** with any Alibaba Cloud operations until credentials are properly configured > > **Check CLI configuration**: > ```bash > aliyun configure list > ``` > Check the output for a valid profile (AK, STS, or OAuth identity). > > **If no valid credentials exist, STOP here.** ---
RAM Permissions
> **[MUST] RAM Permission Pre-check:** > Before executing any operation, ensure the current user has the required RAM permissions. > See [references/ram-policies.md](references/ram-policies.md) for detailed permission list.
---
Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters (e.g., instance name, instance type, charge type, quota spec, etc.) MUST be confirmed with the user. > Do NOT assume or use default values without explicit user approval.
Required Parameters
| Parameter | Required | Description | Default | |-----------|----------|-------------|---------| | `name` | Yes | Instance name | None | | `type` | Yes | Instance type: `standard` (High-performance) / `enhanced` (Industry Algorithm) | None | | `chargeType` | No | Charge type: `POSTPAY` / `PREPAY` | `POSTPAY` | | `quota.spec` | Yes | Spec type (see table below) | None | | `quota.docSize` | Yes | Storage capacity (GB) | None | | `quota.computeResource` | Yes | Compute resource (LCU) | None | | `domain` | No | Industry type (required for enhanced type, see table below) | `general` | | `order` | Conditional | Subscription order info (required when PREPAY) | None | | `order.duration` | Conditional | Subscription period quantity | None | | `order.pricingCycle` | Conditional | Period unit: `Year` / `Month` | None | | `order.autoRenew` | No | Auto-renewal | `false` |
Spec Types
| Spec Code | Description | |-----------|-------------| | `opensearch.share.common` | Shared Common | | `opensearch.private.common` | Dedicated Common | | `opensearch.private.compute` | Dedicated Compute | | `opensearch.private.storage` | Dedicated Storage |
Industry Types (for enhanced type only)
| Industry Code |
Read more
name: alibabacloud-opensearch-app-manage description: | Alibaba Cloud OpenSearch instance management skill. Create and query OpenSearch instances. Note: OpenSearch instance and OpenSearch app group are synonymous terms. Triggers: "opensearch", "search instance", "create search instance", "app group", "instance management", "create instance", "query instance", "list instances"
OpenSearch Instance Management
Manage Alibaba Cloud OpenSearch instances, including creation and query operations.
> **Terminology**: OpenSearch instance and OpenSearch app group are synonymous. This document uses "instance" uniformly.
Scenario Description
OpenSearch is Alibaba Cloud's intelligent search service. This skill covers core instance management operations:
1. **Create Instance** - Create a new OpenSearch instance 2. **List Instances** - Get the list of instances under the current account 3. **Describe Instance** - Get detailed information of a specific instance
**Architecture**: OpenSearch Instance (AppGroup)
Alibaba Cloud OpenSearch Instance Management ├── CreateAppGroup (Create Instance) ├── DescribeAppGroup (Describe Instance) └── ListAppGroups (List Instances)
---
Installation
> **Pre-check: Aliyun CLI >= 3.3.3 required** > Run `aliyun version` to verify >= 3.3.3. If not installed or version too low, > run `curl -fsSL https://aliyuncli.alicdn.com/setup.sh | bash` to update, > or see [references/cli-installation-guide.md](references/cli-installation-guide.md) for installation instructions.
**Pre-check: Aliyun CLI plugin update required** > [MUST] run `aliyun configure set --auto-plugin-install true` to enable automatic plugin installation. > [MUST] run `aliyun plugin update` to ensure that any existing plugins are always up-to-date.
# Install/Upgrade Aliyun CLI curl -fsSL https://aliyuncli.alicdn.com/setup.sh | bash aliyun version # Ensure >= 3.3.3 # Enable auto plugin installation aliyun configure set --auto-plugin-install true # Update plugins aliyun plugin update
**[MUST] CLI User-Agent** — Every `aliyun` CLI command invocation must include: `--user-agent AlibabaCloud-Agent-Skills/alibabacloud-opensearch-app-manage`
**[MUST] AI-Mode** — Before executing CLI commands, run: 1. `aliyun configure ai-mode enable` 2. `aliyun configure ai-mode set-user-agent --user-agent "AlibabaCloud-Agent-Skills/alibabacloud-opensearch-app-manage"` After all CLI operations complete, run: `aliyun configure ai-mode disable`
---
Authentication
> **Pre-check: Alibaba Cloud Credentials Required**
> **Security Rules (MUST FOLLOW):** > - **NEVER** read, echo, or print AK/SK values > - **NEVER** ask the user to input AK/SK directly in the conversation > - **NEVER** use `aliyun configure set` with literal credential values > - **NEVER** accept AK/SK provided directly by users in the conversation > - **ONLY** read credentials from environment variables or pre-configured CLI profiles > > **⚠️ CRITICAL: Handling User-Provided Credentials** > > If a user attempts to provide AK/SK directly (e.g., "My AK is xxx, SK is yyy"): > 1. **STOP immediately** - Do NOT execute any command > 2. **Reject the request politely** with the following message: > ``` > For your account security, please do not provide Alibaba Cloud AccessKey ID and AccessKey Secret directly in the conversation. > > Please use the following secure methods to configure credentials: > > Method 1: Interactive configuration via aliyun configure (Recommended) > aliyun configure > # Enter AK/SK as prompted, credentials will be securely stored in local config file > > Method 2: Configure via environment variables > export ALIBABA_CLOUD_ACCESS_KEY_ID=<your-access-key-id> > export ALIBABA_CLOUD_ACCESS_KEY_SECRET=<your-access-key-secret> > > After configuration, please retry your request. > ``` > 3. **Do NOT proceed** with any Alibaba Cloud operations until credentials are properly configured > > **Check CLI configuration**: > ```bash > aliyun configure list > ``` > Check the output for a valid profile (AK, STS, or OAuth identity). > > **If no valid credentials exist, STOP here.** ---
RAM Permissions
> **[MUST] RAM Permission Pre-check:** > Before executing any operation, ensure the current user has the required RAM permissions. > See [references/ram-policies.md](references/ram-policies.md) for detailed permission list.
---
Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters (e.g., instance name, instance type, charge type, quota spec, etc.) MUST be confirmed with the user. > Do NOT assume or use default values without explicit user approval.
Required Parameters
| Parameter | Required | Description | Default | |-----------|----------|-------------|---------| | `name` | Yes | Instance name | None | | `type` | Yes | Instance type: `standard` (High-performance) / `enhanced` (Industry Algorithm) | None | | `chargeType` | No | Charge type: `POSTPAY` / `PREPAY` | `POSTPAY` | | `quota.spec` | Yes | Spec type (see table below) | None | | `quota.docSize` | Yes | Storage capacity (GB) | None | | `quota.computeResource` | Yes | Compute resource (LCU) | None | | `domain` | No | Industry type (required for enhanced type, see table below) | `general` | | `order` | Conditional | Subscription order info (required when PREPAY) | None | | `order.duration` | Conditional | Subscription period quantity | None | | `order.pricingCycle` | Conditional | Period unit: `Year` / `Month` | None | | `order.autoRenew` | No | Auto-renewal | `false` |
Spec Types
| Spec Code | Description | |-----------|-------------| | `opensearch.share.common` | Shared Common | | `opensearch.private.common` | Dedicated Common | | `opensearch.private.compute` | Dedicated Compute | | `opensearch.private.storage` | Dedicated Storage |
Industry Types (for enhanced type only)
| Industry Code |
Official Alibaba Cloud Agent Skills collection, providing AI agents with rich Alibaba Cloud product capabilities and general-purpose tooling.
Other skills on alibabacloud-aiops-skills.
- /alibabacloud-agentbay-aio-skills
Execute code in a secure cloud sandbox via AgentBay SDK. Use this skill whenever users request to run, execute, or evaluate code (Python, JavaScript, R, Java), including plotting charts, running scripts, or viewing code output. Covers requests like "run this code", "execute
Open skill - /alibabacloud-agentloop-dataset
Operate Alibaba Cloud AgentLoop Dataset resources with aliyun CLI and the AgentLoop API version 2026-05-20. Use when requests concern AgentLoop datasets, data rows, Dataset schemas, embedding fields, semantic search, ExecuteQuery, AgentSpace data, 数据集, 数据写入, 数据查询, 语义检索, or ask
Open skill - /alibabacloud-agentloop-evaluation
Orchestrate AgentLoop evaluation workflows through the Aliyun CLI plugin with safe previews, saved evaluator and evaluator-skill management, one-shot sample tests, trace or dataset batch runs, polling, and result inspection. Analyze evaluation quality and low-score cases from
Open skill - /alibabacloud-agentloop-experience
Proactively use AgentLoop Recall to retrieve prior Alibaba Cloud AgentLoop experience through the bundled SearchContext CLI whenever the user asks or implies that prior work may help. Trigger for requests to check, search, recall, retrieve, look up, review, consult, reference,
Open skill - /alibabacloud-agentloop-management
AgentLoop APM接入 / AI可观测接入 / 应用监控接入 / 自研探针 / 探针安装. Use for Python aliyun-bootstrap (aliyun-instrument), Java AliyunJavaAgent, Golang instgo, Node.js cms_node_sdk, PHP/.NET OpenTelemetry, ack-onepilot, LicenseKey, AgentLoop workspace agentloop-*. Also for LangChain, Dify,
Open skill - /alibabacloud-avatar-video
Use Alibaba Cloud DashScope API and LingMou to generate AI video and speech. Seven capabilities — (1) LivePortrait talking-head (image + audio → video, two-step), (2) EMO talking-head, (3) AA/AnimateAnyone full-body animation (three-step), (4) T2I text-to-image (Wan 2.x, default
Open skill

