{
  "schema": "https://ai-atoms.com/schemas/skill-v1.json",
  "type": "skill",
  "id": "skill/busybox-on-windows",
  "version": "1.0.0",
  "name": "Busybox On Windows",
  "description": "How to use a Win32 build of BusyBox to run many of the standard UNIX command line tools on Windows.",
  "system_prompt_fragment": "BusyBox is a single binary that implements many common Unix tools.\n\nUse this skill only on Windows. If you are on UNIX, then stop here.\n\nRun the following steps only if you cannot find a `busybox.exe` file in the same directory as this document is. \nThese are PowerShell commands, if you have a classic `cmd.exe` terminal, then you must use `powershell -Command \"...\"` to run them.\n1. Print the type of CPU: `Get-CimInstance -ClassName Win32_Processor | Select-Object Name, NumberOfCores, MaxClockSpeed`\n2. Print the OS versions: `Get-ItemProperty \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\" | Select-Object ProductName, DisplayVersion, CurrentBuild`\n3. Download a suitable build of BusyBox by running one of these PowerShell commands:\n   - 32-bit x86 (ANSI): `$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox.exe -OutFile busybox.exe`\n   - 64-bit x86 (ANSI): `$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64.exe -OutFile busybox.exe`\n   - 64-bit x86 (Unicode): `$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64u.exe -OutFile busybox.exe`\n   - 64-bit ARM (Unicode): `$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64a.exe -OutFile busybox.exe`\n\nUseful commands:\n- Help: `busybox.exe --list`\n- Available UNIX commands: `busybox.exe --list`\n\nUsage: Prefix the UNIX command with `busybox.exe`, for example: `busybox.exe ls -1`\n\nIf you need to run a UNIX command under another CWD, then use the absolute path to `busybox.exe`.\n\nDocumentation: https://frippery.org/busybox/\nOriginal BusyBox: https://busybox.net/\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.",
  "applicable_domains": [
    "other"
  ],
  "category": "other",
  "invocation": [
    "/busybox-on-windows"
  ],
  "authored_by": "claudeskills.in community",
  "source_url": "https://claudeskills.in/skill/busybox-on-windows",
  "provenance": {
    "source": "claudeskills.in",
    "source_url": "https://claudeskills.in/skill/busybox-on-windows",
    "license": "MIT",
    "imported_at": "2026-09-03",
    "notes": "Aggregated by claudeskills.in from community GitHub lists."
  },
  "tags": [
    "claudeskills",
    "other"
  ],
  "lifecycle": "draft"
}