Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

openbot-esxi开放机器人 ESXi

Agent Skill

openbot-esxi 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

24,361

周安装

1,005

GitHub Stars

公开资料未说明

下载量

7,960
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:openbot-esxi(开放机器人 ESXi)
来源仓库:https://github.com/cepheiden/openbot-esxi
安装命令:
openclaw skills install openbot-esxi
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install openbot-esxi

简介

openbot-esxi 用于在 VMware ESXi 8 上实现零接触部署 Debian 13 虚拟机。

  • 适合需要快速创建 NVMe+vmxnet3 虚拟机并运行无人值守安装的场景。
  • 通过构建自定义预置 ISO 和使用串行控制台完成自动化部署。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合来源仓库和原始 README 核验具体配置与使用方式。

SKILL.md

name
esxi-debian-deploy
description
Zero-touch Debian 13 VM deployment on VMware ESXi 8. Builds custom preseed ISO, creates NVMe+vmxnet3 VM with serial console, and runs unattended installation. Use when deploying Debian VMs on ESXi, automating VM provisioning, or setting up serial console access for headless ESXi VM management.

ESXi Debian 13 Zero-Touch Deploy

Deploy fully configured Debian 13 VMs on ESXi 8 in ~8 minutes with zero manual interaction.

Required Environment Variables

VariableRequiredDescription
ESXI_HOSTYesESXi host IP address
ESXI_PASSYesESXi root password
ESXI_USERNoESXi user (default: root)
ESXI_DATASTORENoTarget datastore (default: datastore1)
NETWORKNoPort group name (default: VM Network)
DOMAINNoDomain for VMs (default: local)
VM_PASSYes (resize only)VM root password for disk resize script
⚠️ Note: The deploy script generates a random VM password and prints it to stdout. The password is also embedded in the preseed ISO uploaded to the ESXi datastore. Remove the ISO after deployment and treat stdout output as sensitive.

Requirements

  • ESXi 8.x host with SSH and datastore access
  • govc CLI (github.com/vmware/govmomi)
  • xorriso, isolinux — for custom ISO build
  • sshpass — for automated SSH/SCP
  • Tools on agent host: bash, python3, wget

Install on Debian/Ubuntu:

apt install xorriso isolinux sshpass
# govc: https://github.com/vmware/govmomi/releases

Usage

All credentials are passed via environment variables — nothing is hardcoded or embedded in process arguments.

export ESXI_HOST="192.168.1.100"
export ESXI_PASS="your-esxi-root-password"

bash scripts/esxi-deploy.sh [hostname] [cpu] [ram_mb] [disk_gb] [serial_port]
ParameterDefaultDescription
hostnamerandom animal nameVM name
cpu2vCPU count
ram_mb2048Memory in MB
disk_gb20Disk size in GB
serial_portrandom 8600-8699Telnet port for serial console

Example:

bash scripts/esxi-deploy.sh webserver 4 4096 50 8610

What It Does

  1. Generate preseed.cfg — German locale, DHCP, configurable user + root, random password
  2. Build custom ISO — Debian netinst + preseed, patched isolinux for auto-boot
  3. Upload ISO to ESXi datastore
  4. Create VM — NVMe disk (thin provisioned), dual NIC (E1000 for installer + vmxnet3 for production), serial port via telnet
  5. Boot + unattended install — preseed handles everything
  6. Post-install — Remove E1000, eject ISO, set boot to HDD
  7. Output credentials — SSH + serial console access details

Serial Console

Every VM gets a serial port accessible via telnet to the ESXi host:

telnet <ESXI_IP> <serial_port>

Works even when the VM has no network. Configured:

  • GRUB: GRUB_TERMINAL="console serial", serial 115200 8N1
  • Kernel: console=tty0 console=ttyS0,115200n8
  • Getty: serial-getty@ttyS0.service enabled

ESXi firewall requirement (activated automatically by the script):

esxcli network firewall ruleset set -e true -r remoteSerialPort

Important: Set serial port IP to the ESXi host IP, not 0.0.0.0:

serial0.fileName = "telnet://<ESXI_IP>:<port>"

Online Disk Resize

Grow a VM's disk without shutdown:

export ESXI_HOST="192.168.1.100"
export ESXI_PASS="your-esxi-password"
export VM_PASS="vm-root-password"

bash scripts/esxi-vm-resize-disk.sh <vm-name> <new-size-gb>

Requires cloud-guest-utils on the VM (pre-installed by the deploy script).

Configuration

All settings are configurable via environment variables:

export ESXI_HOST="192.168.1.100"    # ESXi host IP (required)
export ESXI_PASS="secret"           # ESXi root password (required)
export ESXI_USER="root"             # ESXi user (default: root)
export ESXI_DATASTORE="datastore1"  # Target datastore (default: datastore1)
export NETWORK="VM Network"         # Port group name (default: VM Network)
export DOMAIN="example.local"       # Domain for VMs (default: local)

No credential store or external resolver is required. Pass secrets via environment variables only — they are never embedded in process arguments or URLs.

VM Configuration Details

ComponentChoiceReason
Disk controllerNVMeFaster than SCSI/SATA for modern guests
Production NICvmxnet3Paravirtualized, best performance
Installer NICE1000Kernel driver built-in, no firmware needed
Boot modeBIOSSimpler for automated installs
ProvisioningThinSaves datastore space

Preseed Highlights

  • Locale: de_DE.UTF-8, keyboard de, timezone Europe/Berlin
  • Partitioning: automatic, single root + swap
  • Packages: open-vm-tools, curl, sudo, qemu-guest-agent, cloud-guest-utils
  • SSH: PermitRootLogin yes, PasswordAuthentication yes
  • Blacklisted modules: floppy, pcspkr (prevent I/O error loops in VMs)

Customize the preseed section in esxi-deploy.sh for different locales or packages.

Security Considerations

  • Credentials: All secrets are passed via environment variables, never embedded in URLs or process arguments. govc uses GOVC_USERNAME/GOVC_PASSWORD env vars.
  • SSH access: The script uses sshpass for automated SSH. For production, consider SSH key-based auth instead.
  • Serial console: Telnet is unencrypted. The serial port is bound to the ESXi host IP (not 0.0.0.0), but anyone with network access to the ESXi host can connect. Restrict access via:

- ESXi firewall rules (limit remoteSerialPort to trusted IPs) - Network segmentation / VPN - Disable serial port after debugging

  • Generated passwords: VM passwords are output to stdout. Redirect output or use a credential store in production.
  • Lab use recommended: Test on a lab ESXi host before using in production. Review all scripts before running.

Gotchas

  • No heredoc in preseed late_command — Shell expansion in the deploy script's heredoc destroys nested heredocs. Use echo -e or single-line commands instead.
  • Serial console only works after install — The Debian installer uses VGA; serial output starts at first boot (GRUB + kernel).
  • ESXi firewall blocks serial by default — The remoteSerialPort ruleset must be enabled.
  • Don't resize MBR partitions live with extended/swap layout — Use growpart on the root partition or redeploy with larger disk.
  • E1000 removal requires shutdown — The script handles this automatically post-install.

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

82.56%
按下载量换算6,572

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills