Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计通过

system-diagnostics系统诊断

Agent Skill

system-diagnostics 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,513

周安装

65

GitHub Stars

61

下载量

530
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:system-diagnostics(系统诊断)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/system-diagnostics
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill system-diagnostics
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill system-diagnostics

简介

用于处理 GitHub 仓库、Issue 和代码协作相关信息。

  • 适合在需要分析仓库状态、变更历史或协作流程时使用。
  • 可帮助生成变更日志、追踪问题状态或评估影响范围。system-diagnostics 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。
  • 安装前请检查是否具备足够的仓库访问权限和执行能力。
  • 建议参考原始文档了解其对网络请求、命令执行的限制。

SKILL.md

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

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:

$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:

# 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

CategoryDescriptionReference
Event LogsWindows Event Viewer analysisevent-logs.md
Disk HealthSMART data, filesystem, storagedisk-health.md
MemoryRAM usage, leaks, hardwarememory-diagnostics.md
StabilityUptime, restarts, BSODsystem-stability.md
HardwareDevice errors, WHEA, drivershardware-errors.md
PerformanceCPU, memory, disk bottlenecksperformance-analysis.md
CrashesMinidumps, WER, BSOD analysiscrash-analysis.md
ElevationAdmin requirements, graceful degradationadmin-elevation.md

Quick Health Check

System Information

# 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

# 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

# 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

# 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

# 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:

TriggerReference to Load
Event logs, errors, warningsevent-logs.md
Disk, storage, SMART, chkdskdisk-health.md
Memory, RAM, paging, leaksmemory-diagnostics.md
Uptime, restarts, reliabilitysystem-stability.md
Hardware, drivers, WHEA, deviceshardware-errors.md
CPU, performance, bottlenecksperformance-analysis.md
BSOD, minidump, crashes, WERcrash-analysis.md
Admin, elevation, permissionsadmin-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:

CategoryCommands
Event LogsGet-WinEvent
Disk HealthGet-PhysicalDisk, Get-StorageReliabilityCounter, Get-Volume
MemoryGet-Process, Get-CimInstance Win32_OperatingSystem
DevicesGet-PnpDevice
PerformanceGet-Counter
System InfoGet-Uptime, Get-ComputerInfo

Suggested Only (User Runs Manually)

These repair/diagnostic commands modify the system or require reboot. The skill will provide instructions but NOT execute them:

CommandPurposeNotes
chkdsk /f /rDisk repairRequires reboot for system drive
sfc /scannowSystem file repairRequires admin
DISM /Online /Cleanup-Image /RestoreHealthSystem image repairRequires admin, internet
mdsched.exeMemory diagnosticRequires reboot
Repair-Volume -SpotFixQuick disk repairRequires admin
Driver reinstallFix driver issuesManual process

Elevation Notes

Some read-only operations require administrator privileges:

  • Get-WinEvent -LogName Security (Security log)
  • Repair-Volume -Scan (even read-only scan)
  • Some WMI queries

The skill will note when elevation is needed and provide graceful degradation for non-admin scenarios.

Common Diagnostic Scenarios

Scenario: Computer Keeps Crashing/Rebooting

  1. Check uptime and recent restart events
  2. Look for Kernel-Power Event ID 41 (unexpected shutdown)
  3. Check for BSOD minidumps
  4. Review hardware errors (WHEA)
  5. Check disk and memory health

Key commands:

# Recent restart events
Get-WinEvent -FilterHashtable @{LogName='System';Id=41,1074,6008} -MaxEvents 20

# BSOD events
Get-WinEvent -FilterHashtable @{LogName='System';ProviderName='Microsoft-Windows-WER-SystemErrorReporting'} -MaxEvents 10

# Check for minidumps
Get-ChildItem C:\Windows\Minidump -ErrorAction SilentlyContinue

Scenario: Slow Performance

  1. Check CPU/memory/disk utilization
  2. Identify resource-hungry processes
  3. Check for disk health issues
  4. Look for hardware throttling

Key commands:

# Current resource usage
Get-Counter -Counter '\Processor(_Total)\% Processor Time','\Memory\% Committed Bytes In Use','\PhysicalDisk(_Total)\% Disk Time'

# Top CPU consumers
Get-Process | Sort-Object CPU -Descending | Select-Object -First 10 ProcessName, CPU, @{N='MB';E={[math]::Round($_.WorkingSet64/1MB)}}

Scenario: Disk Errors Suspected

  1. Check physical disk health status
  2. Review SMART reliability counters
  3. Look for disk-related events
  4. Check filesystem dirty bit

Key commands:

# Disk health
Get-PhysicalDisk | Select-Object FriendlyName, HealthStatus, OperationalStatus

# Reliability counters
Get-PhysicalDisk | Get-StorageReliabilityCounter | Select-Object DeviceId, Temperature, ReadErrorsTotal, WriteErrorsTotal

# Recent disk events
Get-WinEvent -FilterHashtable @{LogName='System';ProviderName='disk','ntfs'} -MaxEvents 20

Scenario: Memory Issues

  1. Check current memory usage
  2. Identify memory-hungry processes
  3. Look for memory-related events
  4. Check for previous memory diagnostic results

Key commands:

# Memory usage
Get-CimInstance Win32_OperatingSystem | Select-Object @{N='Used%';E={[math]::Round((1-$_.FreePhysicalMemory/$_.TotalVisibleMemorySize)*100,1)}}

# Top memory processes
Get-Process | Sort-Object WorkingSet64 -Descending | Select-Object -First 10 ProcessName, @{N='MB';E={[math]::Round($_.WorkingSet64/1MB)}}

# Memory diagnostic results
Get-WinEvent -FilterHashtable @{LogName='System';ProviderName='Microsoft-Windows-MemoryDiagnostics-Results'} -ErrorAction SilentlyContinue

Anti-Patterns

Do NOT:

  • Execute repair commands (chkdsk /f, sfc /scannow, etc.) - only suggest them
  • Run commands that require reboot (mdsched.exe) without explicit user consent
  • Assume admin privileges are available
  • Ignore elevation errors - report them and suggest running as admin
  • Make hardware recommendations without diagnostic evidence

Do:

  • Start with quick health checks before deep dives
  • Load references progressively based on investigation needs
  • Report findings with severity (Critical, Warning, Info)
  • Provide actionable next steps for the user
  • Explain what each suggested repair command does

Version History

  • v1.0.0 (2025-12-03): Initial release with Windows 11 diagnostics

Last Updated

Date: 2025-12-03 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

28.65%
按下载量换算152

Gemini CLI

21.63%
按下载量换算115

trae

16.79%
按下载量换算89

Antigravity

12.63%
按下载量换算67

Claude Code

6.87%
按下载量换算36

Codex

3.2%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills