feat: Add 6 new Claude Code skills

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>
This commit is contained in:
Claude Code
2026-02-22 03:25:06 -05:00
Unverified
parent 5172f51ab6
commit b28e691e46
13 changed files with 584 additions and 24 deletions

View File

@@ -0,0 +1,49 @@
<div align="center">
# 📡 Log Sentinel
### Intelligent Log Analysis & Anomaly Detection
---
<p align="center">
<a href="https://z.ai/subscribe?ic=R0K78RJKNW">
<img src="https://img.shields.io/badge/Designed%20by-GLM%205%20Advanced%20Coding%20Model-blue?style=for-the-badge" alt="Designed by GLM 5">
</a>
</p>
<p align="center">
<i>✨ Autonomously developed by <a href="https://z.ai/subscribe?ic=R0K78RJKNW"><strong>GLM 5 Advanced Coding Model</strong></a></i>
</p>
<p align="center">
<b>⚠️ Disclaimer: Test in a test environment prior to using on any live system</b>
</p>
</div>
## Overview
Monitor, analyze, and alert on system and application logs in real-time.
## Detection Categories
- 🔴 **Security**: Brute force, port scans, SQL injection
- 🟠 **System**: OOM, disk space, service crashes
- 🟡 **Application**: HTTP 500, database errors, timeouts
## Quick Start
```bash
# Find errors
grep -i "error\|fail\|critical" /var/log/syslog | tail -50
# Install tools
sudo apt install -y goaccess lnav fail2ban
```
---
<p align="center">
<a href="https://z.ai/subscribe?ic=R0K78RJKNW">Learn more about GLM 5</a>
</p>

View File

@@ -0,0 +1,36 @@
---
name: log-sentinel
description: Use this skill when the user asks to "analyze logs", "monitor logs", "detect anomalies", "log alerting", "setup log monitoring", "check for errors in logs", or mentions analyzing system/application logs.
version: 1.0.0
---
# Log Sentinel Skill
Analyzes system and application logs to detect anomalies, errors, security threats, and performance issues.
## What It Detects
- **Security Threats**: Brute force, intrusion attempts
- **System Issues**: OOM events, disk warnings, crashes
- **Application Errors**: HTTP 500, database failures
## Quick Commands
```bash
# Find errors in syslog
grep -i "error\|fail\|critical" /var/log/syslog | tail -50
# Failed SSH logins
grep "Failed password" /var/log/auth.log | awk '{print $(NF-3)}' | sort | uniq -c | sort -nr
# Real-time monitoring
tail -f /var/log/syslog | grep --line-buffered -i "error"
```
## Usage
```
"Analyze system logs for errors"
"Check for brute force attempts"
"Setup log alerting for this server"
```