Borrowing it
Nothing to install: this file belongs to tiefeiyu/qt-commander. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/tiefeiyu/qt-commander/master/.claude/skills/qt-commander-ui/SKILL.mdgit clone --depth 1 https://github.com/tiefeiyu/qt-commanderWrote 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.
[](https://agentmods.dev/skills/tiefeiyu/qt-commander/qt-commander-ui)<a href="https://agentmods.dev/skills/tiefeiyu/qt-commander/qt-commander-ui"><img src="https://agentmods.dev/badge/skills/tiefeiyu/qt-commander/qt-commander-ui/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.
<a href="https://agentmods.dev/skills/tiefeiyu/qt-commander/qt-commander-ui"><img src="https://agentmods.dev/badge/skills/tiefeiyu/qt-commander/qt-commander-ui.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00085 | $0.00872 |
| Opus 5 | $0.00043 | $0.00436 |
| Sonnet 5 | $0.00017 | $0.00174 |
| Haiku 4.5 | $0.00009 | $0.00087 |
Grade A, and why
qt-commander-ui 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.
How it starts
The opening of the file, as written. The whole thing — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
qt-commander-ui
Drive a running Qt application's UI to complete verification loops. All operations go through the qt-commander MCP tools (configured at user level, available in every project).
When to Use
- Verification tasks that need to click buttons, type text, verify UI state, or capture screenshot evidence
- Not for: pure backend/log verification or process start/stop management (use the project's own verify/run/kill-style skills)
Preflight
- Build the library (first time or after source changes):
qt_detect_msvc_and_qtto discover the environment → confirm build parameters with the user (never auto-pick)qt_build(parameters must match the target process; see references/build-params.md)
- Start the target app and wait for its main window before attaching (during startup the GUI is busy; injection and operations tend to time out with 2004)
qt_attach <pid>(find the pid withqt_list_processes) → confirmconnectedviaqt_list_sessions
Standard Workflow
qt_snapshot(max_depth=1, detail=extended)→ read the snapshot resource (qt-commander://sessions/...) to inspect the UI treeqt_find_elementto locate the target (custom QML components: preferqml_id— the QMLidfrom source, shown on snapshot nodes — then object_name/properties; type_inherits does NOT match QML type names)- Ids are stable until the next
qt_snapshot—qt_find_elementandqt_get_snapshotnever invalidate them; hold onto ids across steps - Need full-tree context after a find? Call
qt_get_snapshot(read-only view) — it never renumbers ids, so the ids you already hold stay valid. Only an explicitqt_snapshotrenumbers. - Capture a
qt_screenshotafter operations as evidence
Operating Discipline (mandatory)
- Mouse clicks always go through the real input pipeline:
qt_mouse_click_region(element center) orqt_mouse_click_at(exact coordinates) — routed through Qt's real event dispatch + hit testing, identical to a human click (QML MouseArea, focus changes, etc. all work). No QWidget/QML distinction. qt_mouse_click(direct delivery to the widget) is a debug fallback only; not for routine use.qt_keyboard_inputis already real input; always use a fresh id — a stale id errors out (Element not found: id=N) instead of silently typing.- 2004 timeout ≠ failure: the request may still execute (at-least-once). Do not blindly retry side-effect operations (click/type/setProperty); snapshot first to verify state.
- Prefer real input; avoid
qt_set_property/qt_call_method(destructive, bypasses the real interaction path). - Before rebuilding the library,
qt_detach(purge=True)(the DLL is locked by the target process, failing the build). - 2007 = definitively not executed, safe to retry (unlike 2004; see references/error-codes.md).
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 12d ago First seen · 51 lines · 85 tokens per session scan A f74415df391a
qt-commander-ui is a skill published in the GitHub repository tiefeiyu/qt-commander (2 stars, last pushed 16d ago), licensed MIT. It adds 85 tokens to every session and 872 once invoked, about $0.0004 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.
Other skills, from other repositories
e2e-testing
AI-powered E2E testing for any app — Flutter, React Native, iOS, Android, Electron, Tauri, KMP, .NET MAUI. Connects via MCP to running apps so the agent can take screenshots, tap elements, enter text, scroll, inspect UI trees, and verify state with natural language. Use when the user wants to test an app's UI…
flutter-skill
Automate and test Flutter applications — launch apps, inspect widgets, tap elements, enter text, scroll, swipe, take screenshots, validate state, and debug via Dart VM Service Protocol. Use when the user wants to run Flutter app tests, automate Flutter UI interactions, inspect widget trees, debug a running Flutter…
Appium Mobile Testing
Mobile application testing skill using Appium for iOS and Android, covering device capabilities, selectors, gestures, and cross-platform testing strategies.
E2E Testing Patterns
Comprehensive end-to-end testing methodologies and best practices covering architecture, test design, data management, flakiness prevention, and cross-browser strategies.
axe-core Accessibility Automation
Automated accessibility testing with axe-core integrated into CI pipelines, including custom rule configuration, issue prioritization, and remediation guidance.
CI/CD Pipeline Config
CI/CD pipeline configuration skill for test automation, covering GitHub Actions, Jenkins, GitLab CI, test parallelization, reporting, and artifact management.