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>
1.1 KiB
1.1 KiB
name, description, version
| name | description | version |
|---|---|---|
| git-archaeologist | Use this skill when the user asks to "analyze git history", "find when bug was introduced", "git blame analysis", "code history", "who wrote this code", "when was this changed", "git bisect", or mentions investigating code history. | 1.0.0 |
Git Archaeologist Skill
Analyzes Git repository history to understand code evolution, find when bugs were introduced, and identify problematic commits.
What It Does
- Bug Origin Finding: Identify when and how a bug was introduced
- Code Evolution Analysis: Understand how code changed over time
- Author Attribution: Who wrote/modified specific code
- Hotspot Detection: Files that change frequently
Quick Commands
# Git bisect to find bad commit
git bisect start
git bisect bad
git bisect good v1.0.0
# File history
git log --oneline --follow filename.py
# Who changed file most
git log --format="%an" --follow -- filename.py | sort | uniq -c | sort -nr
Usage
"Find when this bug was introduced"
"Who wrote the authentication module?"
"Show me commits that touched this function"