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,51 @@
<div align="center">
# 🌐 Domain Manager
### Unified DNS Management Across All Providers
---
<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
Manage DNS records for Cloudflare, Route53, DigitalOcean, and more from one place.
## Supported Providers
- Cloudflare, AWS Route53, DigitalOcean
- Google Cloud DNS, Linode
- Namecheap, GoDaddy
## Record Types
A, AAAA, CNAME, MX, TXT (SPF/DKIM/DMARC), NS, SRV, CAA
## Quick Start
```bash
# Cloudflare API
export CF_API_TOKEN="your-token"
curl -X GET "https://api.cloudflare.com/client/v4/zones" -H "Authorization: Bearer $CF_API_TOKEN"
```
---
<p align="center">
<a href="https://z.ai/subscribe?ic=R0K78RJKNW">Learn more about GLM 5</a>
</p>

View File

@@ -0,0 +1,37 @@
---
name: domain-manager
description: Use this skill when the user asks to "manage DNS", "configure domain", "DNS records", "add subdomain", "update DNS", "domain setup", "cloudflare DNS", "route53", or mentions managing domains and DNS.
version: 1.0.0
---
# Domain Manager Skill
Unified DNS management across multiple providers - Cloudflare, Route53, DigitalOcean, and more.
## Supported Providers
- Cloudflare (CDN/DNS)
- AWS Route53
- DigitalOcean DNS
- Google Cloud DNS
- Namecheap, GoDaddy, Linode
## Quick Commands
```bash
# Cloudflare - Add A record
curl -X POST "https://api.cloudflare.com/client/v4/zones/{zone_id}/dns_records" \
-H "Authorization: Bearer {token}" \
-d '{"type":"A","name":"www","content":"192.168.1.1"}'
# Check propagation
dig example.com +short
```
## Usage
```
"Add A record for blog.domain.com pointing to 1.2.3.4"
"Setup SPF and DKIM records for my domain"
"List all DNS records for domain.com"
```