system-diagnostics
Comprehensive Windows 11 system diagnostics via PowerShell. Diagnoses crashes, freezes, reboots, BSOD, disk health, memory issues, hardware errors, and performance problems. Use when troubleshooting Windows stability issues, analyzing Event Viewer logs, checking disk/memory health, investigating hardware errors, or diagnosing system performance problems.
What this skill does
# Windows System Diagnostics
Comprehensive Windows 11 system diagnostics using PowerShell. This skill helps diagnose crashes, freezes, unexpected reboots, disk problems, memory issues, hardware errors, and performance bottlenecks.
## Table of Contents
- [Quick Start](#quick-start) - Immediate diagnostic commands
- [Platform Requirements](#platform-requirements) - Windows 11, PowerShell 7+
- [Diagnostic Categories](#diagnostic-categories) - What this skill covers
- [Quick Health Check](#quick-health-check) - Fast system overview
- [Reference Loading](#reference-loading-guide) - Progressive disclosure
- [Safety Model](#safety-model) - Read-only vs suggested repairs
- [Common Issues](#common-diagnostic-scenarios) - Troubleshooting patterns
## Overview
This skill provides read-only diagnostic capabilities to gather system health information. It does NOT execute repair commands - those are provided as suggestions for the user to run manually.
**Capabilities:**
- Event log analysis (crashes, errors, warnings)
- Disk health monitoring (SMART data, filesystem errors)
- Memory diagnostics (usage, leaks, hardware issues)
- Hardware error detection (device failures, drivers, WHEA)
- Performance analysis (CPU, memory, disk bottlenecks)
- System stability metrics (uptime, restart reasons)
## When to Use This Skill
Use this skill when:
- Computer is crashing, freezing, or rebooting unexpectedly
- Blue Screen of Death (BSOD) errors occur
- Disk health concerns (slow performance, errors)
- Memory issues suspected (high usage, crashes under load)
- Hardware errors or driver problems
- Need to analyze Windows Event Viewer logs
- System performance degradation
- Investigating application crashes
## Platform Requirements
**Required:**
- Windows 11 (this skill is optimized for Windows 11 Pro)
- PowerShell 7+ (`pwsh`) for best compatibility
**Verify PowerShell version:**
```powershell
$PSVersionTable.PSVersion
```
**Note:** Most commands also work with Windows PowerShell 5.1, but PowerShell 7+ is recommended for consistent behavior.
## Quick Start
### Immediate System Health Check
Run these commands to get a quick overview of system health:
```powershell
# System info and uptime
Get-Uptime
Get-ComputerInfo | Select-Object OsName, OsVersion, OsBuildNumber, CsProcessors, CsTotalPhysicalMemory
# Recent critical/error events (last 7 days)
Get-WinEvent -FilterHashtable @{LogName='System';Level=1,2;StartTime=(Get-Date).AddDays(-7)} -MaxEvents 20 |
Select-Object TimeCreated, Id, ProviderName, Message | Format-Table -Wrap
# Disk health
Get-PhysicalDisk | Select-Object FriendlyName, MediaType, Size, HealthStatus, OperationalStatus
# Top memory consumers
Get-Process | Sort-Object WorkingSet64 -Descending |
Select-Object -First 10 ProcessName, Id, @{N='MB';E={[math]::Round($_.WorkingSet64/1MB,0)}}
# Device errors
Get-PnpDevice -PresentOnly | Where-Object { $_.Status -in 'Error','Degraded','Unknown' } |
Select-Object Class, FriendlyName, Status
```
## Diagnostic Categories
| Category | Description | Reference |
| --- | --- | --- |
| Event Logs | Windows Event Viewer analysis | [event-logs.md](references/event-logs.md) |
| Disk Health | SMART data, filesystem, storage | [disk-health.md](references/disk-health.md) |
| Memory | RAM usage, leaks, hardware | [memory-diagnostics.md](references/memory-diagnostics.md) |
| Stability | Uptime, restarts, BSOD | [system-stability.md](references/system-stability.md) |
| Hardware | Device errors, WHEA, drivers | [hardware-errors.md](references/hardware-errors.md) |
| Performance | CPU, memory, disk bottlenecks | [performance-analysis.md](references/performance-analysis.md) |
| Crashes | Minidumps, WER, BSOD analysis | [crash-analysis.md](references/crash-analysis.md) |
| Elevation | Admin requirements, graceful degradation | [admin-elevation.md](references/admin-elevation.md) |
## Quick Health Check
### System Information
```powershell
# Basic system info
Get-ComputerInfo | Select-Object `
OsName, OsVersion, OsBuildNumber, `
CsName, CsDomain, `
CsProcessors, CsNumberOfLogicalProcessors, `
@{N='RAM_GB';E={[math]::Round($_.CsTotalPhysicalMemory/1GB,1)}}
# System uptime
Get-Uptime
Get-Uptime -Since # Last boot time
```
### Recent System Errors
```powershell
# Critical and Error events from System log (last 7 days)
Get-WinEvent -FilterHashtable @{
LogName = 'System'
Level = 1,2 # 1=Critical, 2=Error
StartTime = (Get-Date).AddDays(-7)
} -MaxEvents 50 | Select-Object TimeCreated, Id, ProviderName, LevelDisplayName, Message
```
### Disk Quick Check
```powershell
# Physical disk health
Get-PhysicalDisk | Select-Object FriendlyName, MediaType, Size, HealthStatus, OperationalStatus
# SMART-like reliability data
Get-PhysicalDisk | ForEach-Object {
$disk = $_
$counters = $_ | Get-StorageReliabilityCounter
[PSCustomObject]@{
Disk = $disk.FriendlyName
Health = $disk.HealthStatus
Temperature = $counters.Temperature
ReadErrors = $counters.ReadErrorsTotal
WriteErrors = $counters.WriteErrorsTotal
PowerOnHours = $counters.PowerOnHours
}
}
```
### Memory Quick Check
```powershell
# System memory overview
Get-CimInstance Win32_OperatingSystem | Select-Object `
@{N='Total_GB';E={[math]::Round($_.TotalVisibleMemorySize/1MB,2)}},
@{N='Free_GB';E={[math]::Round($_.FreePhysicalMemory/1MB,2)}},
@{N='Used_Pct';E={[math]::Round((1 - $_.FreePhysicalMemory/$_.TotalVisibleMemorySize)*100,1)}}
# Top 10 memory-consuming processes
Get-Process | Sort-Object WorkingSet64 -Descending |
Select-Object -First 10 ProcessName, Id,
@{N='WS_MB';E={[math]::Round($_.WorkingSet64/1MB,0)}},
@{N='PM_MB';E={[math]::Round($_.PrivateMemorySize64/1MB,0)}}
```
### Hardware Quick Check
```powershell
# Devices with errors
Get-PnpDevice -PresentOnly | Where-Object { $_.Status -in 'Error','Degraded','Unknown' } |
Select-Object Class, FriendlyName, InstanceId, Status
# WHEA hardware errors (last 30 days)
Get-WinEvent -FilterHashtable @{
LogName = 'System'
ProviderName = 'Microsoft-Windows-WHEA-Logger'
StartTime = (Get-Date).AddDays(-30)
} -MaxEvents 20 -ErrorAction SilentlyContinue | Select-Object TimeCreated, Id, Message
```
## Reference Loading Guide
References are loaded on-demand based on the diagnostic category being investigated. This progressive disclosure keeps token usage efficient.
### Always Load (Core)
The main SKILL.md provides quick commands for initial triage (~4k tokens).
### Conditional Load
Load specific references based on what you're investigating:
| Trigger | Reference to Load |
| --- | --- |
| Event logs, errors, warnings | [event-logs.md](references/event-logs.md) |
| Disk, storage, SMART, chkdsk | [disk-health.md](references/disk-health.md) |
| Memory, RAM, paging, leaks | [memory-diagnostics.md](references/memory-diagnostics.md) |
| Uptime, restarts, reliability | [system-stability.md](references/system-stability.md) |
| Hardware, drivers, WHEA, devices | [hardware-errors.md](references/hardware-errors.md) |
| CPU, performance, bottlenecks | [performance-analysis.md](references/performance-analysis.md) |
| BSOD, minidump, crashes, WER | [crash-analysis.md](references/crash-analysis.md) |
| Admin, elevation, permissions | [admin-elevation.md](references/admin-elevation.md) |
### Token Estimates
- Quick health check: ~4k tokens (SKILL.md only)
- Single category deep dive: ~7k tokens (SKILL.md + 1 reference)
- Full diagnostic: ~25k tokens (SKILL.md + all references)
## Safety Model
This skill follows a **read-only diagnostics** model. All commands executed by the skill only gather information - they do not modify the system.
### Read-Only (Skill Can Execute)
These commands are safe to run:
| Category | Commands |
| --- | --- |
| Event Logs | `Get-WinEvent` |
| Disk Health | `Get-PhysicalDisk`, `Get-StorageReliabilityCounter`, `Get-Volume` |
| Memory | `Get-Process`, `Get-CimInRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.