{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tencentcloud-cvm-skill",
    "name": "Tencent Cloud CVM",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/GardenChan/tencentcloud-cvm-skill",
    "canonicalUrl": "https://clawhub.ai/GardenChan/tencentcloud-cvm-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tencentcloud-cvm-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tencentcloud-cvm-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "assets/create-instance-template.json",
      "scripts/common.sh",
      "scripts/query/describe-images.sh",
      "scripts/query/describe-zones.sh",
      "scripts/query/describe-instances.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tencentcloud-cvm-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/tencentcloud-cvm-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/tencentcloud-cvm-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tencentcloud-cvm-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tencentcloud-cvm-skill/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "腾讯云 CVM 运维工具",
        "body": "基于 Bash + tccli 的腾讯云 CVM 云服务器运维工具集，支持实例创建、资源查询、服务器运维三大核心功能。"
      },
      {
        "title": "1. 安装依赖",
        "body": "# tccli（腾讯云命令行工具）\npip3 install tccli\n\n# jq（JSON 解析）\nbrew install jq        # macOS\napt install jq         # Ubuntu\n\n# sshpass（SSH 密码认证，运维操作需要）\nbrew install hudochenkov/sshpass/sshpass   # macOS\napt install sshpass                         # Ubuntu"
      },
      {
        "title": "2. 配置凭证",
        "body": "export TENCENTCLOUD_SECRET_ID=\"your-secret-id\"\nexport TENCENTCLOUD_SECRET_KEY=\"your-secret-key\""
      },
      {
        "title": "3. 典型工作流",
        "body": "# 1. 查询资源准备创建实例\n./scripts/query/describe-zones.sh                    # 查可用区\n./scripts/query/describe-images.sh --platform Ubuntu # 查镜像\n./scripts/query/describe-vpcs.sh                     # 查 VPC\n\n# 2. 创建实例（密码自动保存）\n./scripts/lifecycle/create-instance.sh \\\n  --zone ap-guangzhou-3 \\\n  --instance-type S5.MEDIUM2 \\\n  --image-id img-xxx \\\n  --vpc-id vpc-xxx \\\n  --subnet-id subnet-xxx \\\n  --sg-id sg-xxx\n\n# 3. 更新实例 IP\n./scripts/utils/update-instance-ip.sh --instance-id ins-xxx --auto\n\n# 4. 运维操作（只需 instance-id）\n./scripts/ops/ssh-connect.sh --instance-id ins-xxx\n./scripts/ops/system-info.sh --instance-id ins-xxx"
      },
      {
        "title": "功能模块",
        "body": "scripts/\n├── lifecycle/    # 实例生命周期：创建、启动、停止、重启、销毁\n├── query/        # 资源查询：实例、镜像、VPC、子网、安全组、可用区\n├── ops/          # 服务器运维：SSH、远程执行、系统信息、磁盘、进程、服务、日志、安全、传输、网络\n├── utils/        # 辅助工具：密码管理、IP 更新、配置查看\n└── common.sh     # 公共函数库"
      },
      {
        "title": "实例生命周期",
        "body": "脚本功能示例recommend-instance.sh场景推荐创建--scene blog-smallcreate-instance.sh手动创建实例--zone ap-guangzhou-3 --instance-type S5.MEDIUM2start-instance.sh启动实例--instance-id ins-xxxstop-instance.sh停止实例--instance-id ins-xxx [--force]reboot-instance.sh重启实例--instance-id ins-xxxterminate-instance.sh销毁实例--instance-id ins-xxx\n\n场景推荐\n\n根据使用场景自动推荐配置：\n\n./scripts/lifecycle/recommend-instance.sh --scene blog-small    # 个人博客\n./scripts/lifecycle/recommend-instance.sh --scene web-medium    # 中型Web应用\n./scripts/lifecycle/recommend-instance.sh --list-scenes         # 查看所有场景\n\n场景适用配置blog-small个人博客 (日PV<5K)1核1Gblog-medium中型博客 (日PV 5K-50K)2核4Gweb-small小型Web (日PV<10K)2核2Gweb-medium中型Web (日PV 10K-100K)4核8Gapi-small小型API (QPS<100)2核4Gdev开发测试2核2Gdatabase-small小型数据库2核4G + 50G数据盘"
      },
      {
        "title": "资源查询",
        "body": "脚本功能常用参数describe-regions.sh查询地域--availabledescribe-instances.sh查询实例--instance-id, --namedescribe-zones.sh查询可用区--regiondescribe-instance-types.sh查询机型--zone, --family, --typedescribe-images.sh查询镜像--instance-type, --platformdescribe-vpcs.sh查询 VPC--vpc-iddescribe-subnets.sh查询子网--vpc-id, --zonedescribe-security-groups.sh查询安全组--sg-id, --name"
      },
      {
        "title": "服务器运维",
        "body": "优先级策略：运维操作优先使用 ops 脚本（SSH + 密码直连执行），仅在脚本无法满足需求时才使用 tccli 接口调用。\n安全限制：ops 目录仅使用已有的预定义脚本，不支持动态生成新脚本。\n重要原则：运维写操作（如停止、重启、销毁实例，服务管理，文件传输等）需要人工确认后执行。\n所有运维脚本只需 --instance-id 即可自动获取密码和 IP\n\n脚本功能特殊参数ssh-connect.shSSH 连接--portremote-exec.sh远程命令（仅支持预定义安全命令）--cmd <command>system-info.sh系统信息-disk-usage.sh磁盘检查--threshold <n>process-monitor.sh进程监控--top <n>, --filterservice-manage.sh服务管理--service, --actionlog-viewer.sh日志查看--file, --lines, --followsecurity-check.sh安全检查-file-transfer.sh文件传输--upload/--download, --local, --remotenetwork-check.sh网络检查--target\n\nremote-exec 安全命令集\n\nremote-exec.sh 仅支持以下预定义的只读命令或 ops 目录下的脚本：\n\n分类命令用途系统信息uptime系统运行时间和负载uname -a内核和系统信息hostname主机名cat /etc/os-release操作系统版本date系统时间timedatectl时区和时间同步状态CPUcat /proc/loadavg系统负载top -bn1 | head -20CPU 和进程概览mpstatCPU 使用统计nprocCPU 核数lscpuCPU 详细信息内存free -h内存使用情况cat /proc/meminfo内存详细信息vmstat虚拟内存统计磁盘df -h磁盘使用情况df -iinode 使用情况lsblk块设备列表fdisk -l磁盘分区信息du -sh <path>目录大小进程ps aux进程列表ps aux | head -20前 20 个进程pgrep <name>按名称查找进程pidof <name>获取进程 PID网络ip addr网络接口信息ip route路由表netstat -tlnpTCP 端口监听ss -tlnp套接字统计ping -c 4 <host>网络连通性测试curl -I <url>HTTP 头信息dig <domain>DNS 解析traceroute <host>路由追踪服务systemctl status <service>服务状态systemctl is-active <service>服务是否运行systemctl list-units --type=service服务列表日志tail -n 100 <logfile>查看日志末尾head -n 100 <logfile>查看日志开头journalctl -u <service> -n 100服务日志dmesg | tail -50内核日志安全who当前登录用户w用户活动last -n 20登录历史cat /etc/passwd用户列表cat /etc/group用户组列表其他env环境变量crontab -l定时任务列表docker psDocker 容器列表docker imagesDocker 镜像列表scripts/ops/*.shops 目录下的预定义运维脚本"
      },
      {
        "title": "辅助工具",
        "body": "脚本功能show-defaults.sh查看当前配置get-password.sh获取实例密码update-instance-ip.sh更新实例 IPmanage-passwords.sh管理密码存储"
      },
      {
        "title": "环境变量",
        "body": "变量说明默认值TENCENTCLOUD_SECRET_IDAPI 密钥 ID必需TENCENTCLOUD_SECRET_KEYAPI 密钥 Key必需TENCENT_CVM_DEFAULT_REGION默认地域ap-guangzhouTENCENT_CVM_DEFAULT_ZONE默认可用区-TENCENT_CVM_DEFAULT_INSTANCE_TYPE默认机型-TENCENT_CVM_DEFAULT_IMAGE_ID默认镜像-TENCENT_CVM_DEFAULT_VPC_ID默认 VPC-TENCENT_CVM_DEFAULT_SUBNET_ID默认子网-TENCENT_CVM_DEFAULT_SG_ID默认安全组-TENCENT_CVM_DEFAULT_DISK_SIZE系统盘大小20TENCENT_CVM_DEFAULT_CHARGE_TYPE计费类型POSTPAID_BY_HOUR"
      },
      {
        "title": "支持的地域",
        "body": "ap-beijing | ap-shanghai | ap-guangzhou | ap-chengdu | ap-nanjing | ap-hongkong"
      },
      {
        "title": "支持的镜像平台",
        "body": "TencentOS | CentOS | Ubuntu | Debian"
      },
      {
        "title": "SSH 登录用户名",
        "body": "系统默认用户名示例Ubuntuubuntussh ubuntu@<ip>其他 Linux (TencentOS, CentOS, Debian)rootssh root@<ip>"
      },
      {
        "title": "密码存储",
        "body": "创建实例时自动生成密码并保存到 ~/.tencent_cvm_passwords（权限 600）：\n\n{\n  \"ins-xxx\": {\n    \"password\": \"aB3#xK9$mN2@pQ\",\n    \"host\": \"1.2.3.4\",\n    \"region\": \"ap-guangzhou\",\n    \"created_at\": \"2026-02-06 15:30:00\"\n  }\n}\n\n管理命令：\n\n./scripts/utils/manage-passwords.sh --list              # 列出所有\n./scripts/utils/manage-passwords.sh --show ins-xxx      # 查看详情\n./scripts/utils/manage-passwords.sh --delete ins-xxx    # 删除记录"
      },
      {
        "title": "安全说明",
        "body": "本工具集设计用于可信环境下的服务器运维，遵循以下安全原则：\n\n预定义脚本：仅执行 scripts/ 目录下已审核的预定义脚本，禁止动态生成或执行任意代码\n人工确认：所有写操作（停止、重启、销毁、文件传输等）必须经人工确认后执行\n凭证安全：密码文件 ~/.tencent_cvm_passwords 权限为 600，仅限本地用户访问\n操作审计：所有操作均有日志输出，便于追溯\n使用场景：适用于开发测试环境，生产环境建议配合堡垒机使用"
      },
      {
        "title": "参考",
        "body": "腾讯云 CVM API 文档\ntccli 使用指南"
      }
    ],
    "body": "腾讯云 CVM 运维工具\n\n基于 Bash + tccli 的腾讯云 CVM 云服务器运维工具集，支持实例创建、资源查询、服务器运维三大核心功能。\n\n快速开始\n1. 安装依赖\n# tccli（腾讯云命令行工具）\npip3 install tccli\n\n# jq（JSON 解析）\nbrew install jq        # macOS\napt install jq         # Ubuntu\n\n# sshpass（SSH 密码认证，运维操作需要）\nbrew install hudochenkov/sshpass/sshpass   # macOS\napt install sshpass                         # Ubuntu\n\n2. 配置凭证\nexport TENCENTCLOUD_SECRET_ID=\"your-secret-id\"\nexport TENCENTCLOUD_SECRET_KEY=\"your-secret-key\"\n\n3. 典型工作流\n# 1. 查询资源准备创建实例\n./scripts/query/describe-zones.sh                    # 查可用区\n./scripts/query/describe-images.sh --platform Ubuntu # 查镜像\n./scripts/query/describe-vpcs.sh                     # 查 VPC\n\n# 2. 创建实例（密码自动保存）\n./scripts/lifecycle/create-instance.sh \\\n  --zone ap-guangzhou-3 \\\n  --instance-type S5.MEDIUM2 \\\n  --image-id img-xxx \\\n  --vpc-id vpc-xxx \\\n  --subnet-id subnet-xxx \\\n  --sg-id sg-xxx\n\n# 3. 更新实例 IP\n./scripts/utils/update-instance-ip.sh --instance-id ins-xxx --auto\n\n# 4. 运维操作（只需 instance-id）\n./scripts/ops/ssh-connect.sh --instance-id ins-xxx\n./scripts/ops/system-info.sh --instance-id ins-xxx\n\n功能模块\nscripts/\n├── lifecycle/    # 实例生命周期：创建、启动、停止、重启、销毁\n├── query/        # 资源查询：实例、镜像、VPC、子网、安全组、可用区\n├── ops/          # 服务器运维：SSH、远程执行、系统信息、磁盘、进程、服务、日志、安全、传输、网络\n├── utils/        # 辅助工具：密码管理、IP 更新、配置查看\n└── common.sh     # 公共函数库\n\n实例生命周期\n脚本\t功能\t示例\nrecommend-instance.sh\t场景推荐创建\t--scene blog-small\ncreate-instance.sh\t手动创建实例\t--zone ap-guangzhou-3 --instance-type S5.MEDIUM2\nstart-instance.sh\t启动实例\t--instance-id ins-xxx\nstop-instance.sh\t停止实例\t--instance-id ins-xxx [--force]\nreboot-instance.sh\t重启实例\t--instance-id ins-xxx\nterminate-instance.sh\t销毁实例\t--instance-id ins-xxx\n场景推荐\n\n根据使用场景自动推荐配置：\n\n./scripts/lifecycle/recommend-instance.sh --scene blog-small    # 个人博客\n./scripts/lifecycle/recommend-instance.sh --scene web-medium    # 中型Web应用\n./scripts/lifecycle/recommend-instance.sh --list-scenes         # 查看所有场景\n\n场景\t适用\t配置\nblog-small\t个人博客 (日PV<5K)\t1核1G\nblog-medium\t中型博客 (日PV 5K-50K)\t2核4G\nweb-small\t小型Web (日PV<10K)\t2核2G\nweb-medium\t中型Web (日PV 10K-100K)\t4核8G\napi-small\t小型API (QPS<100)\t2核4G\ndev\t开发测试\t2核2G\ndatabase-small\t小型数据库\t2核4G + 50G数据盘\n资源查询\n脚本\t功能\t常用参数\ndescribe-regions.sh\t查询地域\t--available\ndescribe-instances.sh\t查询实例\t--instance-id, --name\ndescribe-zones.sh\t查询可用区\t--region\ndescribe-instance-types.sh\t查询机型\t--zone, --family, --type\ndescribe-images.sh\t查询镜像\t--instance-type, --platform\ndescribe-vpcs.sh\t查询 VPC\t--vpc-id\ndescribe-subnets.sh\t查询子网\t--vpc-id, --zone\ndescribe-security-groups.sh\t查询安全组\t--sg-id, --name\n服务器运维\n\n优先级策略：运维操作优先使用 ops 脚本（SSH + 密码直连执行），仅在脚本无法满足需求时才使用 tccli 接口调用。\n\n安全限制：ops 目录仅使用已有的预定义脚本，不支持动态生成新脚本。\n\n重要原则：运维写操作（如停止、重启、销毁实例，服务管理，文件传输等）需要人工确认后执行。\n\n所有运维脚本只需 --instance-id 即可自动获取密码和 IP\n\n脚本\t功能\t特殊参数\nssh-connect.sh\tSSH 连接\t--port\nremote-exec.sh\t远程命令（仅支持预定义安全命令）\t--cmd <command>\nsystem-info.sh\t系统信息\t-\ndisk-usage.sh\t磁盘检查\t--threshold <n>\nprocess-monitor.sh\t进程监控\t--top <n>, --filter\nservice-manage.sh\t服务管理\t--service, --action\nlog-viewer.sh\t日志查看\t--file, --lines, --follow\nsecurity-check.sh\t安全检查\t-\nfile-transfer.sh\t文件传输\t--upload/--download, --local, --remote\nnetwork-check.sh\t网络检查\t--target\nremote-exec 安全命令集\n\nremote-exec.sh 仅支持以下预定义的只读命令或 ops 目录下的脚本：\n\n分类\t命令\t用途\n系统信息\tuptime\t系统运行时间和负载\n\tuname -a\t内核和系统信息\n\thostname\t主机名\n\tcat /etc/os-release\t操作系统版本\n\tdate\t系统时间\n\ttimedatectl\t时区和时间同步状态\nCPU\tcat /proc/loadavg\t系统负载\n\ttop -bn1 | head -20\tCPU 和进程概览\n\tmpstat\tCPU 使用统计\n\tnproc\tCPU 核数\n\tlscpu\tCPU 详细信息\n内存\tfree -h\t内存使用情况\n\tcat /proc/meminfo\t内存详细信息\n\tvmstat\t虚拟内存统计\n磁盘\tdf -h\t磁盘使用情况\n\tdf -i\tinode 使用情况\n\tlsblk\t块设备列表\n\tfdisk -l\t磁盘分区信息\n\tdu -sh <path>\t目录大小\n进程\tps aux\t进程列表\n\tps aux | head -20\t前 20 个进程\n\tpgrep <name>\t按名称查找进程\n\tpidof <name>\t获取进程 PID\n网络\tip addr\t网络接口信息\n\tip route\t路由表\n\tnetstat -tlnp\tTCP 端口监听\n\tss -tlnp\t套接字统计\n\tping -c 4 <host>\t网络连通性测试\n\tcurl -I <url>\tHTTP 头信息\n\tdig <domain>\tDNS 解析\n\ttraceroute <host>\t路由追踪\n服务\tsystemctl status <service>\t服务状态\n\tsystemctl is-active <service>\t服务是否运行\n\tsystemctl list-units --type=service\t服务列表\n日志\ttail -n 100 <logfile>\t查看日志末尾\n\thead -n 100 <logfile>\t查看日志开头\n\tjournalctl -u <service> -n 100\t服务日志\n\tdmesg | tail -50\t内核日志\n安全\twho\t当前登录用户\n\tw\t用户活动\n\tlast -n 20\t登录历史\n\tcat /etc/passwd\t用户列表\n\tcat /etc/group\t用户组列表\n其他\tenv\t环境变量\n\tcrontab -l\t定时任务列表\n\tdocker ps\tDocker 容器列表\n\tdocker images\tDocker 镜像列表\n\tscripts/ops/*.sh\tops 目录下的预定义运维脚本\n辅助工具\n脚本\t功能\nshow-defaults.sh\t查看当前配置\nget-password.sh\t获取实例密码\nupdate-instance-ip.sh\t更新实例 IP\nmanage-passwords.sh\t管理密码存储\n配置\n环境变量\n变量\t说明\t默认值\nTENCENTCLOUD_SECRET_ID\tAPI 密钥 ID\t必需\nTENCENTCLOUD_SECRET_KEY\tAPI 密钥 Key\t必需\nTENCENT_CVM_DEFAULT_REGION\t默认地域\tap-guangzhou\nTENCENT_CVM_DEFAULT_ZONE\t默认可用区\t-\nTENCENT_CVM_DEFAULT_INSTANCE_TYPE\t默认机型\t-\nTENCENT_CVM_DEFAULT_IMAGE_ID\t默认镜像\t-\nTENCENT_CVM_DEFAULT_VPC_ID\t默认 VPC\t-\nTENCENT_CVM_DEFAULT_SUBNET_ID\t默认子网\t-\nTENCENT_CVM_DEFAULT_SG_ID\t默认安全组\t-\nTENCENT_CVM_DEFAULT_DISK_SIZE\t系统盘大小\t20\nTENCENT_CVM_DEFAULT_CHARGE_TYPE\t计费类型\tPOSTPAID_BY_HOUR\n支持的地域\n\nap-beijing | ap-shanghai | ap-guangzhou | ap-chengdu | ap-nanjing | ap-hongkong\n\n支持的镜像平台\n\nTencentOS | CentOS | Ubuntu | Debian\n\nSSH 登录用户名\n系统\t默认用户名\t示例\nUbuntu\tubuntu\tssh ubuntu@<ip>\n其他 Linux (TencentOS, CentOS, Debian)\troot\tssh root@<ip>\n密码存储\n\n创建实例时自动生成密码并保存到 ~/.tencent_cvm_passwords（权限 600）：\n\n{\n  \"ins-xxx\": {\n    \"password\": \"aB3#xK9$mN2@pQ\",\n    \"host\": \"1.2.3.4\",\n    \"region\": \"ap-guangzhou\",\n    \"created_at\": \"2026-02-06 15:30:00\"\n  }\n}\n\n\n管理命令：\n\n./scripts/utils/manage-passwords.sh --list              # 列出所有\n./scripts/utils/manage-passwords.sh --show ins-xxx      # 查看详情\n./scripts/utils/manage-passwords.sh --delete ins-xxx    # 删除记录\n\n安全说明\n\n本工具集设计用于可信环境下的服务器运维，遵循以下安全原则：\n\n预定义脚本：仅执行 scripts/ 目录下已审核的预定义脚本，禁止动态生成或执行任意代码\n人工确认：所有写操作（停止、重启、销毁、文件传输等）必须经人工确认后执行\n凭证安全：密码文件 ~/.tencent_cvm_passwords 权限为 600，仅限本地用户访问\n操作审计：所有操作均有日志输出，便于追溯\n使用场景：适用于开发测试环境，生产环境建议配合堡垒机使用\n参考\n腾讯云 CVM API 文档\ntccli 使用指南"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/GardenChan/tencentcloud-cvm-skill",
    "publisherUrl": "https://clawhub.ai/GardenChan/tencentcloud-cvm-skill",
    "owner": "GardenChan",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tencentcloud-cvm-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/tencentcloud-cvm-skill",
    "agentUrl": "https://openagent3.xyz/skills/tencentcloud-cvm-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tencentcloud-cvm-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tencentcloud-cvm-skill/agent.md"
  }
}