ワンクリックで
crash-log-analyzer
Parse and analyze macOS crash logs to identify crash causes and debugging information
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Parse and analyze macOS crash logs to identify crash causes and debugging information
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate comprehensive API documentation using DocC (Swift-DocC) for your PaleoRose project
Analyze and optimize Xcode asset catalogs - find unused assets, missing resolutions, compress images
Analyze and optimize Xcode build times by identifying slow compilation units and suggesting improvements
Generate CI/CD configurations and automation scripts for building, testing, and deploying
Calculate code quality metrics - complexity, coverage, maintainability
Parse and validate XIB/Storyboard files for broken outlets, warnings, accessibility
| name | crash-log-analyzer |
| description | Parse and analyze macOS crash logs to identify crash causes and debugging information |
| type | skill |
| language | python |
Parse macOS .crash and .ips files to extract useful debugging information.
crash_analyzer.pyPython script to parse crash logs
Commands:
# Analyze crash log
./crash_analyzer.py crash.crash
# Symbolicate (requires dSYM)
./crash_analyzer.py crash.crash --dsym PaleoRose.app.dSYM
# Batch analyze directory
./crash_analyzer.py --batch ~/Library/Logs/DiagnosticReports/PaleoRose*
# Export summary
./crash_analyzer.py crash.crash --export-json summary.json
# Find duplicates
./crash_analyzer.py --find-duplicates ~/Library/Logs/DiagnosticReports/
Use when:
Crash Summary
-------------
Process: PaleoRose
Bundle ID: com.example.paleorose
Version: 1.0.0
Date: 2025-11-08 20:30:15
Crash Type: EXC_BAD_ACCESS (SIGSEGV)
Exception: KERN_INVALID_ADDRESS at 0x0000000000000000
Crashed Thread: 0 (Main Thread)
Stack Trace:
0 PaleoRose 0x10045a123 -[TableListController tableView:objectValueFor:row:] + 123
1 AppKit 0x7fff2b3c4567 -[NSTableView _sendDataSourceValue] + 234
2 AppKit 0x7fff2b3c4890 -[NSTableView reloadData] + 567
Probable Cause: Null pointer dereference in tableNames array access
Recommendation: Add nil check before accessing tableNames[row]