{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pc-master",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pc-master",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/windows-apps.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/pc-master",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PC Master — Windows Control from WSL2",
        "body": "All Windows binaries are accessible via /mnt/c/Windows/System32/. Call them directly from bash."
      },
      {
        "title": "Prerequisites",
        "body": "WSL2 interop must be working. If .exe calls fail with UtilAcceptVsock errors, ask the user to run wsl --shutdown in Windows and relaunch WSL."
      },
      {
        "title": "Processes",
        "body": "# List all processes\n/mnt/c/Windows/System32/tasklist.exe\n\n# Filter by name\n/mnt/c/Windows/System32/tasklist.exe /FI \"IMAGENAME eq chrome.exe\"\n\n# Kill by name\n/mnt/c/Windows/System32/taskkill.exe /F /IM chrome.exe\n\n# Kill by PID\n/mnt/c/Windows/System32/taskkill.exe /F /PID 1234"
      },
      {
        "title": "Launch Applications",
        "body": "# Open a URL in default browser\n/mnt/c/Windows/System32/cmd.exe /c \"start https://google.com\"\n\n# Open an app by name\n/mnt/c/Windows/System32/cmd.exe /c \"start chrome\"\n/mnt/c/Windows/System32/cmd.exe /c \"start spotify\"\n/mnt/c/Windows/System32/cmd.exe /c \"start notepad\"\n\n# Open a file with its default app\n/mnt/c/Windows/System32/cmd.exe /c \"start C:\\\\Users\\\\User\\\\file.pdf\"\n\n# Launch full path\n/mnt/c/Windows/System32/cmd.exe /c \"start \\\"\\\" \\\"C:\\\\Program Files\\\\App\\\\app.exe\\\"\"\n\n⚠️ 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)."
      },
      {
        "title": "PowerShell (advanced)",
        "body": "PS=/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe\n\n# Run a command\n$PS -NonInteractive -Command \"Get-Process | Select-Object -First 10\"\n\n# Get window titles\n$PS -NonInteractive -Command \"Get-Process | Where-Object {$_.MainWindowTitle} | Select-Object Name, MainWindowTitle\"\n\n# Set volume\n$PS -NonInteractive -Command \"(New-Object -ComObject WScript.Shell).SendKeys([char]174)\""
      },
      {
        "title": "Screenshot",
        "body": "# Take a screenshot and save to Windows desktop\nPS=/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe\n$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') }\""
      },
      {
        "title": "File System (Windows paths)",
        "body": "# Windows C:\\ is at /mnt/c/ in WSL\nls /mnt/c/Users/\ncat /mnt/c/Users/Username/Desktop/file.txt\ncp /mnt/c/Users/Username/Downloads/file.zip /mnt/c/Users/Username/Desktop/\n\n# Find Windows username\nls /mnt/c/Users/ | grep -v \"Public\\|Default\\|All Users\""
      },
      {
        "title": "System Info",
        "body": "# Windows version\n/mnt/c/Windows/System32/cmd.exe /c \"ver\"\n\n# Disk usage\n/mnt/c/Windows/System32/cmd.exe /c \"wmic logicaldisk get size,freespace,caption\"\n\n# Network info\n/mnt/c/Windows/System32/ipconfig.exe"
      },
      {
        "title": "Common Patterns",
        "body": "Close and reopen an app:\n\n/mnt/c/Windows/System32/taskkill.exe /F /IM chrome.exe\nsleep 2\n/mnt/c/Windows/System32/cmd.exe /c \"start chrome\"\n\nCheck if app is running:\n\n/mnt/c/Windows/System32/tasklist.exe /FI \"IMAGENAME eq spotify.exe\" | grep -i spotify && echo \"Running\" || echo \"Not running\"\n\nOpen a specific website:\n\n/mnt/c/Windows/System32/cmd.exe /c \"start https://www.google.com\""
      },
      {
        "title": "Notes",
        "body": "Output may contain garbled characters (Windows encoding vs UTF-8) — this is normal, content is still readable\nSome GUI apps launched via start won't produce output — that's expected\nFor interactive PowerShell scripts, write to a temp file and read it back instead of capturing stdout directly\nSee references/windows-apps.md for common app executable names"
      }
    ],
    "body": "PC Master — Windows Control from WSL2\n\nAll Windows binaries are accessible via /mnt/c/Windows/System32/. Call them directly from bash.\n\nPrerequisites\n\nWSL2 interop must be working. If .exe calls fail with UtilAcceptVsock errors, ask the user to run wsl --shutdown in Windows and relaunch WSL.\n\nCore Commands\nProcesses\n# List all processes\n/mnt/c/Windows/System32/tasklist.exe\n\n# Filter by name\n/mnt/c/Windows/System32/tasklist.exe /FI \"IMAGENAME eq chrome.exe\"\n\n# Kill by name\n/mnt/c/Windows/System32/taskkill.exe /F /IM chrome.exe\n\n# Kill by PID\n/mnt/c/Windows/System32/taskkill.exe /F /PID 1234\n\nLaunch Applications\n# Open a URL in default browser\n/mnt/c/Windows/System32/cmd.exe /c \"start https://google.com\"\n\n# Open an app by name\n/mnt/c/Windows/System32/cmd.exe /c \"start chrome\"\n/mnt/c/Windows/System32/cmd.exe /c \"start spotify\"\n/mnt/c/Windows/System32/cmd.exe /c \"start notepad\"\n\n# Open a file with its default app\n/mnt/c/Windows/System32/cmd.exe /c \"start C:\\\\Users\\\\User\\\\file.pdf\"\n\n# Launch full path\n/mnt/c/Windows/System32/cmd.exe /c \"start \\\"\\\" \\\"C:\\\\Program Files\\\\App\\\\app.exe\\\"\"\n\n\n⚠️ 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).\n\nPowerShell (advanced)\nPS=/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe\n\n# Run a command\n$PS -NonInteractive -Command \"Get-Process | Select-Object -First 10\"\n\n# Get window titles\n$PS -NonInteractive -Command \"Get-Process | Where-Object {$_.MainWindowTitle} | Select-Object Name, MainWindowTitle\"\n\n# Set volume\n$PS -NonInteractive -Command \"(New-Object -ComObject WScript.Shell).SendKeys([char]174)\"\n\nScreenshot\n# Take a screenshot and save to Windows desktop\nPS=/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe\n$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') }\"\n\nFile System (Windows paths)\n# Windows C:\\ is at /mnt/c/ in WSL\nls /mnt/c/Users/\ncat /mnt/c/Users/Username/Desktop/file.txt\ncp /mnt/c/Users/Username/Downloads/file.zip /mnt/c/Users/Username/Desktop/\n\n# Find Windows username\nls /mnt/c/Users/ | grep -v \"Public\\|Default\\|All Users\"\n\nSystem Info\n# Windows version\n/mnt/c/Windows/System32/cmd.exe /c \"ver\"\n\n# Disk usage\n/mnt/c/Windows/System32/cmd.exe /c \"wmic logicaldisk get size,freespace,caption\"\n\n# Network info\n/mnt/c/Windows/System32/ipconfig.exe\n\nCommon Patterns\n\nClose and reopen an app:\n\n/mnt/c/Windows/System32/taskkill.exe /F /IM chrome.exe\nsleep 2\n/mnt/c/Windows/System32/cmd.exe /c \"start chrome\"\n\n\nCheck if app is running:\n\n/mnt/c/Windows/System32/tasklist.exe /FI \"IMAGENAME eq spotify.exe\" | grep -i spotify && echo \"Running\" || echo \"Not running\"\n\n\nOpen a specific website:\n\n/mnt/c/Windows/System32/cmd.exe /c \"start https://www.google.com\"\n\nNotes\nOutput may contain garbled characters (Windows encoding vs UTF-8) — this is normal, content is still readable\nSome GUI apps launched via start won't produce output — that's expected\nFor interactive PowerShell scripts, write to a temp file and read it back instead of capturing stdout directly\nSee references/windows-apps.md for common app executable names"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Amirgu/pc-master",
    "publisherUrl": "https://clawhub.ai/Amirgu/pc-master",
    "owner": "Amirgu",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}