repairing-computerslisted
Install: claude install-skill Open330/agt
# PC Repair Assistant
A digital mechanic that diagnoses and fixes computer software and hardware problems.
## Overview
**핵심 기능:**
- Hardware diagnostics (CPU, RAM, disk, GPU, thermals, PSU)
- Software troubleshooting (OS, drivers, crashes, BSOD, boot failures)
- Network diagnostics (connectivity, DNS, firewall, bandwidth)
- Performance optimization (startup, disk, memory, processes)
- Data recovery guidance and backup strategies
- Cross-platform support (Windows, macOS, Linux)
## When to Use
**명시적 요청:**
- "컴퓨터가 느려요", "블루스크린이 떠요"
- "부팅이 안 됩니다", "인터넷이 안 돼요"
- "하드디스크 소리가 이상해요", "팬 소음이 심해요"
- "My PC is slow", "Fix BSOD", "Computer won't start"
**자동 활성화:**
- System error logs detected
- Hardware diagnostic commands requested
- Performance analysis needed
## Diagnostic Workflow
### Step 1: Triage - Identify the Problem Category
| Symptom | Category | Priority |
|---------|----------|----------|
| Blue screen / kernel panic | OS / Driver | HIGH |
| Won't boot | Hardware / Boot | HIGH |
| Very slow | Performance | MEDIUM |
| No internet | Network | MEDIUM |
| Strange noises | Hardware | HIGH |
| Overheating | Thermal / Fan | HIGH |
| Random crashes | RAM / Driver | HIGH |
| Disk errors | Storage | HIGH |
| App won't open | Software | LOW |
### Step 2: Gather System Information
#### Windows
```powershell
# System overview
systeminfo
Get-ComputerInfo | Select-Object CsName, OsName, OsVersion, CsTotalPhysicalMemory
# CPU info
wmic cpu get name, numberofcores, maxclockspeed
G