/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,
$ npx -y skills add aliyun/alibabacloud-aiops-skills --skill alibabacloud-agentloop-management --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-agentloop-management
Context preview
The summary Claude sees to decide when to auto-load this skill.
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,
SKILL.md
alibabacloud-agentloop-management.SKILL.mdname: alibabacloud-agentloop-management
description: |
The skill should be used when the user asks about Alibaba Cloud AgentLoop platform for onboarding applications into observability, managing Datasets, building pipelines, evaluating, and recalling stored experience.
Triggers: "APM 接入", "aliyun-bootstrap 探针安装", "manage Datasets", "build pipeline from Logstore or trace data", "create evaluators", "evaluation task", "recall stored experience", "ContextStore 管理".
license: Apache-2.0
metadata:
domain: aiops
owner: agentloop
contact: agentloop@alibaba-inc.com
AgentLoop Skill Router
> **Positioning**: This skill is the single entry point for Alibaba Cloud **AgentLoop** requests. It only classifies the user's intent and dispatches to one of the five domain playbooks below. All executable rules — prerequisites, credentials, RAM policies, parameter confirmation, safety protocols, command usage, and verification — live inside the domain files. Do not run any cloud operation before reading the matched domain file.
**Compatibility**: cloud-operation domains require Aliyun CLI 3.3.15 or later; Pipeline requires `aliyun-cli-agentloop` 0.7.4 or later; bundled evaluation, experience-recall, and Pipeline scripts require Python 3.8 or later.
Routing Table
| # | Domain | Intent | Entry file (read first) | |---|--------|--------|-------------------------| | 1 | Application onboarding (APM & AI observability) | Instrument an application so it reports to AgentLoop: probe or agent install, APM onboarding, `aliyun-bootstrap`, `AliyunJavaAgent`, `instgo`, `cms_node_sdk`, `ack-onepilot`, OpenTelemetry, LicenseKey, K8s/ACK/ECS onboarding, LLM and AI-framework tracing (Dify, LangChain, DashScope) | [references/onboarding.md](references/onboarding.md) — internally routes to [references/apm.md](references/apm.md) / [references/ai.md](references/ai.md) | | 2 | Evaluation | Score model, agent, or trace quality: create and update evaluators and evaluator skills, one-shot sample tests, batch trace or Dataset evaluation, trace backfill, poll an evaluation task, analyze results and low-score cases | [references/evaluation/evaluation.md](references/evaluation/evaluation.md) | | 3 | Dataset | Store and retrieve structured rows: Dataset lifecycle and schema, append rows with `add-dataset-data`, read-only queries with `execute-query`, SQL or SearchExpr, semantic search, embedding fields | [references/dataset/dataset.md](references/dataset/dataset.md) | | 4 | Pipeline | Transform source data into a Dataset once or on a schedule: Logstore/SLS 导入 Dataset, trace import, spec design, preview/create/run, run inspection, lifecycle control, processing nodes, and OT AI trace mapping | [references/pipeline/pipeline.md](references/pipeline/pipeline.md) | | 5 | Experience (recall & store management) | Reuse prior experience, similar cases, past incidents and fixes, old runbooks, and lessons learned; create and manage ContextStores and their API Keys | [references/experience/experience.md](references/experience/experience.md) — routes store lifecycle work to [references/experience/context-store-management.md](references/experience/context-store-management.md) |
Dispatch Rules
1. Classify the request into one or more domains using the routing table, then read **only** the matched domain entry file(s). Never preload all domains. 2. Follow the matched domain file completely. Each domain defines its own prerequisites, credentials check, RAM policies, parameter confirmation, execution-safety protocol, and verification method. 3. If the request matches none of the domains, state that it is out of scope for this skill and do not dispatch. 4. If the intent is ambiguous between two domains, ask one clarifying question before dispatching.
Disambiguating Dataset vs Pipeline vs Evaluation
- Writing or reading rows the user already has: **Dataset**.
- Deriving new rows from LogStore or trace data through processing nodes: **Pipeline**. Create or confirm the sink Dataset first.
- Judging the quality of existing traces or Dataset rows with an evaluator: **Evaluation**.
Multi-Intent Handling
- Execute multiple domains sequentially in dependency order; finish and verify one mutation stage before starting the next.
- For Logstore-to-Dataset materialization: confirm or create the Dataset schema, preview the Pipeline, create and observe the Pipeline run, then read back and reconcile Dataset contents. Start Evaluation only after the Dataset field contract passes.
- Experience recall may run first as a preparatory step for any other domain when the user asks to reuse prior work.
Shared Conventions
- **Session ID**: generate one 32-character lowercase hex session ID once at the start of the workflow (`openssl rand -hex 16`) and reuse that same value for the rest of the session. Keep the generated value and write it out literally in every command that needs it. Do not re-derive it per command, and do not reach for it through a shell variable or a `cat` of a saved file - either one forces an assignment in front of the call and breaks the command shape rule below.
- **User-Agent**: every `aliyun` CLI cloud API command must carry `--user-agent "AlibabaCloud-Agent-Skills/alibabacloud-agentloop-management/{session-id}"`. Bundled Python wrappers read `SKILL_SESSION_ID`; local `configure`, `plugin`, and `version` commands are excluded.
- **Command shape**: every cloud API call must run as a single-line bare command whose first token is `aliyun`, or `python3` for a bundled wrapper, and whose last token is the final flag of that same call. Nothing may come before it - no `VAR=value` assignment, no `set -o pipefail`, no `source`, no `cd`, no `bash some_script.sh` wrapper - and a newline between an assignment and the call still counts as coming before it. Nothing may come after it either - no `| tee`, no `| head`, no `2>&1`, no `> file` redirect, and no `&&` or `;` chaining onto a second command. Diagnostic probes such as `--
Read more
name: alibabacloud-agentloop-management description: | The skill should be used when the user asks about Alibaba Cloud AgentLoop platform for onboarding applications into observability, managing Datasets, building pipelines, evaluating, and recalling stored experience. Triggers: "APM 接入", "aliyun-bootstrap 探针安装", "manage Datasets", "build pipeline from Logstore or trace data", "create evaluators", "evaluation task", "recall stored experience", "ContextStore 管理". license: Apache-2.0 metadata: domain: aiops owner: agentloop contact: agentloop@alibaba-inc.com
AgentLoop Skill Router
> **Positioning**: This skill is the single entry point for Alibaba Cloud **AgentLoop** requests. It only classifies the user's intent and dispatches to one of the five domain playbooks below. All executable rules — prerequisites, credentials, RAM policies, parameter confirmation, safety protocols, command usage, and verification — live inside the domain files. Do not run any cloud operation before reading the matched domain file.
**Compatibility**: cloud-operation domains require Aliyun CLI 3.3.15 or later; Pipeline requires `aliyun-cli-agentloop` 0.7.4 or later; bundled evaluation, experience-recall, and Pipeline scripts require Python 3.8 or later.
Routing Table
| # | Domain | Intent | Entry file (read first) | |---|--------|--------|-------------------------| | 1 | Application onboarding (APM & AI observability) | Instrument an application so it reports to AgentLoop: probe or agent install, APM onboarding, `aliyun-bootstrap`, `AliyunJavaAgent`, `instgo`, `cms_node_sdk`, `ack-onepilot`, OpenTelemetry, LicenseKey, K8s/ACK/ECS onboarding, LLM and AI-framework tracing (Dify, LangChain, DashScope) | [references/onboarding.md](references/onboarding.md) — internally routes to [references/apm.md](references/apm.md) / [references/ai.md](references/ai.md) | | 2 | Evaluation | Score model, agent, or trace quality: create and update evaluators and evaluator skills, one-shot sample tests, batch trace or Dataset evaluation, trace backfill, poll an evaluation task, analyze results and low-score cases | [references/evaluation/evaluation.md](references/evaluation/evaluation.md) | | 3 | Dataset | Store and retrieve structured rows: Dataset lifecycle and schema, append rows with `add-dataset-data`, read-only queries with `execute-query`, SQL or SearchExpr, semantic search, embedding fields | [references/dataset/dataset.md](references/dataset/dataset.md) | | 4 | Pipeline | Transform source data into a Dataset once or on a schedule: Logstore/SLS 导入 Dataset, trace import, spec design, preview/create/run, run inspection, lifecycle control, processing nodes, and OT AI trace mapping | [references/pipeline/pipeline.md](references/pipeline/pipeline.md) | | 5 | Experience (recall & store management) | Reuse prior experience, similar cases, past incidents and fixes, old runbooks, and lessons learned; create and manage ContextStores and their API Keys | [references/experience/experience.md](references/experience/experience.md) — routes store lifecycle work to [references/experience/context-store-management.md](references/experience/context-store-management.md) |
Dispatch Rules
1. Classify the request into one or more domains using the routing table, then read **only** the matched domain entry file(s). Never preload all domains. 2. Follow the matched domain file completely. Each domain defines its own prerequisites, credentials check, RAM policies, parameter confirmation, execution-safety protocol, and verification method. 3. If the request matches none of the domains, state that it is out of scope for this skill and do not dispatch. 4. If the intent is ambiguous between two domains, ask one clarifying question before dispatching.
Disambiguating Dataset vs Pipeline vs Evaluation
- Writing or reading rows the user already has: **Dataset**.
- Deriving new rows from LogStore or trace data through processing nodes: **Pipeline**. Create or confirm the sink Dataset first.
- Judging the quality of existing traces or Dataset rows with an evaluator: **Evaluation**.
Multi-Intent Handling
- Execute multiple domains sequentially in dependency order; finish and verify one mutation stage before starting the next.
- For Logstore-to-Dataset materialization: confirm or create the Dataset schema, preview the Pipeline, create and observe the Pipeline run, then read back and reconcile Dataset contents. Start Evaluation only after the Dataset field contract passes.
- Experience recall may run first as a preparatory step for any other domain when the user asks to reuse prior work.
Shared Conventions
- **Session ID**: generate one 32-character lowercase hex session ID once at the start of the workflow (`openssl rand -hex 16`) and reuse that same value for the rest of the session. Keep the generated value and write it out literally in every command that needs it. Do not re-derive it per command, and do not reach for it through a shell variable or a `cat` of a saved file - either one forces an assignment in front of the call and breaks the command shape rule below.
- **User-Agent**: every `aliyun` CLI cloud API command must carry `--user-agent "AlibabaCloud-Agent-Skills/alibabacloud-agentloop-management/{session-id}"`. Bundled Python wrappers read `SKILL_SESSION_ID`; local `configure`, `plugin`, and `version` commands are excluded.
- **Command shape**: every cloud API call must run as a single-line bare command whose first token is `aliyun`, or `python3` for a bundled wrapper, and whose last token is the final flag of that same call. Nothing may come before it - no `VAR=value` assignment, no `set -o pipefail`, no `source`, no `cd`, no `bash some_script.sh` wrapper - and a newline between an assignment and the call still counts as coming before it. Nothing may come after it either - no `| tee`, no `| head`, no `2>&1`, no `> file` redirect, and no `&&` or `;` chaining onto a second command. Diagnostic probes such as `--
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-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 - /alibabacloud-docmind-parse
Alibaba Cloud DocMind intelligent document parsing tool. Supports PDF, Word, PPT, Excel, images and more, outputting structured Markdown/JSON/HTML. Offers two invocation modes — V2 API direct access and Alibaba Cloud POP — with automatic routing based on credential availability.
Open skill

