Skip to main content
ClaudeWave
Skill34.8k repo starsupdated 3d ago

computer_use

Use computer_use for live Windows or macOS GUI work that structured tools cannot complete. Discover an approved app and window, act from fresh observations, and verify every requested result.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/agentscope-ai/QwenPaw /tmp/computer_use && cp -r /tmp/computer_use/plugins/bundle/computer-use/skills/computer_use ~/.claude/skills/computer_use
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Computer Use

Use Computer Use only for tasks that require a live desktop interface or
visual verification. Prefer a purpose-built integration or command-line tool
when it can complete and verify the task.

Use only the native desktop runtime. It operates on one approved application
and one observed window at a time; it never accepts a free-form screen target.

## Operating Loop

Follow this loop for every task:

1. Discover the canonical application and the correct window.
2. Observe the window and identify the requested state from current evidence.
3. Define the next expected visible or accessible state change.
4. Choose one action channel and perform the smallest useful action.
5. Inspect the replacement observation before deciding the next action.
6. Observe the final state and verify every requested outcome before reporting
   success.

Treat `dispatched: true` or an intermediate acknowledgement only as evidence
that input was sent, not that the application completed the operation. If the
final state is incomplete or uncertain, report that accurately.

## Discover the Target

1. Call `list_apps` and select the canonical App ID.
2. Call `list_windows`, optionally limited by that App ID.
3. Match the target by title, content, and observed state. When several windows
   are plausible, observe them read-only until one matches; never choose only
   because it is first or most recent.
4. Keep using the matched `window_id` until an action explicitly hands off to
   another window.

Use `launch_app` with a canonical App ID. If the application is not listed,
use an explicit absolute executable path on Windows or application-bundle path
on macOS. After launch, list its windows again because launch completion does
not prove that a usable window already exists.

When the runtime reports a missing system permission, stop and ask the user to
grant it. Do not retry until the user confirms the permission was granted.

## Read an Observation

`observe_window` returns a point-in-time window observation with screenshots
and accessibility text. Start with:

- `accessibility.focused_element`: the control that owns keyboard focus.
- `accessibility.document_text`: a capped view of the focused document; never
  assume it contains the complete document when truncated.
- `accessibility.elements`: actionable controls and their current properties.

Each accessibility line begins with an `element_id`, control type, and name.
Use labels, roles, identifiers, actions, and current state together; do not
infer behavior from an opaque identifier alone.

Indentation preserves the native accessibility hierarchy. Use parent and
container context to distinguish controls with duplicate names.

Each attached image has a `screenshots[].id`, image-local dimensions, screen
origin, kind, and z-index. On Windows, one observation may include the selected
window plus related menus, drop-downs, or dialogs. Treat the highest z-index
related image as the frontmost visual surface, while keeping the original
`window_id` as the stable target. Attached images and `screenshots` entries
use the same order.

Common markers:

- `[disabled]`: do not act on this element.
- `[offscreen]`: scroll it into view first.
- `[selected]`: the application selected this exact element.
- `[settable]`: `set_value` is supported.
- `[actions=...]`: invoke only an explicitly listed action.
- `[resource-backed]`: the label represents an application-owned object, not
  an editable text buffer.

When duplicate names exist, discard disabled candidates, then choose by role,
actions, identifier, and surrounding state. Prefer accessibility elements over
coordinates. When `visual.available` is false, continue only with listed
elements, semantic actions, or verified keyboard focus; coordinates are not
valid for that observation.

Every successful desktop mutation invalidates its input observation. The
response normally installs and returns a settled replacement observation.
Inspect it before the next action and derive fresh element IDs from it.
Post-action replacements do not attach images. On Windows,
`visual.related_surface_count` reports related menus, drop-downs, or dialogs
seen during that lightweight refresh. Call `observe_window` before choosing a
visual target or using coordinates.

Interpret result fields conservatively:

- `accessibility_changed: false` means no AX-visible transition was observed;
  it does not rule out a visual-only change.
- `effect: observed` verifies the edited buffer; `effect: unverified` requires
  confirmation from replacement state or a fresh observation.
- Follow an explicit `next_action` before choosing another action. Use a
  returned replacement observation or window when present.
- `requires_observe` invalidates the current observation, not necessarily the
  window. Reobserve the current or returned window for `observe_window`; use
  `list_windows` to rediscover a target only when instructed.
- `confirmation_required` or `pending_action` means the edit is not complete.

When a visual transition is expected to expose an accessibility element, wait
and observe again until it becomes actionable or the operation times out or
stops making progress. For a stable control with no accessibility
representation, use current screenshot coordinates as described below and
observe again after acting.

`wait` only delays execution; it does not observe or verify application state.
Call `observe_window` afterward when current state is needed.

## Choose an Action

Use the safest channel that expresses the requested operation:

1. Use an observed semantic element when available.
2. Use a platform-standard shortcut when focus and target are verified.
3. Use current screenshot coordinates only when accessibility is unavailable
   or unsuitable.

Preserve the semantics and side effects of the requested operation. Do not
approximate an unsupported operation with a broader sequence that adds side
effects. If no available action preserves the reques
edu-math-tutorialSkill

|

alicloud_cliSkill

阿里云 CLI 中文文档镜像检索与命令辅助:先走章节索引,再下钻正文页面,给出命令前必须有本地文档证据。

terraform-cli-setupSkill

Terraform CLI 安装与初始化技能。当用户本地未安装 Terraform 时自动完成安装,确保 terraform 命令可用并能执行 init/validate。不负责 Provider 凭证配置,凭证在实际使用时由 terraform-skill 引导。

terraform-skillSkill

Use when working with Terraform or OpenTofu - creating modules, writing tests (native test framework, Terratest), setting up CI/CD pipelines, reviewing configurations, choosing between testing approaches, debugging state issues, implementing security scanning (trivy, checkov), or making infrastructure-as-code architecture decisions

omp-rolesSkill
QA_source_indexSkill

将用户问题中的主题、关键词映射到 QwenPaw 官方文档路径与常见源码入口,减少盲目搜索。适用于内置 QA Agent 在回答安装、配置、技能、MCP、多智能体、记忆、CLI 等问题时快速选定要读的文件。

browserSkill

用异步 Python 调用 QwenPaw 内置 Browser SDK 驱动真实浏览器。完整参考在下方;上下文压缩后请重新加载此 browser skill。

channel_messageSkill

当需要主动向用户、会话或频道单向发送消息时,使用本 skill。通常仅在用户明确要求向某个 channel / 会话发送消息,或需要主动通知时使用。先用 qwenpaw chats list 查询 session,再用 qwenpaw channels send 推送消息。