Core server management for Hostinger VPS srv759970 - SSH access, system status, maintenance tasks, and disk space reclamation. Use for any server operation, connection issues, or maintenance tasks.
Manages Hostinger VPS server via SSH for system monitoring, maintenance, and disk cleanup.
/plugin marketplace add theflysurfer/claude-skills-marketplace/plugin install theflysurfer-claude-skills-marketplace@theflysurfer/claude-skills-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Core infrastructure management for srv759970.hstgr.cloud.
| Property | Value |
|---|---|
| Host | 69.62.108.82 |
| User | automation (sudo, no reboot) |
| Alias | srv759970 |
| OS | Ubuntu 24.04 LTS |
| Disk | 193 GB total |
| RAM | 16 GB |
ssh automation@69.62.108.82
# Or with alias
ssh srv759970
Host srv759970
HostName 69.62.108.82
User automation
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
ServerAliveInterval 60
$keyPath = "$env:USERPROFILE\.ssh\id_ed25519"
$acl = Get-Acl $keyPath
$acl.SetAccessRuleProtection($true, $false)
$acl.Access | ForEach-Object { $acl.RemoveAccessRule($_) | Out-Null }
$user = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
$rule = New-Object System.Security.AccessControl.FileSystemAccessRule($user, "FullControl", "Allow")
$acl.AddAccessRule($rule)
Set-Acl $keyPath $acl
ssh srv759970 'free -h && df -h && uptime'
ssh srv759970 'df -h | grep -E "Filesystem|/dev/"'
ssh srv759970 'du -sh /opt/* 2>/dev/null | sort -rh | head -10'
Thresholds: < 20 GB = Warning, < 10 GB = Critical
ssh srv759970 'free -h'
ssh srv759970 'docker stats --no-stream --format "table {{.Name}}\t{{.MemUsage}}" | head -15'
ssh srv759970 'docker ps --format "table {{.Names}}\t{{.Status}}"'
ssh srv759970 'systemctl status nginx docker'
ssh srv759970 'pm2 list'
ssh srv759970 << 'EOF'
echo "=== Docker Cleanup ==="
docker system df
docker image prune -f
docker volume prune -f
docker system df
EOF
Never run docker system prune -a (breaks auto-start)
ssh srv759970 << 'EOF'
echo "=== Health Check ==="
df -h /
free -h
docker ps -a --filter "status=exited" --format '{{.Names}}'
sudo certbot certificates | grep -E "Certificate Name|Expiry Date"
EOF
ssh srv759970 << 'EOF'
# Dangling images (~1GB)
docker image prune -f
# Journal logs (~400MB)
sudo journalctl --vacuum-size=100M
# Safe log cleanup
sudo truncate -s 0 /var/log/rclone-music.log
sudo truncate -s 0 /var/log/nginx-auto-docker.log
EOF
# Old Docker images (>30 days)
docker image prune -a --filter 'until=720h'
# Unused volumes
docker volume prune -f
ssh srv759970 << 'EOF'
# Find large files
find /opt -type f -size +100M -exec ls -lh {} \; 2>/dev/null | head -20
# Large container logs
find /var/lib/docker/containers -name "*-json.log" -exec ls -lh {} \; | sort -k5 -hr | head -10
# Aggressive cleanup
docker system prune -f
sudo apt clean
EOF
| Problem | Solution |
|---|---|
| Permission denied | Fix key permissions (see above) |
| Connection timeout | Check ping 69.62.108.82 |
| Host key changed | ssh-keygen -R 69.62.108.82 |
ssh srv759970 'sudo journalctl -n 100 --no-pager'
ssh srv759970 'sudo journalctl -u nginx -n 50'
CAN: Docker, Nginx, services, SSL, packages, file permissions CANNOT: Reboot, shutdown, modify sudo config
# Connect
ssh automation@69.62.108.82
# Status
ssh srv759970 'free -h && df -h && uptime'
# Docker
ssh srv759970 'docker ps && docker system df'
# Cleanup
ssh srv759970 'docker image prune -f && sudo journalctl --vacuum-size=100M'
# Logs
ssh srv759970 'sudo journalctl -n 100'
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.