以 AI 机器人身份加入视频会议,提供语音、虚拟形象与屏幕共享四种模式。
记忆
olvm-aiops
试用Use this skill whenever the user needs to inspect or troubleshoot an Oracle Linux Virtualization Manager (OLVM) or oVirt 4.5 environment through its engine — data centers, clusters, KVM hosts, storage domains, VMs, events and jobs; and one-call diagnoses that rank what needs attention in the engine itself — health check, clock, certificates, backups (engine_health_rca) — on hosts (host_health_rca), storage domains (storage_capacity_rca) and VMs (vm_health_rca). Always use this skill for "olvm", "oracle linux virtualization manager", "ovirt engine", "rhv manager", "host non operational", "storage domain inactive", "storage domain low space", "vm paused", "vm not responding", "engine certificate expiring", "engine backup", or "what failed in olvm" when the context is an OLVM / oVirt engine. Do NOT use for XCP-ng — use xcpng-aiops. Do NOT use for Proxmox VE — use proxmox-aiops. Other hypervisors, NAS appliances, backup suites and container clusters are out of scope (negative routing hints
它能做什么
**Disclaimer**: This is a community-maintained open-source project and is **not affiliated with, endorsed by, or sponsored by Oracle or the oVirt project.** "Oracle", "Oracle Linux" and "oVirt" are trademarks of their owners. Source code is publicly auditable at github.com/AIops-tools/OLVM-AIops un…
技能文档
OLVM AIops
Disclaimer: This is a community-maintained open-source project and is not affiliated with, endorsed by, or sponsored by Oracle or the oVirt project. "Oracle", "Oracle Linux" and "oVirt" are trademarks of their owners. Source code is publicly auditable at github.com/AIops-tools/OLVM-AIops under the MIT license.
Governed operations for Oracle Linux Virtualization Manager (OLVM) and oVirt 4.5 through the engine REST API — 17 MCP tools, every one wrapped with the bundled @governed_tool harness: a local audit log under ~/.olvm-aiops/, a token/runaway budget guard, and descriptive risk tiers. The engine password is stored encrypted (~/.olvm-aiops/secrets.enc) — never plaintext on disk.
Read-only in this release. Inventory, health, capacity and diagnosis. Engine actions are asynchronous — the engine answers
completelong before a VM or host reaches its target state — so write tools are held back until each can confirm its own outcome.
What This Skill Does
| Area | Tools |
|---|---|
| Diagnosis (start here) | engine_health_rca, host_health_rca, storage_capacity_rca, vm_health_rca |
| Inventory | datacenter_list, cluster_list, host_list, host_get, storage_domain_list, storage_domain_get, vm_list, vm_get, vm_stats |
| Activity | event_list, job_list |
| Governance | undo_list, undo_apply (nothing records an undo in this read-only release) |
Each diagnosis returns findings ranked worst first. Every finding carries signal (what was measured, quoted from the engine), cause, action and rank.
Quick Install
uv tool install olvm-aiops
olvm-aiops init # interactive wizard: engine URL, username with profile, CA, encrypted password
olvm-aiops doctor # login + engine product version
Or as an OpenClaw plugin, which installs this skill and its MCP server together:
openclaw plugins install clawhub:@zw008/olvm-aiops
openclaw skills info olvm-aiops # expect: Visible to model: yes
Needs uvx on PATH: the MCP server is fetched with uv, pinned to this release.
When to Use This Skill
- "Is anything wrong with my OLVM / oVirt environment?"
- A host is non-operational, non-responsive or stuck installing.
- A storage domain is inactive, low on space, or the engine refuses to create disks.
- A VM is paused, not responding, or will not start.
- "What happened in the last hour?" / "Follow new events."
- Capacity questions: how full each storage domain is, what is over-committed.
Related Skills — Skill Routing
| The target is… | Use |
|---|---|
| An OLVM or oVirt 4.5 engine | olvm-aiops (this skill) |
| An XCP-ng pool | xcpng-aiops |
| A Proxmox VE cluster | proxmox-aiops |
Common Workflows
1. "Is anything wrong right now?"
engine_health_rca, thenhost_health_rca, thenstorage_capacity_rca, thenvm_health_rca.- Report findings in
rankorder and quote eachsignal. Severityinfomeans in progress or superseded — a host the engine is rebooting after deployment, an old event the host or VM has since recovered from — andlowis informational, such as alert 9000 on a host without fencing hardware. Neither is a fault. - For context on a finding,
event_listwithmin_severity="warning", andjob_listwithstatus="failed".
2. "Storage is filling up" / "the engine won't create a disk"
storage_capacity_rca—criticalmeans free space is below the domain's critical blocker, and the engine refuses new disks and snapshots there.storage_domain_listfor free %, used and committed bytes of every domain.vm_listto see which VMs live in the cluster that uses the domain.
3. "This VM is paused / not responding"
vm_health_rca— paused VMs point at storage first; an event is superseded when the VM started or was reported back up after it; events older thanevents_window_hours(default 24) are ignored.vm_getandvm_statsfor the VM's host, memory and CPU.event_listwithsince_minutes=60for what the engine logged around it.storage_capacity_rcaif the VM is paused.
4. "Tell me what changes from now on"
event_listonce and note the highestindex.- Next time,
event_listwithafter_indexset to that number — the events after it come back oldest first; repeat with the highest index returned whiletruncatedis true.
5. "Will certificates or backups bite us?"
engine_health_rca— engine and CA certificate expiry, missing or failed engine backups, clock skew, the engine's own health check.host_health_rca— host certificate expiry and time drift, per host.
Usage Mode
| Scenario | Recommended | Why |
|---|---|---|
| Local/small models | CLI | fewer tokens than MCP |
| Cloud models (Claude, GPT) | Either | MCP gives structured JSON I/O |
| Automated pipelines | MCP | type-safe parameters, audited |
MCP Tools (17 — 15 read, 2 undo)
| Tool | What it answers |
|---|---|
engine_health_rca | Engine problems ranked: health check, clock skew, engine/CA certificate expiry, engine backups, cluster HA reservation, data-center status |
host_health_rca | Host problems ranked: broken states with status detail, reinstall/update flags, host certificate expiry, host events |
storage_capacity_rca | Storage problems ranked: critical blocker, low space, over-commit, inactive attached domains, storage events |
vm_health_rca | VM problems ranked: stuck, paused, image locked, HA VMs down, pending config restarts, VM events |
datacenter_list | Data centers, status, compatibility version |
cluster_list | Clusters, compatibility version, CPU type, memory over-commit |
host_list / host_get | Hosts: status, SPM role, memory, VM counts (engine search supported) |
storage_domain_list / storage_domain_get | Domains: data-center-scoped status, free/used/committed bytes and % |
vm_list / vm_get | VMs: status, host, vCPUs, memory, HA, start/stop time (engine search supported) |
vm_stats | A VM's current memory, CPU %, network and disk statistics with units |
event_list | Events newest first: severity threshold, page, after_index cursor (oldest first), since_minutes |
job_list | Jobs newest first, optional status filter |
undo_list / undo_apply | Harness undo log (empty in this read-only release) |
Any listing with a limit returns returned, limit and a measured truncated. A field the engine did not report is null, never an invented 0.
CLI Quick Reference
olvm-aiops engine health # engine findings: health check, clock, certificates, backups
olvm-aiops host health # host findings, worst first
olvm-aiops storage capacity # storage findings, worst first
olvm-aiops vm health # VM findings, worst first
olvm-aiops host list --search 'status!=up'
olvm-aiops storage list
olvm-aiops vm list --search 'status=up'
olvm-aiops vm stats
olvm-aiops event list --min-severity warning --since-minutes 60
olvm-aiops event list --after-index 1234
olvm-aiops job list --status failed
olvm-aiops datacenter list
olvm-aiops cluster list
olvm-aiops doctor
Add --json to any list or diagnosis for the full payload. See references/cli-reference.md.
Troubleshooting
"Config file not found"
Run olvm-aiops init, or create ~/.olvm-aiops/config.yaml with a targets list.
"No password for target ''"
Store it with olvm-aiops secret set .
"Master password not set" / "Wrong master password"
Export OLVM_AIOPS_MASTER_PASSWORD for non-interactive use, or run the CLI on a terminal to be prompted.
"Engine SSO login failed … Cannot authenticate user"
The username must include its profile. On an engine where setup enabled Keycloak (the default since 4.5.1) the admin is admin@ovirt@internalsso; without Keycloak it is admin@internal.
"TLS verification failed … IP address mismatch"
The engine answered, but its certificate names the engine's FQDN, not its IP. Use the FQDN in url and point ca_file at the engine CA — this is not a connectivity fault.
"… timed out after 30s"
The engine accepted the connection but did not answer in time. Raise timeout for the target in config.yaml.
"Could not connect to … within 30s"
Nothing answered the connection attempt: the engine is down, a firewall drops the port, or url names the wrong host. A longer timeout will not help.
"Not retried: the last login failed …"
A login was refused less than 60 s ago, so the tool waits instead of trying again — repeated attempts with a wrong password can lock the engine account. Fix the stored password (olvm-aiops secret set ) and retry after the wait.
"Not authorized (403)"
The account is valid but its role does not cover the object. Grant a role (for read-only use, ReadOnlyAdmin) in the Administration Portal.
"Not found (404)"
The id is stale — list the parent collection again.
Audit & Safety
The skill reads and records; it does not decide what an agent may change. That belongs to the engine account you connect it with — give it a read-only role and the engine itself refuses anything else.
- Audit is the guarantee, and it is not bypassable. Every call — MCP and CLI alike — is logged to
~/.olvm-aiops/audit.db(relocatable viaOLVM_AIOPS_HOME): params (secrets redacted), result, status, duration, and the risk tier. - The engine password is stored encrypted in
~/.olvm-aiops/secrets.enc(Fernet/AES-128 + scrypt key derivation; chmod 600); the master password is never stored. The SSO token is held only in memory and revoked when the connection closes. - SSO session ids that the engine prints in login events are redacted before any event text is returned.
- Budget / runaway guard — a safety backstop, not authorization: caps cumulative tool calls and wall-time, and trips on tight polling loops.
- Risk tier is a descriptive label on the audit row derived from
risk_level; it gates nothing.
The harness is bundled in the package — no external dependency, no manual setup. See references/setup-guide.md for security details.
Contributing & feature requests
Coverage is intentionally focused. Missing a capability you need, or seeing an engine answer differently from what this tool expects? Open an issue or pull request at github.com/AIops-tools/OLVM-AIops — feature requests, contributions, and comments are all welcome.
License
相关技能
把自然语言描述转为结构化 JSON,并由 mcp-diagram-generator MCP 服务生成 Draw.io、Mermaid 或 Excalidraw 图表文件。
按用户明确指令,在得到大脑(Get笔记)中保存、搜索并管理笔记与知识库。
在本地磁盘以分类纯 Markdown 文件保存需要长期留存的事实,与智能体内置记忆并存。
诊断生产力系统反复失效的根因,给出最小干预——容量测算、瓶颈定位、可靠的本地记录。
通过托管 OAuth 访问 Microsoft Graph Excel 接口,读写 OneDrive 中的工作簿、工作表、区域、表格与图表。
zw008 的更多技能
浏览全部技能通过 33 个 MCP 工具查询 VMware Aria Operations 的指标、告警、容量、异常与报告。
通过 21 个 MCP 工具或配套 CLI,管理 NSX-T 分布式防火墙策略、安全组、VM 标签、Traceflow 与 IDPS。
用 28 个读写工具管理 AVI 虚拟服务、AKO Ingress 与后端成员,覆盖 NSX ALB 运维场景。
用自然语言管理 vSphere Kubernetes Service 的 Supervisor 集群、命名空间与 TKC 集群生命周期。
通过 33 个 CLI/MCP 工具管理 NSX-T 网段、Tier-0/Tier-1 网关、NAT、静态路由与 IP 池。
为 VMware 多步操作设计审批流程、追踪状态、失败时自动回滚的统一编排入口。