eval/skills/eval-sway-browser-vnc/SKILL.md
The DISPOSABLE pod bed (eval-sway-browser-vnc-pod) for R10 testing of the Sway desktop verb surface (cdp / wl / vnc / dbus / mcp / record). Deploys the shipping sway-browser-vnc image. Use when running or maintaining the live-container eval bed for the sway stack.
npx skillsauth add overthinkos/overthink-plugins eval-sway-browser-vncInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
eval-sway-browser-vnc-pod is the canonical disposable pod bed for the
live-container test verbs (cdp / wl / vnc / dbus / mcp / record) on the Sway
stack. It deploys the shipping /charly-selkies:sway-browser-vnc image directly
— there is no separate eval image. It sits alongside the other eval-* smoke
beds (eval-pod — the combined image/layer/pod/DeployTarget mechanism bed —
and eval-local) — all kind: eval entities in their project's charly.yml
eval: block (this bed and eval-pod in box/fedora; eval-local in main).
eval: block)eval:
eval-sway-browser-vnc-pod:
target: pod
box: sway-browser-vnc # the shipping image, deployed as-is
disposable: true
lifecycle: dev
eval: # delta probes sway-browser-vnc doesn't bake
- { http: "http://127.0.0.1:${HOST_PORT:9222}/json/version", id: esbv-pod-http-cdp, scope: deploy, status: 200 }
- { cdp: list, id: esbv-pod-cdp-list, scope: deploy }
- { wl: sway-tree, id: esbv-pod-wl-sway-tree, scope: deploy }
- { record: start, id: esbv-pod-record-start, scope: deploy, record_name: eval-term, record_mode: terminal }
disposable: true is the sole authorization for charly update/charly remove to
destroy + rebuild the bed unattended (see /charly-internals:disposable). The bed
publishes sway-browser-vnc's canonical ports 5900/9222/9224, so it shares
those host ports with a real sway-browser-vnc deployment — only one runs at a
time (charly box validate notes this).
sway-browser-vnc already bakes binaries/services + cdp/vnc/wl/dbus checks, and
inherits the two mcp: probes from the chrome-devtools-mcp layer. The bed's
eval: block above adds the remaining deploy-scope probes — operator-side
http: (CDP /json/version via HOST_PORT), cdp: list, wl: sway-tree, and
record: start — so a single charly eval live run exercises the full
cdp/wl/vnc/dbus/mcp/record surface.
# Canonical one-shot — the FULL R10 acceptance sequence (build → eval image →
# deploy → config → start → eval live → fresh update → tear down):
charly eval run eval-sway-browser-vnc-pod
# Or drive the steps manually:
charly config eval-sway-browser-vnc-pod
charly start eval-sway-browser-vnc-pod
charly eval live eval-sway-browser-vnc-pod # deploy-scope cdp/wl/vnc/dbus/mcp/record
charly update eval-sway-browser-vnc-pod && charly eval live eval-sway-browser-vnc-pod # fresh-rebuild re-verify
Note: charly config <key> persists image: <key> (it assumes deploy-key ==
image-name; see /charly-core:deploy). Because this bed's key
(eval-sway-browser-vnc-pod) differs from its image (sway-browser-vnc), set
the operator ref to sway-browser-vnc in ~/.config/charly/charly.yml (the eval
runner / charly deploy add does this for you — charly "never clobbers
operator-authored refs").
/charly-selkies:sway-browser-vnc — the shipping image this bed deploys/charly-eval:eval — the eval framework + the disposable test-bed table/charly-eval:cdp, /charly-eval:wl, /charly-eval:vnc, /charly-eval:dbus, /charly-eval:record,
/charly-build:charly-mcp-cmd — the live-container verbs this bed covers/charly-core:deploy — disposable: bed semantics, the deploy-key vs image-name caveat/charly-internals:disposable — the disposable: true authorization modelMUST be invoked when deploying, running, or troubleshooting the
eval-sway-browser-vnc-pod bed, or when running R10 verification for the Sway
desktop verb surface.
tools
Use when authoring or modifying a charly PLUGIN — a candy with a `plugin:` block that contributes Providers (verbs/kinds/deploy-targets/steps/builders/commands), its own CUE schema, builtin (compiled-in) or external (out-of-tree git repo). Covers the unified Provider model, the per-plugin CUE-schema contract (single source → Go params for dev + schema-over-Describe RPC for runtime), the SDK, and the loader.
tools
The CUE data-validation / configuration CLI (cue), pinned to v0.16.1. Use when working with the cue candy, installing the cue binary into a box or onto a target:local dev host, or running the offline schema-vendoring pipeline that feeds charly's egress validation.
tools
CUE EGRESS validation — validating (and, where it adds value, generating) the config files charly WRITES to a system BEFORE the bytes hit disk. MUST be invoked before working on charly/egress.go, the vendored schemas under candy/plugin-egress/egress-schemas/vendor/, the ValidateEgress / registerVendoredEgressKind path, the offline `task cue:vendor` pipeline, or adding an egress schema for any written artifact (cloud-init, k8s manifests, traefik routes, runtime config, install ledger, systemd/quadlet units, ssh_config, libvirt XML).
tools
Kubernetes cluster-probe declarative check verb — the `kube:` check verb (nodes, pods, ingress, storage class, addon health, apply/delete, and arbitrary resource GETs) served out-of-process by the candy/plugin-kube plugin (vendored client-go; no external kubectl required).