# Send PC Master to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pc-master",
    "name": "PC Master",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Amirgu/pc-master",
    "canonicalUrl": "https://clawhub.ai/Amirgu/pc-master",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pc-master",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pc-master",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/windows-apps.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pc-master",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T19:25:09.374Z",
      "expiresAt": "2026-05-13T19:25:09.374Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pc-master",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pc-master",
        "contentDisposition": "attachment; filename=\"pc-master-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pc-master"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pc-master"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pc-master",
    "downloadUrl": "https://openagent3.xyz/downloads/pc-master",
    "agentUrl": "https://openagent3.xyz/skills/pc-master/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pc-master/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pc-master/agent.md"
  }
}
```
## Documentation

### PC Master — Windows Control from WSL2

All Windows binaries are accessible via /mnt/c/Windows/System32/. Call them directly from bash.

### Prerequisites

WSL2 interop must be working. If .exe calls fail with UtilAcceptVsock errors, ask the user to run wsl --shutdown in Windows and relaunch WSL.

### Processes

# List all processes
/mnt/c/Windows/System32/tasklist.exe

# Filter by name
/mnt/c/Windows/System32/tasklist.exe /FI "IMAGENAME eq chrome.exe"

# Kill by name
/mnt/c/Windows/System32/taskkill.exe /F /IM chrome.exe

# Kill by PID
/mnt/c/Windows/System32/taskkill.exe /F /PID 1234

### Launch Applications

# Open a URL in default browser
/mnt/c/Windows/System32/cmd.exe /c "start https://google.com"

# Open an app by name
/mnt/c/Windows/System32/cmd.exe /c "start chrome"
/mnt/c/Windows/System32/cmd.exe /c "start spotify"
/mnt/c/Windows/System32/cmd.exe /c "start notepad"

# Open a file with its default app
/mnt/c/Windows/System32/cmd.exe /c "start C:\\\\Users\\\\User\\\\file.pdf"

# Launch full path
/mnt/c/Windows/System32/cmd.exe /c "start \\"\\" \\"C:\\\\Program Files\\\\App\\\\app.exe\\""

⚠️ cmd.exe /c start must be run from a Windows path. Use /mnt/c/Windows/System32/cmd.exe /c "cd /d C:\\ && start ..." if cwd is a UNC path (WSL path).

### PowerShell (advanced)

PS=/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe

# Run a command
$PS -NonInteractive -Command "Get-Process | Select-Object -First 10"

# Get window titles
$PS -NonInteractive -Command "Get-Process | Where-Object {$_.MainWindowTitle} | Select-Object Name, MainWindowTitle"

# Set volume
$PS -NonInteractive -Command "(New-Object -ComObject WScript.Shell).SendKeys([char]174)"

### Screenshot

# Take a screenshot and save to Windows desktop
PS=/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe
$PS -NonInteractive -Command "Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.Screen]::PrimaryScreen | ForEach-Object { \\$bmp = New-Object System.Drawing.Bitmap(\\$_.Bounds.Width, \\$_.Bounds.Height); \\$g = [System.Drawing.Graphics]::FromImage(\\$bmp); \\$g.CopyFromScreen(\\$_.Bounds.Location, [System.Drawing.Point]::Empty, \\$_.Bounds.Size); \\$bmp.Save('C:\\\\screenshot.png') }"

### File System (Windows paths)

# Windows C:\\ is at /mnt/c/ in WSL
ls /mnt/c/Users/
cat /mnt/c/Users/Username/Desktop/file.txt
cp /mnt/c/Users/Username/Downloads/file.zip /mnt/c/Users/Username/Desktop/

# Find Windows username
ls /mnt/c/Users/ | grep -v "Public\\|Default\\|All Users"

### System Info

# Windows version
/mnt/c/Windows/System32/cmd.exe /c "ver"

# Disk usage
/mnt/c/Windows/System32/cmd.exe /c "wmic logicaldisk get size,freespace,caption"

# Network info
/mnt/c/Windows/System32/ipconfig.exe

### Common Patterns

Close and reopen an app:

/mnt/c/Windows/System32/taskkill.exe /F /IM chrome.exe
sleep 2
/mnt/c/Windows/System32/cmd.exe /c "start chrome"

Check if app is running:

/mnt/c/Windows/System32/tasklist.exe /FI "IMAGENAME eq spotify.exe" | grep -i spotify && echo "Running" || echo "Not running"

Open a specific website:

/mnt/c/Windows/System32/cmd.exe /c "start https://www.google.com"

### Notes

Output may contain garbled characters (Windows encoding vs UTF-8) — this is normal, content is still readable
Some GUI apps launched via start won't produce output — that's expected
For interactive PowerShell scripts, write to a temp file and read it back instead of capturing stdout directly
See references/windows-apps.md for common app executable names
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Amirgu
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T19:25:09.374Z
- Expires at: 2026-05-13T19:25:09.374Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pc-master)
- [Send to Agent page](https://openagent3.xyz/skills/pc-master/agent)
- [JSON manifest](https://openagent3.xyz/skills/pc-master/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pc-master/agent.md)
- [Download page](https://openagent3.xyz/downloads/pc-master)