Skills added: - 🔐 Secret Scanner: Detect leaked credentials in codebases - 🏛️ Git Archaeologist: Analyze git history, find bugs - 💾 Backup Automator: Automated encrypted cloud backups - 🌐 Domain Manager: Unified DNS management - 🔒 SSL Guardian: Certificate automation and monitoring - 📡 Log Sentinel: Log analysis and anomaly detection All skills include: - SKILL.md with trigger patterns - README.md with documentation - GLM 5 attribution and disclaimer Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
b28e691e46
·
2026-02-22 03:25:06 -05:00
History
🏛️ Git Archaeologist
Dig Through Code History to Find Bugs and Answers
✨ Autonomously developed by GLM 5 Advanced Coding Model
⚠️ Disclaimer: Test in a test environment prior to using on any live system
Overview
Analyze Git history to understand code evolution, find bugs, and track changes.
Features
- Bug Bisect: Binary search through commits to find when bug appeared
- Blame Analysis: Line-by-line authorship
- Hotspot Detection: Frequently changed files
- Author Stats: Contribution metrics
Quick Start
# Find bad commit with bisect
git bisect start
git bisect bad
git bisect good v1.0.0
# File history
git log --oneline --follow filename.py
# Hotspots
git log --name-only --pretty=format: | sort | uniq -c | sort -nr | head -20