/alibabacloud-pts-reporter
Alibaba Cloud PTS report analyzer worker skill — analyzes past PTS stress-testing reports (HistoryReportId), identifies report-observable performance issues (PTS client config, application-layer errors, throughput/latency patterns), and produces ranked, evidence-grounded
$ npx -y skills add aliyun/alibabacloud-aiops-skills --skill alibabacloud-pts-reporter --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-pts-reporter
Context preview
The summary Claude sees to decide when to auto-load this skill.
Alibaba Cloud PTS report analyzer worker skill — analyzes past PTS stress-testing reports (HistoryReportId), identifies report-observable performance issues (PTS client config, application-layer errors, throughput/latency patterns), and produces ranked, evidence-grounded
SKILL.md
alibabacloud-pts-reporter.SKILL.mdname: alibabacloud-pts-reporter
description: |
Alibaba Cloud PTS report analyzer worker skill — analyzes past PTS stress-testing
reports (HistoryReportId), identifies report-observable performance issues
(PTS client config, application-layer errors, throughput/latency patterns),
and produces ranked, evidence-grounded analysis. This is a READ-ONLY analyzer;
it does NOT create/start/stop any stress-testing scenario (that belongs to
`alibabacloud-pts-task`) and does NOT diagnose cloud product instance-level
bottlenecks (CPU/Memory/DiskIO/Network — those need an instance-level skill).
Typically delegated from the `alibabacloud-pts-pilot` router.
Triggers: "压测报告分析", "压测报告解读", "压测结果分析", "PTS report analysis",
"压测瓶颈分析", "压测指标解读"
required_permissions:
- pts:GetPtsReportDetails
- pts:GetPtsSceneRunningData
- pts:GetPtsSceneBaseLine
- pts:GetJMeterReportDetails
- pts:GetPtsScene
- pts:ListPtsScene
Alibaba Cloud PTS Report Analyzer (alibabacloud-pts-reporter)
> **[SCOPE NOTICE]** > This skill **only** analyzes PTS stress-testing report data. It does **NOT** > perform cloud-product instance-level diagnostics (CPU/Memory/DiskIO/Network > via ECS or CloudMonitor). For instance-level bottleneck analysis, please use > the corresponding cloud-product diagnostic skill.
> **[MUST] Role Declaration** > This is a **read-only analyzer** worker skill. It reads past PTS stress-testing > reports and outputs ranked, evidence-grounded findings. > > **I MUST NOT**: create, start, stop, or delete any PTS scenario. Those actions > belong to `alibabacloud-pts-task`. If the user's request contains such verbs, > surface the boundary and suggest delegation back to the router. > > **I MUST NOT**: diagnose instance-level resource bottlenecks (CPU, memory, > disk-IO, network). Those require ECS/CloudMonitor data and are out of scope. > > **Contract:** > - **Input**: `HistoryReportId` (required) + `RegionId` (required) > - **Output**: `findings[]` — ranked list with `{area, severity, evidence, suggestion}`
---
Scenario Description
Given a user who has run PTS stress tests and wants to interpret the resulting report — or diagnose report-observable issues — this skill reads:
1. **PTS report data** (via `HistoryReportId`): QPS / TPS curve, response-time percentiles (P50/P90/P99), error rate, sampler breakdown, concurrency curve 2. **Optional scene baseline** (via `SceneId` + `GetPtsSceneBaseLine`): for comparison against historical baseline runs
Then maps findings to a curated **report-analysis knowledge base** and produces actionable, ranked findings — strictly bounded by what the report itself exposes.
Architecture
User → Aliyun CLI → PTS (historical report) ─► alibabacloud-pts-reporter ─► findings[]
→ PTS (optional baseline)---
Pre-check
> **Pre-check: Aliyun CLI >= 3.3.3 required** > Run `aliyun version` to verify. If not installed or too low, see > [references/cli-installation-guide.md](references/cli-installation-guide.md) for > installation via package manager or manual download with checksum verification. > Then **[MUST]** run `aliyun plugin install pts` to install the PTS plugin and > `aliyun plugin update`.
aliyun version
aliyun plugin install pts
aliyun plugin update
---
AI-Mode Lifecycle Management
> **[MUST] Enable AI-Mode at workflow start** > ```bash > aliyun configure ai-mode enable > aliyun configure ai-mode set-user-agent --user-agent "AlibabaCloud-Agent-Skills/alibabacloud-pts-reporter" > ``` > > **[MUST] Disable AI-Mode at EVERY exit point** — success, failure, error, user > cancel, session end. Always disable before the final response. > ```bash > aliyun configure ai-mode disable > ```
---
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 > - **NEVER** use `aliyun configure set` with literal credential values > - **ONLY** use `aliyun configure list` to check credential status > > ```bash > aliyun configure list > ``` > **If no valid profile exists, STOP here.** > 1. Obtain credentials from [Alibaba Cloud Console](https://ram.console.aliyun.com/manage/ak) > 2. Configure credentials **outside of this session** > 3. Return and re-run after `aliyun configure list` shows a valid profile
---
RAM Policy
See [references/ram-policies.md](references/ram-policies.md) for the full read-only PTS permission set required by this analyzer.
> **[MUST] Permission Failure Handling:** When any command or API call fails due to permission errors at any point during execution, follow this process: > 1. Read `references/ram-policies.md` to get the full list of permissions required by this SKILL > 2. Use `ram-permission-diagnose` skill to guide the user through requesting the necessary permissions > 3. Pause and wait until the user confirms that the required permissions have been granted
---
Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters MUST be confirmed with the user. Do NOT assume > or use default values without explicit user approval.
| Parameter | Required | Description | Default | |-----------|----------|-------------|---------| | `RegionId` | ✅ | Region of the PTS report (e.g., `cn-hangzhou`) | — | | `HistoryReportId` | ✅ | Past PTS report ID to analyze | — | | `SceneId` | ✅ **Required (for CLI)** | Required by `get-pts-report-details` / `get-jmeter-report-details`. Also enables baseline pull via `GetPtsSceneBaseLine` for delta comparison | — | | `PlanId` | ✅ **Required (for CLI)** | Required by `get-pts-report-details` / `get-jmeter-report-details` to locate the plan that produced the report | — | | `TopN` | option
Read more
name: alibabacloud-pts-reporter description: | Alibaba Cloud PTS report analyzer worker skill — analyzes past PTS stress-testing reports (HistoryReportId), identifies report-observable performance issues (PTS client config, application-layer errors, throughput/latency patterns), and produces ranked, evidence-grounded analysis. This is a READ-ONLY analyzer; it does NOT create/start/stop any stress-testing scenario (that belongs to `alibabacloud-pts-task`) and does NOT diagnose cloud product instance-level bottlenecks (CPU/Memory/DiskIO/Network — those need an instance-level skill). Typically delegated from the `alibabacloud-pts-pilot` router. Triggers: "压测报告分析", "压测报告解读", "压测结果分析", "PTS report analysis", "压测瓶颈分析", "压测指标解读" required_permissions: - pts:GetPtsReportDetails - pts:GetPtsSceneRunningData - pts:GetPtsSceneBaseLine - pts:GetJMeterReportDetails - pts:GetPtsScene - pts:ListPtsScene
Alibaba Cloud PTS Report Analyzer (alibabacloud-pts-reporter)
> **[SCOPE NOTICE]** > This skill **only** analyzes PTS stress-testing report data. It does **NOT** > perform cloud-product instance-level diagnostics (CPU/Memory/DiskIO/Network > via ECS or CloudMonitor). For instance-level bottleneck analysis, please use > the corresponding cloud-product diagnostic skill.
> **[MUST] Role Declaration** > This is a **read-only analyzer** worker skill. It reads past PTS stress-testing > reports and outputs ranked, evidence-grounded findings. > > **I MUST NOT**: create, start, stop, or delete any PTS scenario. Those actions > belong to `alibabacloud-pts-task`. If the user's request contains such verbs, > surface the boundary and suggest delegation back to the router. > > **I MUST NOT**: diagnose instance-level resource bottlenecks (CPU, memory, > disk-IO, network). Those require ECS/CloudMonitor data and are out of scope. > > **Contract:** > - **Input**: `HistoryReportId` (required) + `RegionId` (required) > - **Output**: `findings[]` — ranked list with `{area, severity, evidence, suggestion}`
---
Scenario Description
Given a user who has run PTS stress tests and wants to interpret the resulting report — or diagnose report-observable issues — this skill reads:
1. **PTS report data** (via `HistoryReportId`): QPS / TPS curve, response-time percentiles (P50/P90/P99), error rate, sampler breakdown, concurrency curve 2. **Optional scene baseline** (via `SceneId` + `GetPtsSceneBaseLine`): for comparison against historical baseline runs
Then maps findings to a curated **report-analysis knowledge base** and produces actionable, ranked findings — strictly bounded by what the report itself exposes.
Architecture
User → Aliyun CLI → PTS (historical report) ─► alibabacloud-pts-reporter ─► findings[]
→ PTS (optional baseline)---
Pre-check
> **Pre-check: Aliyun CLI >= 3.3.3 required** > Run `aliyun version` to verify. If not installed or too low, see > [references/cli-installation-guide.md](references/cli-installation-guide.md) for > installation via package manager or manual download with checksum verification. > Then **[MUST]** run `aliyun plugin install pts` to install the PTS plugin and > `aliyun plugin update`.
aliyun version aliyun plugin install pts aliyun plugin update
---
AI-Mode Lifecycle Management
> **[MUST] Enable AI-Mode at workflow start** > ```bash > aliyun configure ai-mode enable > aliyun configure ai-mode set-user-agent --user-agent "AlibabaCloud-Agent-Skills/alibabacloud-pts-reporter" > ``` > > **[MUST] Disable AI-Mode at EVERY exit point** — success, failure, error, user > cancel, session end. Always disable before the final response. > ```bash > aliyun configure ai-mode disable > ```
---
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 > - **NEVER** use `aliyun configure set` with literal credential values > - **ONLY** use `aliyun configure list` to check credential status > > ```bash > aliyun configure list > ``` > **If no valid profile exists, STOP here.** > 1. Obtain credentials from [Alibaba Cloud Console](https://ram.console.aliyun.com/manage/ak) > 2. Configure credentials **outside of this session** > 3. Return and re-run after `aliyun configure list` shows a valid profile
---
RAM Policy
See [references/ram-policies.md](references/ram-policies.md) for the full read-only PTS permission set required by this analyzer.
> **[MUST] Permission Failure Handling:** When any command or API call fails due to permission errors at any point during execution, follow this process: > 1. Read `references/ram-policies.md` to get the full list of permissions required by this SKILL > 2. Use `ram-permission-diagnose` skill to guide the user through requesting the necessary permissions > 3. Pause and wait until the user confirms that the required permissions have been granted
---
Parameter Confirmation
> **IMPORTANT: Parameter Confirmation** — Before executing any command or API call, > ALL user-customizable parameters MUST be confirmed with the user. Do NOT assume > or use default values without explicit user approval.
| Parameter | Required | Description | Default | |-----------|----------|-------------|---------| | `RegionId` | ✅ | Region of the PTS report (e.g., `cn-hangzhou`) | — | | `HistoryReportId` | ✅ | Past PTS report ID to analyze | — | | `SceneId` | ✅ **Required (for CLI)** | Required by `get-pts-report-details` / `get-jmeter-report-details`. Also enables baseline pull via `GetPtsSceneBaseLine` for delta comparison | — | | `PlanId` | ✅ **Required (for CLI)** | Required by `get-pts-report-details` / `get-jmeter-report-details` to locate the plan that produced the report | — | | `TopN` | option
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

