ops-desktop — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ops-desktop (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
/ops:desktop drives a real GUI desktop (Linux noVNC pool, partial macOS / Windows support) through the desktop-act FastMCP server. Use it for tasks that browser-only automation can't reach: native dialogs, OS file pickers, multi-window flows, screen-recording verification.
The MCP tool schemas are deferred. Load them with ToolSearch on demand:
ToolSearch select:mcp__desktop-act__acquire_desktop,mcp__desktop-act__screenshot,mcp__desktop-act__click,mcp__desktop-act__type_text,mcp__desktop-act__release_desktopBefore any route runs, resolve:
${CLAUDE_PLUGIN_ROOT} — used to locate the launcher.${CLAUDE_PLUGIN_ROOT}/mcp-servers/desktop-act-launcher.py — auto-discovers an installed desktop-act marketplace or, if absent, clones from $DESKTOP_ACT_REPO (default https://github.com/your-org/desktop-act.git) and bootstraps a venv on first run.http://<box-host>:6081 — primary desktop. acquire_desktop() provisions extra sessions on :6082+.$SSH_CONNECTION, $SSH_CLIENT, or $SSH_TTY is set, emit compact text-only output per Rule 7 (no banners, no tables, plain lines). The noVNC URL is the one piece the user definitely needs — print it once on a copy-able line.Parse $ARGUMENTS and route. First token decides:
| First arg | Route |
|---|---|
(empty) / status | Print MCP status, default noVNC URL, active sessions, and platform support note |
list | mcp__desktop-act__list_desktops — show pool state |
release <id> | mcp__desktop-act__release_desktop(session_id) — free a session |
release-all | Release every session this skill has open this turn |
| anything else | Treat as a goal — acquire → observe → drive → verify → release |
Anything else: treat the whole argument string as the goal.
status (default)mcp__desktop-act__status (auto-load schema first)./plugin marketplace add <repo> && /plugin install desktop-act)export DESKTOP_ACT_COMMAND=/path/to/run.sh)export DESKTOP_ACT_REPO=https://...)listToolSearch select:mcp__desktop-act__list_desktopsCall it. Format as session_id · display · vnc · last_used. Linux only renders full info; macOS/Windows fall back to a "limited platform" note.
release <id> / release-allPer Rule 5 (destructive actions): release_desktop tears down the X server. Ask before bulk release:
AskUserQuestion: Release session abcd1234?
[Release] [Skip]For release-all, batch confirm once.
The autonomous loop. Use this when the owner types /ops:desktop open the AWS console and screenshot the ECS cluster page.
# Load schemas
ToolSearch select:mcp__desktop-act__acquire_desktop,mcp__desktop-act__screenshot,...
session = mcp__desktop-act__acquire_desktop()
session_id = session["session_id"]
display = session["display"] # e.g. ":51"
novnc_url = session["novnc_url"] # e.g. http://host:6082Print the noVNC URL on a line by itself so the user can watch live. On mobile, the URL is the most useful thing — surface it FIRST.
shot = mcp__desktop-act__screenshot(session_id=session_id)
Read(file_path=shot["path"]) # let Claude see the screenIf you need window-level metadata before clicking blindly:
windows = mcp__desktop-act__list_windows(session_id=session_id)Two modes:
A. Streaming primitives — full reasoning visibility, per-action transparency. Preferred for sensitive flows (anything touching credentials, billing pages, destructive UIs).
mcp__desktop-act__launch_app(session_id, app="firefox")
mcp__desktop-act__click(session_id, x=640, y=400)
mcp__desktop-act__type_text(session_id, text="ECS clusters")
mcp__desktop-act__keypress(session_id, key="Return")
mcp__desktop-act__scroll(session_id, direction="down", amount=3)
mcp__desktop-act__screenshot(session_id) # verifyB. Autonomous loop — hands the goal to act() which runs claude-agent-sdk against the OAuth-bundled CLI (no API key needed; rides Claude Max). Faster but less observable.
result = mcp__desktop-act__act(
session_id=session_id,
goal="$ARGUMENTS",
max_steps=20,
)For multi-step macros, prefer batch (single round-trip) or act_step (one micro-step at a time with explicit verification).
Always screenshot and Read the path once at the end before claiming the goal is done. If the verification screenshot doesn't show the expected state, iterate or escalate to the user.
Always release in the same turn, even on failure:
mcp__desktop-act__release_desktop(session_id=session_id)If the user wants to keep the session for follow-up actions, ask first via AskUserQuestion:
Keep session abcd1234 alive for follow-up?
[Keep] [Release]| OS | Status | Notes |
|---|---|---|
| Linux | Full | X11 + Xvnc + websockify + python-xlib. Multi-desktop pool live. |
| macOS | Partial | Server runs; native X11 calls no-op. Browser tools still work. |
| Windows | Partial | Server runs via Python launcher. Native automation requires manual. |
On non-Linux platforms, prefer Kapture (mcp__kapture__*) or Playwright for browser-only tasks. The launcher prints a clear "limited platform" notice if it can't bring up a full session.
AskUserQuestion first per Rule 5./ops:desktop gets its own session_id. Don't pass session IDs between concurrent agents or skills./ops:desktop # status
/ops:desktop list # pool state
/ops:desktop release abcd1234 # free session
/ops:desktop open the AWS ECS console and screenshot the my-project-api cluster
/ops:desktop launch Firefox and navigate to https://finops.lifecycleinnovations.limited$ARGUMENTS
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.