gnome-ui-automation

gnome-ui-automation is a skill for Claude Code from asattelmaier/gnome-ui-mcp. It costs 45 tokens per session (738 once invoked), scanned A, original, MIT.

Instructions for controlling applications on a GNOME desktop through its accessibility system. GNOME is a Linux desktop environment, and accessibility discovery lets tools identify interface elements such as buttons and text fields.

In plain words
What is it for?
Use it to list applications, find interface elements, click or activate them, type text, navigate windows and menus, and confirm results with waits or screenshots.
Why use it?
It provides a way to find and operate desktop controls when terminal commands or web automation are not enough.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the gnome-ui-mcp plugin — 4 skills, 2 MCP servers shipped together

Good fit Use it to list applications, find interface elements, click or activate them, type text, navigate windows and menus, and confirm results with waits or screenshots.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/asattelmaier/gnome-ui-mcp/gnome-ui-automation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add asattelmaier/gnome-ui-mcp --skill gnome-ui-automation
Clone the repo
git clone --depth 1 https://github.com/asattelmaier/gnome-ui-mcp

Made for: Claude Code.

Or install gnome-ui-mcp, the plugin that ships this one along with the rest of its 4 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gnome-ui-automation

README.md
[![agentmods](https://agentmods.dev/badge/skills/asattelmaier/gnome-ui-mcp/gnome-ui-automation/github.svg)](https://agentmods.dev/skills/asattelmaier/gnome-ui-mcp/gnome-ui-automation)
Your own site
<a href="https://agentmods.dev/skills/asattelmaier/gnome-ui-mcp/gnome-ui-automation"><img src="https://agentmods.dev/badge/skills/asattelmaier/gnome-ui-mcp/gnome-ui-automation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gnome-ui-automation

Your own site · 80×15
<a href="https://agentmods.dev/skills/asattelmaier/gnome-ui-mcp/gnome-ui-automation"><img src="https://agentmods.dev/badge/skills/asattelmaier/gnome-ui-mcp/gnome-ui-automation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 738 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.00738
Opus 5 $0.00023 $0.00369
Sonnet 5 $0.00009 $0.00148
Haiku 4.5 $0.00005 $0.00074

Measured 12d ago against content hash bb789abd52a4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

gnome-ui-automation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/gnome-ui-automation/SKILL.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Core Concepts

Desktop lifecycle: AT-SPI connects lazily on the first tool call. The server requires a running GNOME Wayland session with accessibility enabled (gsettings set org.gnome.desktop.interface toolkit-accessibility true).

Element identification: Use find_elements to search for UI elements by text, role, or application. Each element has a unique id (e.g. 0/1/2) that represents its path in the AT-SPI tree. Element IDs can become stale after UI changes.

Input backends: The server tries Mutter Remote Desktop first for keyboard and mouse input, falling back to AT-SPI if unavailable. This is transparent to the caller.

Workflow Patterns

Before interacting with an element

  1. Discover: list_applications to see running apps
  2. Find: find_elements with a text query and optional role filter
  3. Verify: Check the element's id, role, and bounds in the result
  4. Act: Use click_element, activate_element, or type_text
  5. Confirm: wait_for_element or screenshot to verify the action took effect

Clicking elements

  • Prefer click_element over click_at when you have an element ID
  • Use activate_element when click doesn't work (tries action, keyboard, then mouse fallback)
  • Use find_and_activate for a single find-then-activate step
  • Check input_injected and effect_verified in the response to confirm success

Typing text

  • type_text types at the current keyboard focus
  • set_element_text replaces the full text content of an editable element
  • type_into combines OCR-based label finding with typing (for forms)

Menu navigation

  • navigate_menu walks a menu path like ["File", "Save As..."]
  • Each step finds and activates the menu item, waiting for submenus to appear

Window management

  • list_windows to find windows, close_window to close the focused one
  • move_window, resize_window, snap_window for layout control
  • toggle_window_state for fullscreen/maximize/minimize

Efficient discovery

Read the full file on GitHub · 73 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 73 lines · 45 tokens per session scan A bb789abd52a4

Subscribe to this mod's changes

gnome-ui-automation is a skill published in the GitHub repository asattelmaier/gnome-ui-mcp (1 stars, last pushed 27d ago), licensed MIT. It adds 45 tokens to every session and 738 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

computer-use

A set of rules for controlling Windows desktop applications through screen observation and simulated mouse and keyboard actions. It also describes how to find and launch installed applications and verify the results.

Plocr/Reasonix-computer-use · 23 tokens

web-navigator

A browser-automation routing guide for web tasks. It directs navigation, page inspection, and actions such as clicking or filling forms to the appropriate browser tool.

Plocr/Reasonix-computer-use · 30 tokens

computer-use

Linux/X11 desktop control — inspect, click, type into visible windows via AT-SPI + xdotool. Returns @eN refs from the focused window's accessibility tree.

tak-uukti/linux-computer-use · 39 tokens

agent-desktop

Reliable computer use via native OS accessibility trees. Use when an AI agent needs to see and operate desktop applications (click buttons, fill forms, navigate menus, read UI state, toggle checkboxes, scroll, drag, type text, take screenshots, manage windows, use clipboard, manage notifications). Covers 59 command…

lahfir/agent-desktop · 210 tokens

agent-desktop-ffi

C-ABI bindings over agent-desktop's PlatformAdapter. Consumers (Python ctypes, Swift, Node ffi-napi, Go cgo, C++, Ruby fiddle) link libagentdesktopffi.{dylib,so,dll} and call ad functions directly instead of spawning the CLI binary per call. The canonical observe-act workflow is: adinit → adadaptercreate[withsession]…

lahfir/agent-desktop · 111 tokens

tauri-pilot

Inspect, interact with, and test a running Tauri v2 app via CLI. Communicates over Unix socket using JSON-RPC 2.0. Use when testing UI, automating interactions, or debugging a Tauri app.

mpiton/tauri-pilot · 52 tokens