{
  "markdown": "<p align=\"center\">\n  <img src=\"https://img.shields.io/badge/Claude-Skills-blueviolet?style=for-the-badge&logo=anthropic\" alt=\"Claude Skills\">\n  <img src=\"https://img.shields.io/badge/Terminal-Focused-green?style=for-the-badge&logo=gnometerminal\" alt=\"Terminal\">\n  <img src=\"https://img.shields.io/badge/License-Apache%202.0-blue?style=for-the-badge\" alt=\"License\">\n  <img src=\"https://img.shields.io/badge/Skills-63+-orange?style=for-the-badge\" alt=\"Skills Count\">\n</p>\n\n<h1 align=\"center\">🖥️ Terminal Skills</h1>\n\n<p align=\"center\">\n  <strong>A curated collection of Claude Skills for Terminal, Server, Kubernetes，DevOps, and Cloud Computing</strong>\n</p>\n\n<p align=\"center\">\n  <a href=\"#-features\">Features</a> •\n  <a href=\"#-quick-start\">Quick Start</a> •\n  <a href=\"#-skill-categories\">Categories</a> •\n  <a href=\"#-popular-skills\">Popular</a> •\n  <a href=\"#-contributing\">Contributing</a>\n</p>\n\n<p align=\"center\">\n  <a href=\"./README_CN.md\">🇨🇳 中文文档</a>\n</p>\n\n---\n\n## 🎯 What is Terminal Skills?\n\nTerminal Skills is a comprehensive collection of [Claude Skills](https://docs.anthropic.com/en/docs/claude-code/skills) designed specifically for terminal-based workflows. Each skill provides Claude with domain-specific knowledge and commands for system administration, DevOps, cloud operations, and more.\n\n**Why use Terminal Skills?**\n- 🚀 **Instant expertise** - Claude gains deep knowledge of specific tools and workflows\n- 📋 **Battle-tested commands** - Real-world commands with best practices built-in\n- 🔧 **Troubleshooting guides** - Common issues and solutions included\n- 🎓 **Learning resource** - Great for both beginners and experienced engineers\n\n## ✨ Features\n\n| Category | Description | Skills |\n|----------|-------------|--------|\n| 🐧 **Linux** | System administration, file operations, process management, shell scripting | 6 |\n| 🖧 **Server** | Nginx, Apache, SSH, Systemd, Cron, log analysis | 6 |\n| 🗄️ **Database** | MySQL, PostgreSQL, MongoDB, Redis, Elasticsearch, SQL optimization | 6 |\n| ☸️ **Kubernetes** | kubectl, deployments, services, Helm, troubleshooting | 7 |\n| 🐳 **Docker** | Container operations, images, Compose, networking, Dockerfile | 5 |\n| ☁️ **Cloud CLI** | AWS CLI, Azure CLI, Google Cloud, Alibaba Cloud | 4 |\n| 🔧 **DevOps** | Git advanced, Ansible, Terraform, CI/CD, monitoring | 5 |\n| 🌐 **Network** | TCP/IP, DNS, VPN, proxy, load balancer, traffic analysis | 6 |\n| 💾 **Backup** | rsync, tar, snapshots, cloud backup, disaster recovery | 6 |\n| 🔒 **Security** | Firewall, SSL/TLS, audit, system hardening | 4 |\n| 📊 **Performance** | Benchmarking, profiling, tuning, troubleshooting | 4 |\n| 🦀 **OpenClaw** | Installation, configuration, troubleshooting, maintenance | 4 |\n\n**Total: 63 Skills**\n\n## 🚀 Quick Start\n\n### Installation\n\n```bash\ngit clone https://github.com/your-username/terminal-skills.git\ncd terminal-skills\n```\n\n### Usage with Claude Code\n\n1. Copy the desired skill folder to your Claude skills directory:\n   ```bash\n   # Example: Add kubectl-basics skill\n   cp -r kubernetes/kubectl-basics ~/.claude/skills/\n   ```\n\n2. Or reference skills directly in your project:\n   ```bash\n   # Add to your project's .claude/skills directory\n   cp -r linux/file-operations ./your-project/.claude/skills/\n   ```\n\n3. Claude will automatically load and use the skill when relevant\n\n### Skill Structure\n\nEach skill follows a consistent structure:\n\n```\nskill-name/\n├── SKILL.md          # Main skill file with instructions and commands\n├── examples/         # Usage examples (optional)\n├── scripts/          # Helper scripts (optional)\n└── resources/        # Additional references (optional)\n```\n\n### SKILL.md Format\n\n```yaml\n---\nname: skill-name\ndescription: Brief description\nversion: 1.0.0\nauthor: contributor-name\ntags: [tag1, tag2, tag3]\n---\n\n# Skill Title\n\n## Overview\nWhat this skill does and when to use it.\n\n## Core Commands\nEssential commands with explanations.\n\n## Common Scenarios\nReal-world use cases with step-by-step guides.\n\n## Troubleshooting\nCommon issues and solutions.\n```\n\n## 📂 Skill Categories\n\n### 🐧 Linux System Administration\n\n| Skill | Description |\n|-------|-------------|\n| [file-operations](./linux/file-operations) | File and directory operations, find, permissions |\n| [process-management](./linux/process-management) | Process monitoring, signals, job control |\n| [user-permissions](./linux/user-permissions) | User management, sudo, ACL |\n| [network-tools](./linux/network-tools) | Network diagnostics, netstat, ss, ip |\n| [system-admin](./linux/system-admin) | System monitoring, resource management |\n| [shell-scripting](./linux/shell-scripting) | Bash scripting, automation |\n\n### 🖧 Server Operations\n\n| Skill | Description |\n|-------|-------------|\n| [nginx](./server/nginx) | Nginx configuration, virtual hosts, SSL |\n| [apache](./server/apache) | Apache httpd configuration and management |\n| [ssh](./server/ssh) | SSH configuration, keys, tunneling |\n| [systemd](./server/systemd) | Service management, units, journalctl |\n| [cron](./server/cron) | Scheduled tasks, crontab |\n| [log-analysis](./server/log-analysis) | Log parsing, analysis, monitoring |\n\n### 🗄️ Database Management\n\n| Skill | Description |\n|-------|-------------|\n| [mysql](./database/mysql) | MySQL administration, queries, backup |\n| [postgresql](./database/postgresql) | PostgreSQL management, psql, replication |\n| [mongodb](./database/mongodb) | MongoDB operations, aggregation, sharding |\n| [redis](./database/redis) | Redis commands, persistence, clustering |\n| [elasticsearch](./database/elasticsearch) | Elasticsearch queries, indices, cluster |\n| [sql-optimization](./database/sql-optimization) | Query optimization, indexing, explain |\n\n### ☸️ Kubernetes\n\n| Skill | Description |\n|-------|-------------|\n| [kubectl-basics](./kubernetes/kubectl-basics) | Essential kubectl commands |\n| [pod-management](./kubernetes/pod-management) | Pod lifecycle, debugging |\n| [deployment](./kubernetes/deployment) | Deployments, rollouts, scaling |\n| [service-ingress](./kubernetes/service-ingress) | Services, Ingress, networking |\n| [configmap-secret](./kubernetes/configmap-secret) | Configuration management |\n| [helm](./kubernetes/helm) | Helm charts, releases |\n| [troubleshooting](./kubernetes/troubleshooting) | K8s debugging and diagnostics |\n\n### 🐳 Docker\n\n| Skill | Description |\n|-------|-------------|\n| [container-ops](./docker/container-ops) | Container lifecycle management |\n| [image-management](./docker/image-management) | Image building, tagging, registry |\n| [dockerfile](./docker/dockerfile) | Dockerfile best practices |\n| [compose](./docker/compose) | Docker Compose multi-container apps |\n| [networking](./docker/networking) | Docker networking, bridges, overlay |\n\n### ☁️ Cloud CLI\n\n| Skill | Description |\n|-------|-------------|\n| [aws-cli](./cloud-cli/aws-cli) | AWS CLI for EC2, S3, IAM, etc. |\n| [azure-cli](./cloud-cli/azure-cli) | Azure CLI operations |\n| [gcloud](./cloud-cli/gcloud) | Google Cloud CLI |\n| [aliyun-cli](./cloud-cli/aliyun-cli) | Alibaba Cloud CLI |\n\n### 🔧 DevOps Tools\n\n| Skill | Description |\n|-------|-------------|\n| [git-advanced](./devops/git-advanced) | Advanced Git workflows, rebasing |\n| [ansible](./devops/ansible) | Ansible playbooks, inventory |\n| [terraform](./devops/terraform) | Infrastructure as Code |\n| [ci-cd](./devops/ci-cd) | CI/CD pipelines, GitHub Actions |\n| [monitoring](./devops/monitoring) | Prometheus, Grafana, alerting |\n\n### 🌐 Network\n\n| Skill | Description |\n|-------|-------------|\n| [tcp-ip](./network/tcp-ip) | TCP/IP fundamentals, troubleshooting |\n| [dns](./network/dns) | DNS configuration, dig, nslookup |\n| [vpn](./network/vpn) | VPN setup and management |\n| [proxy](./network/proxy) | Proxy servers, reverse proxy |\n| [load-balancer](./network/load-balancer) | Load balancing strategies |\n| [traffic-analysis](./network/traffic-analysis) | tcpdump, Wireshark, packet analysis |\n\n### 💾 Backup & Recovery\n\n| Skill | Description |\n|-------|-------------|\n| [rsync](./backup/rsync) | rsync for file synchronization |\n| [tar-compression](./backup/tar-compression) | Archive and compression |\n| [snapshot](./backup/snapshot) | Filesystem snapshots |\n| [cloud-backup](./backup/cloud-backup) | Cloud backup strategies |\n| [backup-strategy](./backup/backup-strategy) | Backup planning and policies |\n| [disaster-recovery](./backup/disaster-recovery) | DR planning and execution |\n\n### 🔒 Security\n\n| Skill | Description |\n|-------|-------------|\n| [firewall](./security/firewall) | iptables, firewalld, ufw |\n| [ssl-tls](./security/ssl-tls) | SSL/TLS certificates, Let's Encrypt |\n| [audit](./security/audit) | Security auditing, compliance |\n| [hardening](./security/hardening) | System hardening best practices |\n\n### 📊 Performance\n\n| Skill | Description |\n|-------|-------------|\n| [benchmarking](./performance/benchmarking) | Performance benchmarking tools |\n| [profiling](./performance/profiling) | Application profiling |\n| [tuning](./performance/tuning) | System and application tuning |\n| [troubleshooting](./performance/troubleshooting) | Performance issue diagnosis |\n\n### 🦀 OpenClaw\n\n| Skill | Description |\n|-------|-------------|\n| [installation](./openclaw/installation) | OpenClaw installation and deployment |\n| [configuration](./openclaw/configuration) | Configuration management and tuning |\n| [troubleshooting](./openclaw/troubleshooting) | Diagnostics and problem solving |\n| [maintenance](./openclaw/maintenance) | Operations and fault repair |\n\n## 🎯 Popular Skills\n\n### kubectl-basics\n```bash\n# Quick pod status check\nkubectl get pods -o wide\n\n# Enter container for debugging\nkubectl exec -it pod-name -- /bin/bash\n\n# View recent logs\nkubectl logs pod-name --tail=100\n```\n\n### mysql\n```bash\n# Database backup\nmysqldump -u root -p database > backup.sql\n\n# Check slow queries\nSHOW VARIABLES LIKE 'slow_query%';\n\n# Restore database\nmysql -u root -p database < backup.sql\n```\n\n### rsync\n```bash\n# Incremental backup with progress\nrsync -avzP --delete source/ dest/\n\n# Remote sync over SSH\nrsync -avz -e ssh /local/path user@remote:/remote/path\n```\n\n### docker container-ops\n```bash\n# Run container with resource limits\ndocker run -d --name app --memory=512m --cpus=1 nginx\n\n# View container logs in real-time\ndocker logs -f container_name\n\n# Enter running container\ndocker exec -it container_name /bin/bash\n```\n\n## 🤝 Contributing\n\nWe welcome contributions! Please see our [Contributing Guide](./CONTRIBUTING.md) for details.\n\n**Quick contribution steps:**\n\n1. Fork the repository\n2. Create a new skill folder under the appropriate category\n3. Write your `SKILL.md` following the template\n4. Submit a Pull Request\n\n**What makes a good skill?**\n- ✅ Clear, tested commands\n- ✅ Real-world scenarios\n- ✅ Troubleshooting section\n- ✅ Proper frontmatter metadata\n\n## 📄 License\n\nThis project is licensed under the [Apache License 2.0](./LICENSE).\n\n## 🔗 Related Resources\n\n- [Claude Skills Documentation](https://docs.anthropic.com/en/docs/claude-code/skills)\n- [awesome-claude-skills](https://github.com/travisvn/awesome-claude-skills) - Curated list of Claude Skills\n- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) - Claude Code documentation\n\n## 🌟 Star History\n\nIf you find this project helpful, please consider giving it a ⭐ star!\n\n---\n\n<p align=\"center\">\n  Made with ❤️ for the DevOps community\n</p>\n",
  "bytes": 11384,
  "sha": "d0e0ac7e87f1e4c08e6abe5b47d0de1c57daa274c2ec68c1fc731556af0d981d",
  "repo_slug": "chaterm/terminal-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_chaterm_terminal_skills_cron_2f14fd2f/readme"
}