Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

aliyun-vpc-manage阿里云 vpc 管理

Agent Skill

aliyun-vpc-manage 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

682

周安装

29

GitHub Stars

383

下载量

239
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aliyun-vpc-manage(阿里云 vpc 管理)
来源仓库:https://github.com/cinience/alicloud-skills
仓库路径:skills/aliyun-vpc-manage
安装命令:
npx skills add https://github.com/cinience/alicloud-skills --skill aliyun-vpc-manage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cinience/alicloud-skills --skill aliyun-vpc-manage

简介

aliyun-vpc-manage 管理虚拟私有云(VPC)资源与网络配置。

  • 支持列出 VPC、子网与安全组,基于 OpenAPI 规范调用 RPC 接口。
  • 建议使用 Python SDK 并指定目标区域,确保操作范围清晰。
  • 涉及网络变更时应评估对现有服务的影响,避免中断业务。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Category: service

Virtual Private Cloud (VPC)

Validation

mkdir -p output/aliyun-vpc-manage
for f in skills/network/vpc/aliyun-vpc-manage/scripts/*.py; do
  python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/aliyun-vpc-manage/validate.txt

Pass criteria: command exits 0 and output/aliyun-vpc-manage/validate.txt is generated.

Output And Evidence

  • Save list/summarize outputs under output/aliyun-vpc-manage/.
  • Keep command arguments and region scope in each evidence file.

Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage VPC resources. Prefer the Python SDK for all examples and execution.

Prerequisites

pip install alibabacloud_vpc20160428 alibabacloud_tea_openapi alibabacloud_credentials
  • Prepare AccessKey (RAM user/role with least privilege).
  • Choose the correct region and endpoint (public/VPC).
  • VPC OpenAPI is RPC style; prefer SDK or OpenAPI Explorer to avoid manual signing.

API behavior notes (from VPC docs)

  • DescribeVpcs and DescribeVSwitches support pagination via PageNumber + PageSize.
  • DescribeVpcs requires RegionId in the request.
  • CreateVpc returns VpcId immediately but VPC enters Pending status; poll with DescribeVpcs until Available.
  • CreateVSwitch requires an existing VPC in Available status and a valid ZoneId.
  • DeleteVpc fails if VPC still has VSwitches, security groups, or other resources attached.
  • DeleteVSwitch fails if VSwitch still has ECS instances or other resources.

Workflow

  1. Confirm region, resource identifiers, and desired action.
  2. Find API group and exact operation name in references/api_overview.md.
  3. Call API with Python SDK (preferred) or OpenAPI Explorer.
  4. Verify results with describe/list APIs.
  5. If you need repeatable inventory or summaries, use scripts/ and write outputs under output/aliyun-vpc-manage/.

SDK priority

  1. Python SDK (preferred)
  2. OpenAPI Explorer
  3. Other SDKs (only if Python is not feasible)

Python SDK quickstart (list VPCs)

Virtual environment is recommended (avoid PEP 668 system install restrictions).

python3 -m venv .venv
. .venv/bin/activate
pip install alibabacloud_vpc20160428 alibabacloud_tea_openapi alibabacloud_credentials
from alibabacloud_vpc20160428.client import Client as Vpc20160428Client
from alibabacloud_vpc20160428 import models as vpc_models
from alibabacloud_tea_openapi import models as open_api_models

def create_client(region_id: str) -> Vpc20160428Client:
    config = open_api_models.Config(
        region_id=region_id,
        endpoint=f"vpc.{region_id}.aliyuncs.com",
    )
    return Vpc20160428Client(config)

def list_vpcs(region_id: str):
    client = create_client(region_id)
    resp = client.describe_vpcs(vpc_models.DescribeVpcsRequest(
        region_id=region_id,
        page_number=1,
        page_size=50,
    ))
    for v in resp.body.vpcs.vpc:
        print(v.vpc_id, v.vpc_name, v.cidr_block, v.status)

if __name__ == "__main__":
    list_vpcs("cn-hangzhou")

Python SDK scripts (recommended for inventory)

  • List VPCs in a region: scripts/list_vpcs.py
  • List VSwitches in a region: scripts/list_vswitches.py
  • Create a VPC: scripts/create_vpc.py
  • Create a VSwitch: scripts/create_vswitch.py
  • Delete a VPC: scripts/delete_vpc.py
  • Delete a VSwitch: scripts/delete_vswitch.py
  • Query available zones: scripts/describe_zones.py

VPC 网络规划设计原则

CIDR 地址规划

  • 每个地域的业务 VPC 使用独立的 /16 网段,避免跨地域互联时 CIDR 冲突。推荐分配方式:
地域推荐 CIDR
cn-hangzhou10.1.0.0/16
cn-shanghai10.2.0.0/16
ap-southeast-110.3.0.0/16
cn-beijing10.4.0.0/16
更多地域10.5~254.0.0/16
  • 不要使用过大的 CIDR(如 10.0.0.0/8),即使 VSwitch 只用了很小一部分。大网段会阻止与其他 10.x 段 VPC 通过 CEN 互联。
  • VSwitch 统一使用 /24(252 可用 IP),对大多数业务足够。如果单可用区需要大量实例,可用 /20(4092 IP)。
  • 预留网段间隔用于未来扩展。如应用层用 0-9,数据库层用 10-19,中间件用 20-29。

可用区与高可用

  • 生产环境至少覆盖 2~3 个可用区,每个可用区至少 1 个 VSwitch。
  • 应用层和数据层分布在不同可用区,确保单 AZ 故障时服务不中断。
  • 创建 VSwitch 前先用 scripts/describe_zones.py 查询可用区列表,不同地域的可用区编号不同。

VSwitch 分层隔离

按业务功能对 VSwitch 进行分段,便于通过 ACL 和安全组实现网络隔离:

10.x.0~9.0/24    → 应用层(Web/API 服务器)
10.x.10~19.0/24  → 数据层(RDS、Redis、MongoDB)
10.x.20~29.0/24  → 中间件(MQ、ES、Nacos)
10.x.30~39.0/24  → 管理层(跳板机、运维工具)

VSwitch 命名规范

推荐格式:vsw-{region简写}-{可用区}-{用途}

示例:vsw-sg-a-appvsw-hz-h-dbvsw-sh-e-middleware

跨地域互联(CEN)

  • 需要互联的 VPC 的 CIDR 必须不重叠
  • 自动生成的 VPC(如 FC 组件创建的)通常使用 10.0.0.0/8不要将其加入 CEN,否则会与其他地域的 10.x 段冲突。
  • 业务 VPC 规划时应预先考虑 CEN 互联需求,从一开始就使用不重叠的 /16 网段。

常见陷阱

问题原因解决方案
CEN 挂载失败,提示 CIDR 冲突两个 VPC 使用了重叠的 CIDR新建 VPC 使用不重叠的 /16 网段
DeleteVpc 失败VPC 下仍有 VSwitch/安全组/NAT 等资源先删除所有子资源,再删 VPC
DeleteVSwitch 失败VSwitch 下仍有 ECS/RDS 等实例先释放或迁移实例
创建 VSwitch 报 ZoneId 无效该可用区不支持或已售罄用 describe_zones.py 查询有效可用区
默认 VPC 用于生产默认 VPC 网段不可控,且无法与其他 VPC 合理互联生产环境始终新建 VPC,规划好 CIDR

Common operation mapping

  • VPC lifecycle: CreateVpc, DeleteVpc, ModifyVpcAttribute
  • VPC query: DescribeVpcs, DescribeVpcAttribute
  • VSwitch lifecycle: CreateVSwitch, DeleteVSwitch, ModifyVSwitchAttribute
  • VSwitch query: DescribeVSwitches, DescribeVSwitchAttributes
  • Route tables: CreateRouteTable, DeleteRouteTable, DescribeRouteTables, CreateRouteEntry, DeleteRouteEntry
  • NAT Gateway: CreateNatGateway, DeleteNatGateway, DescribeNatGateways
  • EIP: AllocateEipAddress, AssociateEipAddress, UnassociateEipAddress, ReleaseEipAddress, DescribeEipAddresses
  • Tags: TagResources, UntagResources, ListTagResources

Query patterns

  • List VPCs: DescribeVpcs (supports filters: VpcId, VpcName, IsDefault, ResourceGroupId)
  • List VSwitches: DescribeVSwitches (supports filters: VpcId, VSwitchId, ZoneId, VSwitchName, IsDefault)
  • Available zones: use ECS DescribeZones API to find valid zones for VSwitch creation

AccessKey priority (must follow, align with README)

  1. Environment variables: ALIBABACLOUD_ACCESS_KEY_ID / ALIBABACLOUD_ACCESS_KEY_SECRET / ALIBABACLOUD_REGION_ID Region policy: ALIBABACLOUD_REGION_ID is an optional default. If unset, decide the most reasonable region for the task; if unclear, ask the user.
  2. Shared config file: ~/.alibabacloud/credentials (region still from env)

Auth setup (README-aligned)

Environment variables:

export ALIBABACLOUD_ACCESS_KEY_ID="your-ak"
export ALIBABACLOUD_ACCESS_KEY_SECRET="your-sk"
export ALIBABACLOUD_REGION_ID="cn-hangzhou"

Also supported by the Alibaba Cloud SDKs:

export ALIBABA_CLOUD_ACCESS_KEY_ID="your-ak"
export ALIBABA_CLOUD_ACCESS_KEY_SECRET="your-sk"

Legacy compatibility:

export ALICLOUD_ACCESS_KEY_ID="your-ak"
export ALICLOUD_ACCESS_KEY_SECRET="your-sk"

Shared config file:

~/.alibabacloud/credentials

[default]
type = access_key
access_key_id = your-ak
access_key_secret = your-sk

API discovery

  • Product code: Vpc
  • Default API version: 2016-04-28
  • Use OpenAPI metadata endpoints to list APIs and get schemas (see references).

Output policy

If you need to save responses or generated artifacts, write them under: output/aliyun-vpc-manage/

References

  • API overview: references/api_overview.md
  • Sources: references/sources.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.03%
按下载量换算91

Claude

27.59%
按下载量换算66

Cursor

18.06%
按下载量换算43

Gemini CLI

9.22%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills