ソース情報
- リポジトリ
- taracodlabs/aiden
- ソースの最終更新活動
- 2026年6月29日 11:13
- 検出された SKILL.md の言語
- 英語
- スター
- 779
- フォーク
- 140
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/taracodlabs/aiden --skill defender-quickscanコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | defender-quickscan |
| description | Windows Defender: scans, threat history, signatures (PowerShell) |
| category | windows |
| version | 1.0.0 |
| platform | windows |
| tags | defender, antivirus, security, scan, threat, malware, windows, powershell |
| license | Apache-2.0 |
Trigger Windows Defender antivirus scans, inspect threat history, update virus definitions, and check real-time protection status — all via PowerShell cmdlets.
Get-MpComputerStatus | Select-Object AMServiceEnabled, AntispywareEnabled,
AntivirusEnabled, RealTimeProtectionEnabled,
AntispywareSignatureAge, AntivirusSignatureAge, QuickScanAge
Start-MpScan -ScanType QuickScan # fast scan of likely threat locations
Start-MpScan -ScanType FullScan # thorough scan of all files (30-60 min)
Start-MpScan -ScanType CustomScan -ScanPath "C:\Users\<you>\Downloads"
Update-MpSignature
Get-MpThreatDetection | Select-Object ThreatID, ActionSuccess,
DetectionSourceTypeID, Resources, InitialDetectionTime |
Sort-Object InitialDetectionTime -Descending |
Select-Object -First 10
Get-MpThreat | Select-Object ThreatID, ThreatName, SeverityID,
CategoryID, IsActive, Resources
Remove-MpThreat -ThreatID 12345
(Get-MpPreference).ExclusionPath
(Get-MpPreference).ExclusionExtension
Add-MpPreference -ExclusionPath "C:\DevTools\node_modules"
"Scan my Downloads folder for threats"
→ Start-MpScan -ScanType CustomScan -ScanPath "$env:USERPROFILE\Downloads" — Defender scans the folder and logs any detections.
"Are my virus definitions up to date?"
→ Get-MpComputerStatus | Select-Object AntivirusSignatureAge, AntivirusSignatureLastUpdated — signature age of 0 means updated today.
"Show me the last 5 threats Defender found"
→ Get-MpThreatDetection | Sort-Object InitialDetectionTime -Descending | Select-Object -First 5
Start-MpScan requires Windows Defender to be the active antivirus — third-party AV may disable these cmdletsRemove-MpThreat is permanent; confirm with the user before executing