원클릭으로
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]