alibabacloud-suggest-cli

alibabacloud-suggest-cli is a skill for Claude Code from aliyun/alibabacloud-agent-toolkit. It costs 128 tokens per session (2,961 once invoked), scanned A, original, Apache-2.0.

A command suggestion guide that turns plain-language requests into Alibaba Cloud aliyun command strings. The commands are prepared for another tool to run them, but this guide only suggests them.

In plain words
What is it for?
Use it to request validated command strings for managing Alibaba Cloud resources, without executing those commands automatically.
Why use it?
It removes the need to remember Alibaba Cloud API names, parameters, and command syntax when asking for an operation.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the alibabacloud-core plugin — 10 skills, 6 hooks, 1 MCP server shipped together

Good fit Use it to request validated command strings for managing Alibaba Cloud resources, without executing those commands automatically.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aliyun/alibabacloud-agent-toolkit/alibabacloud-suggest-cli
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aliyun/alibabacloud-agent-toolkit --skill alibabacloud-suggest-cli
Clone the repo
git clone --depth 1 https://github.com/aliyun/alibabacloud-agent-toolkit

Made for: Claude Code.

Or install alibabacloud-core, the plugin that ships this one along with the rest of its 10 skills, 6 hooks, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for alibabacloud-suggest-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/aliyun/alibabacloud-agent-toolkit/alibabacloud-suggest-cli/github.svg)](https://agentmods.dev/skills/aliyun/alibabacloud-agent-toolkit/alibabacloud-suggest-cli)
Your own site
<a href="https://agentmods.dev/skills/aliyun/alibabacloud-agent-toolkit/alibabacloud-suggest-cli"><img src="https://agentmods.dev/badge/skills/aliyun/alibabacloud-agent-toolkit/alibabacloud-suggest-cli/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for alibabacloud-suggest-cli

Your own site · 80×15
<a href="https://agentmods.dev/skills/aliyun/alibabacloud-agent-toolkit/alibabacloud-suggest-cli"><img src="https://agentmods.dev/badge/skills/aliyun/alibabacloud-agent-toolkit/alibabacloud-suggest-cli.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 128 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,961 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Output Handling · line 75
    Model output is used without validation or sanitization. Unvalidated output injected into downstream contexts (SQL, shell, HTML) enables injection attacks and arbitrary code execution.
    Fix: Validate and sanitize all model output before using it in downstream contexts. Use parameterized queries for SQL, shell quoting for commands, and HTML encoding for web output.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00128 $0.02961
Opus 5 $0.00064 $0.01481
Sonnet 5 $0.00026 $0.00592
Haiku 4.5 $0.00013 $0.00296

Measured 11d ago against content hash 497e77781b5a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

alibabacloud-suggest-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (script/check_cli.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/alibabacloud-core/skills/alibabacloud-suggest-cli/SKILL.md · 186 lines

How it starts

The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Alibaba Cloud CLI Command Suggester

Turn a natural-language Alibaba Cloud request into one or more aliyun CLI command strings, each ready to be passed as the command argument of the MCP CallCLI tool. After calling GenerateCLICommand, take the returned unifiedCli field verbatim; if unifiedCli is empty, fall back to cli. Do not manually rewrite either field. Commands must satisfy CallCLI's constraints, must pass check_cli.py validation before output, and are suggested only — do not run them unless the user explicitly asks.

Scope Check Before You Start

  • CLI command suggestions (this skill): produce aliyun ... command strings (from GenerateCLICommand) for the MCP CallCLI tool. No execution, no SDK code.
  • CLI syntax & troubleshooting referencealibabacloud-cli-guidance: the knowledge base for plugin vs built-in routing, --biz- naming, auth, install, and error fixes. Read it when you need rules; this skill is the generation + validation loop on top of those rules.

Workflow

  1. Split the request into atomic cloud operations. For each, verify the product, API/action name, version, and required parameters using MCP tools — do not guess.

  2. Search APIs for operations whose action you are unsure about. Use AlibabaCloud___SearchApis with a natural-language description. Keep to one parallel batch.

  3. Read API definitions to confirm exact parameter names, types, and which are required. Use AlibabaCloud___GetApiDefinition with product, action, and version. Do not skip this step for unfamiliar APIs.

  4. Build jsonApiParameters from the API definition before generating the command. Prefer user-provided values. For missing values needed to make a useful suggestion, create reasonable mock values from the parameter structure returned by GetApiDefinition:

    • Use exact OpenMeta parameter names; never invent names from CLI flags or memory.
    • Include parameters marked required, plus small harmless shaping parameters for list/query APIs when useful (for example PageSize: 10, MaxItems: 10, or max-keys: 10) only if those parameters exist in the definition.
    • For region-like parameters, use the user's region when present; otherwise use cn-hangzhou.
    • For IDs, use realistic placeholders with the correct service prefix, such as i-test1234567890, vpc-test1234567890, vsw-test1234567890, sg-test1234567890, or eipalloc-test1234567890.
    • For names and descriptions, use short safe placeholders such as test-vpc, test-sg, or updated by static cli test.
    • For CIDR and network fields, use documentation-style private/test ranges such as 10.0.0.0/8, 10.0.1.0/24, or 203.0.113.0/24.
    • For enums and booleans, choose conservative valid-looking values from the parameter description or examples, such as tcp, accept, PayByTraffic, EcsInstance, or false.
    • For integer sizes/counts/bandwidths, use small values such as 1, 5, or 10.
    • For arrays/objects, preserve the schema shape: pass arrays as JSON arrays and objects as JSON objects in jsonApiParameters; do not flatten them into guessed CLI flags.
    • If a required parameter cannot be mocked safely from the definition, use a clear placeholder value like <instance-id> and mention that it must be replaced.

Read the full file on GitHub · 186 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 186 lines · 128 tokens per session scan A 497e77781b5a

Subscribe to this mod's changes

alibabacloud-suggest-cli is a skill published in the GitHub repository aliyun/alibabacloud-agent-toolkit (21 stars, last pushed today), licensed Apache-2.0. It adds 128 tokens to every session and 2,961 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

alibabacloud-ecs-windows-os-troubleshooting

Troubleshoot and repair Alibaba Cloud ECS Windows instances from inside the GuestOS or remotely via Cloud Assistant. Use whenever the user reports any Windows symptom or asks for a health check on an ECS Windows instance, even vague ones like "check this machine": boot failures (BSOD, black screen, boot loop, stuck at…

aliyun/alibabacloud-ecs-troubleshoot-skills · 215 tokens

alibabacloud-ecs-linux-os-troubleshooting

Troubleshoot an Alibaba Cloud ECS Linux OS. Use when a user needs to diagnose a specified ECS Linux instance, such as instance stuck in Starting, boot stuck, SSH/VNC/Workbench login failure, network issues, disk/FS issues, performance anomalies, suspected mining or hidden processes, crash/hang, clock drift, or…

aliyun/alibabacloud-ecs-troubleshoot-skills · 84 tokens

bailian-managed-agent

A command-line tool for managing Alibaba Cloud Bailian hosted agents and deployments from an agents.yaml file. This file acts as the single description of the remote resources, similar to infrastructure-as-code configuration.

modelstudioai/cli · 255 tokens

cloud-administration

Administers the cloud the company runs on rather than the one it sells — tenant and subscription structure, the SaaS estate and who owns each app, identity as the real perimeter, cloud spend that arrives as a surprise, and what the provider does not do for you. Use this to structure subscriptions or tenants, get…

cbrock84/headcount · 100 tokens

telephony-and-conferencing

Runs voice and meeting infrastructure — phone systems and numbers, emergency calling obligations, conference rooms and their AV, call recording and its retention consequences, and the porting that makes provider changes go badly. Use this to replace a phone system, fix rooms nobody can start a meeting in, meet…

cbrock84/headcount · 85 tokens

virtualization-operations

Runs the hypervisor layer beneath the servers — host capacity and consolidation ratios, VM sprawl, snapshot discipline, resilience and live migration, and licensing that counts cores rather than instances. Use this to size or expand a cluster, work out why VMs are slow when the hosts look idle, clean up sprawl, set…

cbrock84/headcount · 86 tokens