โ† All skills
Tencent SkillHub ยท Security & Compliance

Windows

Windows-specific patterns, security practices, and operational traps that cause silent failures.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Windows-specific patterns, security practices, and operational traps that cause silent failures.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

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

Category context

Identity, auth, scanning, governance, audit, and operational guardrails.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc