feat: Add Claw Setup skill for AI Agent deployment

End-to-end professional setup of AI Agent platforms:
- OpenClaw (full-featured, 215K stars)
- NanoBot (Python, lightweight)
- PicoClaw (Go, ultra-light)
- ZeroClaw (Rust, minimal)
- NanoClaw (WhatsApp focused)

Features:
- Platform selection with comparison
- Security hardening (secrets, network, systemd)
- Interactive brainstorming for customization
- AI provider configuration with 12+ providers
- Model fetching from provider APIs
- Custom model input support

Providers supported:
Anthropic, OpenAI, Google, OpenRouter, Groq,
Cerebras, Together AI, DeepSeek, Mistral, xAI, Ollama

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude Code
2026-02-22 03:44:25 -05:00
Unverified
parent b28e691e46
commit 2072e16bd1
4 changed files with 1097 additions and 4 deletions

View File

@@ -28,25 +28,61 @@
## Skills Index
### AI & Automation
| Skill | Description | Status |
|-------|-------------|--------|
| [🦞 Claw Setup](./skills/claw-setup/) | End-to-end AI Agent deployment (OpenClaw, NanoBot, PicoClaw, ZeroClaw) | ✅ Production Ready |
### System Administration
| Skill | Description | Status |
|-------|-------------|--------|
| [🚀 RAM Optimizer](./skills/ram-optimizer/) | ZRAM-based memory compression for Linux servers | ✅ Production Ready |
| [🔐 Secret Scanner](./skills/secret-scanner/) | Detect leaked credentials in codebases | ✅ Production Ready |
| [🏛️ Git Archaeologist](./skills/git-archaeologist/) | Analyze repository history and find bugs | ✅ Production Ready |
| [💾 Backup Automator](./skills/backup-automator/) | Automated encrypted backups to cloud storage | ✅ Production Ready |
| [🌐 Domain Manager](./skills/domain-manager/) | DNS management across multiple providers | ✅ Production Ready |
| [🔒 SSL Guardian](./skills/ssl-guardian/) | SSL certificate automation and monitoring | ✅ Production Ready |
| [📡 Log Sentinel](./skills/log-sentinel/) | Log analysis and anomaly detection | ✅ Production Ready |
### Security
| Skill | Description | Status |
|-------|-------------|--------|
| [🔐 Secret Scanner](./skills/secret-scanner/) | Detect leaked credentials in codebases | ✅ Production Ready |
| [🔒 SSL Guardian](./skills/ssl-guardian/) | SSL certificate automation and monitoring | ✅ Production Ready |
### Development
| Skill | Description | Status |
|-------|-------------|--------|
| [🏛️ Git Archaeologist](./skills/git-archaeologist/) | Analyze repository history and find bugs | ✅ Production Ready |
### Infrastructure
| Skill | Description | Status |
|-------|-------------|--------|
| [🌐 Domain Manager](./skills/domain-manager/) | DNS management across multiple providers | ✅ Production Ready |
---
## Quick Start
Each skill works with Claude Code CLI. Simply ask:
```
"Setup Claw AI assistant on my server"
"Run ram optimizer on my server"
"Scan this directory for leaked secrets"
"Setup automated backups to S3"
```
---
## Featured: Claw Setup
Professional deployment of AI Agent platforms:
```
OpenClaw → Full-featured, 1700+ plugins, 215K stars
NanoBot → Python, 4K lines, research-ready
PicoClaw → Go, <10MB, $10 hardware
ZeroClaw → Rust, <5MB, 10ms startup
```
Usage: `"Setup OpenClaw on my VPS with security hardening"`
---