โ† All skills
Tencent SkillHub ยท Developer Tools

Handsfree Windows Control

Guide skill for controlling native Windows apps (UIA) and web browsers (Playwright) via the handsfree-windows CLI. Use when you need to automate or test desk...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Guide skill for controlling native Windows apps (UIA) and web browsers (Playwright) via the handsfree-windows CLI. Use when you need to automate or test desk...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/check_setup.py, scripts/setup.py, references/api_reference.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.3.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Handsfree Windows Control

A guide skill for automating native Windows apps (UIA) and web browsers (Playwright) via the handsfree-windows CLI.

First use: auto-setup

On first use, run setup before issuing any other commands: python scripts/setup.py This will: Clone handsfree-windows from GitHub into ~/.handsfree-windows/cli/ (public repo, read-only) Install it via pip install -e (standard pip editable install) Install Playwright + Chromium browser binaries (~200 MB one-time download from cdn.playwright.dev) Run check_setup.py to verify everything is working To skip browser installation (browser-* commands will not work): python scripts/setup.py --no-browser To install to a custom directory: python scripts/setup.py --install-dir "C:\your\preferred\path" Already installed? Verify anytime: python scripts/check_setup.py

What is written to disk (transparent)

CLI source code: ~/.handsfree-windows/cli/ (or --install-dir) pip editable link: standard site-packages egg-link (pip managed) Browser persistent profiles: ~/.handsfree-windows/browser-profiles/<engine>/ Contains cookies and login sessions. Delete to reset browser auth. Browser session state: ~/.handsfree-windows/browser-state.json (last visited URL) Playwright browser binaries: ~\AppData\Local\ms-playwright\ (~800 MB, Windows) To fully remove everything: pip uninstall handsfree-windows -y Remove-Item -Recurse -Force "$env:USERPROFILE\.handsfree-windows"

Core rules

Do not guess UI controls. Run hf tree or hf inspect first, then act on what is actually there. Do not type credentials. Navigate to login screens; let the human complete auth. Prefer UIA selectors (name + control_type) over raw coordinates. Use drag-canvas only for canvas/ink surfaces (Paint, drawing apps, etc.). For destructive actions (delete, submit, send), ask the human for confirmation first.

Workflow: Desktop app (UIA)

# Launch any installed app hf start --app "Outlook" # Find the window hf list-windows --json # Discover controls (no guessing) hf tree --title-regex "Outlook" --depth 10 --max-nodes 30000 # Act on what was found hf click --title "Outlook" --name "New mail" --control-type "Button" # Inspect element under cursor hf inspect --json

Workflow: Browser (Playwright)

# Open URL - login sessions saved in profile automatically hf browser-open --url "https://example.com" # Inspect page before acting hf browser-snapshot --fmt text # Act hf browser-click --text "Sign in" hf browser-type --selector "#email" --text "user@example.com" # Verify hf browser-screenshot --out result.png

Mixed macro (desktop + web in one YAML)

  • action: start
  • args:
  • app: "My Desktop App"
  • action: browser-open
  • args:
  • url: "https://app.example.com"
  • headless: false
  • action: browser-click
  • args:
  • text: "Get Started"
  • action: sleep
  • args:
  • seconds: 1
  • Run with: hf run macro.yaml

References

Full command reference + selector schema: references/api_reference.md

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts
  • SKILL.md Primary doc
  • references/api_reference.md Docs
  • scripts/check_setup.py Scripts
  • scripts/setup.py Scripts