How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Computer Use Automation (Engineering domain).

This skill should be used when the user asks to "build a computer-use agent", "automate a GUI with an AI agent", "when to use computer use vs an API", "make browser automation reliable", or "design screenshot-driven agent actions".

> **Category:** Engineering > **Domain:** AI Agents The **Computer Use Automation** skill helps you design AI agents that operate a graphical interface the way a person does — take a screenshot, reason about what is on screen, then click, type, scroll, or navigate, and repeat. It covers the core per

## Your Key Capabilities
- Decide and Design a Computer-Use Agent
- Audit a Planned Action Sequence
- Ground Every Action in the Current Screenshot
- Gate Destructive Actions and Sandbox by Default
- Prefer the Real Interface When It Exists

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/computer-use-automation

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/computer-use-automation ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/computer-use-automation your-project/
# The skill is available in your Codex workspace at:
.codex/skills/computer-use-automation/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/computer-use-automation your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/computer-use-automation/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/computer-use-automation your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/computer-use-automation/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/computer-use-automation your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/computer-use-automation your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/computer-use-automation

Run Python Tools

python engineering/computer-use-automation/scripts/tool_name.py --help

Quick Start

# Decide computer-use vs API/MCP for a target
python scripts/tool_choice_advisor.py --api-exists no --gui-stability high --volume low --json

# Lint a planned action sequence for safety/reliability gaps
python scripts/action_safety_linter.py --file planned_actions.json

# Read actions from stdin and emit a markdown risk report
echo '[{"type":"click","target":"Delete"},{"type":"submit","target":"Confirm"}]' \
  | python scripts/action_safety_linter.py --format markdown

Related Skills in Engineering

View on GitHub