From pc-optimizer
Interactive Windows 11 performance optimizer. Shows what each batch will do and asks for confirmation before applying. Creates a full revert snapshot first.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pc-optimizer:pc-optimizeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Apply performance optimizations to this Windows 11 machine, one batch at a time with user confirmation.
Apply performance optimizations to this Windows 11 machine, one batch at a time with user confirmation.
Check if C:\ProgramData\pc-optimizer\scripts\audit.ps1 exists. If not, deploy scripts (see /pc-scan Step 1 for how).
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\audit.ps1" "C:\Temp\pc-optimizer-profile.json"
Read the profile. Determine IsVM. Note any previous session.
Invoke data-scraper-agent with the system profile. Add any high-confidence (>0.7) web-discovered tweaks to the session.
$timestamp = Get-Date -Format "yyyyMMdd-HHmm"
$revertDir = "C:\ProgramData\pc-optimizer\revert\$timestamp"
New-Item -ItemType Directory -Path $revertDir -Force
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\restore-point.ps1"
For EACH batch below, show a preview then ask: "Apply this batch? (yes/no/quit)"
If user says "quit", stop immediately. Applied batches remain applied.
Preview to show:
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\apply.ps1" -Batch Power -RevertDir $revertDir
Preview to show:
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\apply.ps1" -Batch Bloat -RevertDir $revertDir
Preview to show:
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\apply.ps1" -Batch Registry -RevertDir $revertDir
Preview to show:
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\apply.ps1" -Batch Network -RevertDir $revertDir
Preview to show:
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\apply.ps1" -Batch Memory -RevertDir $revertDir
Preview to show:
powershell -ExecutionPolicy Bypass -File "C:\ProgramData\pc-optimizer\scripts\apply.ps1" -Batch Visual -RevertDir $revertDir
Show which batches were applied, which were skipped (VM-specific), and the revert session path.
OPTIMIZATION COMPLETE
Session saved to: C:\ProgramData\pc-optimizer\revert\[timestamp]\
Revert any time with: /pc-revert
Reboot recommended for all changes to take effect.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub marshal-rizky/pc-optimizer --plugin pc-optimizer