Core Rule: All inspections MUST be executed via python3 scripts/health-inspect.py.
The script encapsulates all correct API calls internally. The AI MUST NOT call aliyun CLI directly to collect inspection data.
Do NOT call aliyun CLI to collect data: All inspection data (performance monitoring, space analysis, slow logs, etc.) must be obtained through health-inspect.py. The AI must not bypass the script by running aliyun polardb, aliyun cms, aliyun das, etc. The only aliyun commands allowed for direct AI invocation are: aliyun configure list (check credentials), aliyun version (check version), aliyun configure set (set configuration), aliyun plugin (plugin management)
Do NOT use CloudMonitor (cms) describe-metric-list / describe-metric-data: Performance monitoring data is obtained by the script via PolarDB native APIs (describe-db-cluster-performance, describe-db-node-performance, describe-db-proxy-performance). NEVER use aliyun cms describe-metric-list as a substitute
Do NOT connect to the database directly: Do not install mysql/mariadb clients, do not connect to database instances in any way, do not execute any SQL statements (including SELECT ... FROM information_schema)
Do NOT perform write operations: Do not call reset-account-password, create-account, modify-db-cluster* or any other APIs that modify instance state
Report errors on API failure: If the script fails at any step, mark it as "retrieval failed" in the report. Do NOT attempt to obtain data through alternative methods
How to Use This Skill
Usage
You do not need to run any scripts manually! This is an AI Agent skill — simply describe your needs in natural language.
Example Conversations
Example 1: Single instance inspection
text
Inspect PolarDB instance pc-bp167736gfqyn483x
Example 2: Multi-instance inspection
text
Inspect instances pc-bp167736gfqyn483x and pc-bp10yty6665u3u6a5
Example 3: Full account inspection (all instances)
text
Inspect all PolarDB MySQL instances in my account
Example 4: Specify Region
text
Inspect PolarDB instance pc-bp167736gfqyn483x in cn-hangzhou region
Example 5: Resource usage only
text
Show CPU and memory usage for pc-bp167736gfqyn483x
Maps to --item resource
Example 6: Slow logs only
text
Analyze recent slow logs for pc-bp167736gfqyn483x
Maps to --item slowlog
Example 7: Combined inspection items
text
Show slow logs and alert history for pc-bp167736gfqyn483x
Maps to --item slowlog --item alert
Example 8: Batch + specific items
text
Show CPU usage for all instances in the last 3 days
Maps to --all --days 3 --item resource
AI Behavior Rules (MUST follow)
Must use the script for inspection: All inspection operations can only be done via python3 scripts/health-inspect.py. The AI's role is: identify user intent -> assemble correct script parameters -> execute script -> present report to user. Do NOT call aliyun CLI directly to collect any inspection data
Inspection mode selection: Choose the correct execution mode based on user intent; do not manually split into multiple single-instance runs
User says "all instances" / "full account" -> use --all
User mentions "alert" / "alarm" / "warning" -> --item alert
User mentions multiple areas -> combine multiple --item (e.g., --item resource --item slowlog)
User does not specify (e.g., "run inspection" / "full check") -> do not add --item, default to full inspection
Unified output: Multi-instance (>=2) reports go to a single directory with an index page (index.html) + individual detail reports; single-instance outputs a single file
Do not manually list instances then run one by one: The script's --all has built-in instance discovery. The AI does not need to call describe-db-clusters first
On script failure: If the script reports an error at any step, relay the error message to the user. Do NOT call aliyun CLI to try alternative data retrieval methods
Do NOT ask follow-up questions after report output: This skill is inspection-only. Once the report is generated, the task is complete. Do NOT append questions like "Need further analysis?", "Shall I investigate deeper?", or any similar follow-up prompts
AI Execution Flow (follow this order strictly)
Identify user intent, select correct inspection mode and parameters
Execute python3 scripts/health-inspect.py <params> — one command completes all data collection
The script automatically handles: Region discovery, PolarDB API calls for performance data, DAS API for space analysis, slow log queries, report generation
Present the generated report file path to the user
Answer follow-up questions based on report content
Alibaba Cloud PolarDB MySQL Instance Health Inspection Skill
This skill performs comprehensive health inspection of PolarDB MySQL instances and generates standardized reports.
Inspection Dimensions:
Instance Information — Database type, version, spec, max connections, storage type
Resource Usage — CPU/memory/space/IOPS/connections average and peak values
Space Usage Details — Top 20 table space statistics
Slow Log Statistics — Slow query SQL analysis
Architecture: PolarDB MySQL + Aliyun CLI + DAS API + CloudMonitor
No mysql client needed (this skill completes all inspection via API, no direct database connection required)
Python Dependencies:
bash
# Uses only Python standard library: subprocess, json, os, sys, datetime
# All Alibaba Cloud API calls are made through aliyun CLI
Installation Verification:
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 install/update,
or see references/cli-installation-guide.md for installation instructions.
Then [MUST] run aliyun configure set --auto-plugin-install true to enable automatic plugin installation.
Then [MUST] run aliyun plugin update to ensure that any existing plugins on your local machine are always up-to-date.
[MUST] CLI User-Agent — User-Agent is handled automatically by AI-mode (see below). Do NOT manually pass --user-agent to any aliyun command.
Note:health-inspect.py already appends user-agent internally. Do NOT pass --user-agent when running the script. For direct aliyun CLI commands (aliyun configure list, aliyun version, aliyun plugin, etc.), do NOT add --user-agent either — these local commands do not support it and will fail with invalid flag. The AI-mode set-user-agent (configured in Observability Initialization below) automatically injects the user-agent into all API calls.
Observability Initialization (MUST run before any command)
[MUST] Disable AI-Mode at EVERY exit point — Before delivering the final response for ANY reason, always disable AI-mode first. This applies to ALL exit paths: workflow success, workflow failure, error/exception, user cancellation, session end, or any other scenario where no further CLI commands will be executed.
AI-mode is only used for Agent Skill invocation scenarios and MUST NOT remain enabled after the skill stops running.
bash
aliyun configure ai-mode disable
Required RAM Permissions
This skill uses read-only APIs only. No write permissions are required.
For the full permission policy and descriptions, see references/ram-policies.md.
[MUST] Permission Failure Handling: When any command or API call fails due to permission errors at any point during execution, follow this process:
Read references/ram-policies.md to get the full list of permissions required by this SKILL
Use ram-permission-diagnose skill to guide the user through requesting the necessary permissions
Pause and wait until the user confirms that the required permissions have been granted
Authentication
Pre-check: Alibaba Cloud Credentials Required
Security Rules:
NEVER read, echo, or print AK/SK values
NEVER ask the user to input AK/SK directly in the conversation or command line
ONLY use aliyun configure list to check credential status
bash
aliyun configure list
Check the output for a valid profile.
If no valid profile exists, STOP here.
Guide the user to configure credentials outside of this session.
Parameter Reference
Parameter
Required/Optional
Description
Default
DBClusterId
Required (omit with --all)
PolarDB cluster ID (pc-xxx), supports multiple
User must provide
RegionId
Optional
Instance region (auto-discovered if not provided)
Auto-discover
Days
Optional
Inspection time range (days)
7
Item
Optional
Specify inspection items (multiple allowed); omit for full inspection
PolarDB cluster ID, supports multiple; omit with --all
--all
Inspect all PolarDB MySQL instances in the current account
--region
-r
Specify Region (auto-discovers if not specified)
--days
-d
Inspection time range (days), default 7
--item
Specify inspection item (can be used multiple times); omit for full. Options: resource, space, slowlog, session, alert
--profile
-p
Specify aliyun CLI profile name
--output
-o
Specify report output directory or file path
--format
-f
Report format: html (default), markdown, text
Examples:
bash
# Single instance (auto-discover Region)
python3 scripts/health-inspect.py pc-bp167736gfqyn483x
# Multi-instance
python3 scripts/health-inspect.py pc-bp167736gfqyn483x pc-bp10yty6665u3u6a5
# All instances in account
python3 scripts/health-inspect.py --all
# All instances in specific Region
python3 scripts/health-inspect.py --all --region cn-hangzhou
# Custom time range (last 3 days)
python3 scripts/health-inspect.py --all --days 3
# Custom time range (last 30 days)
python3 scripts/health-inspect.py pc-bp167736gfqyn483x --days 30
# Resource usage only (CPU/memory/IOPS/connections)
python3 scripts/health-inspect.py pc-bp167736gfqyn483x --item resource
# Slow logs and alerts only
python3 scripts/health-inspect.py pc-bp167736gfqyn483x --item slowlog --item alert
# Batch + specific items
python3 scripts/health-inspect.py --all --item resource --item slowlog
# Custom output directory
python3 scripts/health-inspect.py --all -o /tmp/polardb_report
# Full parameters
python3 scripts/health-inspect.py pc-bp167736gfqyn483x -p myprofile -r cn-hangzhou -d 14 -o ./report
The script completes all inspection steps automatically. For multi-instance runs, reports are output to a single directory with a summary page (index.html).
For manual step-by-step API call details, see references/manual-workflow.md (only use when the script is unavailable).
For report output format templates (text + HTML/ECharts layout specs), see references/report-format.md (only reference when adjusting report styles).
Security Rules
This skill is read-only:
Do not execute any modification operations (DDL/DML)
Only provide analysis results and optimization suggestions
All modification operations must be manually confirmed and executed by the user
Reference Documents and Scripts
scripts/health-inspect.py — One-command inspection main script
scripts/find-instance-region.py — Auto-discover instance Region