# Send Windows 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": "windows",
    "name": "Windows",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/ivangdavila/windows",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/windows",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/windows",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=windows",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "windows",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T18:45:48.608Z",
      "expiresAt": "2026-05-06T18:45:48.608Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=windows",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=windows",
        "contentDisposition": "attachment; filename=\"windows-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "windows"
      },
      "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/windows"
    },
    "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/windows",
    "downloadUrl": "https://openagent3.xyz/downloads/windows",
    "agentUrl": "https://openagent3.xyz/skills/windows/agent",
    "manifestUrl": "https://openagent3.xyz/skills/windows/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/windows/agent.md"
  }
}
```
## Documentation

### Credential Management

Never hardcode passwords in scripts — use Windows Credential Manager:
# Store
cmdkey /generic:"MyService" /user:"admin" /pass:"secret"
# Retrieve in script
$cred = Get-StoredCredential -Target "MyService"


For scripts, use Get-Credential and export securely:
$cred | Export-Clixml -Path "cred.xml"  # Encrypted to current user/machine
$cred = Import-Clixml -Path "cred.xml"

### Silent Failures

Windows Defender silently quarantines downloaded scripts/executables — check quarantine if script disappears
Group Policy overrides local settings silently — gpresult /r to see what's actually applied
Antivirus real-time scanning blocks file operations intermittently — add exclusions for build/automation folders
PowerShell -ErrorAction SilentlyContinue hides problems — use Stop and handle explicitly

### Symbolic Links

Creating symlinks requires admin OR SeCreateSymbolicLinkPrivilege — regular users fail silently
Enable Developer Mode for symlinks without admin: Settings → For Developers → Developer Mode
mklink is CMD-only, PowerShell uses New-Item -ItemType SymbolicLink

### Script Signing

Unsigned scripts fail on restricted machines with confusing errors — sign for production:
$cert = Get-ChildItem Cert:\\CurrentUser\\My -CodeSigningCert
Set-AuthenticodeSignature -FilePath script.ps1 -Certificate $cert


AllSigned policy requires ALL scripts signed including profile.ps1

### Operational Safety

Always -WhatIf first on destructive operations — Remove-Item -Recurse -WhatIf
Start-Transcript for audit trail — forgotten until incident investigation
NTFS permissions: icacls for CLI, but inheritance rules are non-obvious — test changes on copy first

### WinRM Remoting

Enable correctly: Enable-PSRemoting -Force isn't enough on workgroups
Workgroup machines need TrustedHosts: Set-Item WSMan:\\localhost\\Client\\TrustedHosts -Value "server1,server2"
HTTPS remoting needs certificate setup — HTTP sends credentials readable on network

### Event Logging

Scripts should log to Windows Event Log for centralized monitoring:
New-EventLog -LogName Application -Source "MyScript" -ErrorAction SilentlyContinue
Write-EventLog -LogName Application -Source "MyScript" -EventId 1000 -Message "Started"


Custom event sources require admin to create — create during install, not runtime

### File Locking

Windows locks files aggressively — test file access before operations:
try { [IO.File]::OpenWrite($path).Close(); $true } catch { $false }


Scheduled tasks writing to same file as user → conflicts. Use unique temp files and atomic rename

### Temp File Hygiene

$env:TEMP fills silently — scripts should cleanup with try/finally:
$tmp = New-TemporaryFile
try { ... } finally { Remove-Item $tmp -Force }


Orphaned temp files accumulate across reboots — unlike Linux /tmp

### Service Account Gotchas

Services run in different user context — $env:USERPROFILE points to system profile, not user's
Network access from SYSTEM account uses machine credentials — may fail where user succeeds
Mapped drives don't exist for services — use UNC paths \\\\server\\share
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-04-29T18:45:48.608Z
- Expires at: 2026-05-06T18:45:48.608Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/windows)
- [Send to Agent page](https://openagent3.xyz/skills/windows/agent)
- [JSON manifest](https://openagent3.xyz/skills/windows/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/windows/agent.md)
- [Download page](https://openagent3.xyz/downloads/windows)