Establishes SSH connections to remote servers for executing commands, checking logs, restarting services, and managing Docker containers via bash scripts.
npx claudepluginhub artwist-polyakov/polyakov-claude-skills --plugin ssh-remote-connectionThis skill uses the workspace's default tool permissions.
Universal skill for connecting to remote servers via SSH.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Universal skill for connecting to remote servers via SSH.
# Interactive shell
scripts/connect.sh
# Run command directly
scripts/connect.sh "docker compose logs backend --tail 50"
Copy config template:
cp config/.env.example config/.env
Fill in config/.env with actual values
Make script executable:
chmod +x scripts/connect.sh
Set environment variables in your cloud configuration:
SSH_HOST — server hostname or IPSSH_USER — SSH usernameSSH_KEY_PATH — path to private keySSH_KEY_PASSWORD — key passphrase (optional)SERVER_PROJECT_PATH — project directory on servergit pull on the server. User will handle git sync manually.docker compose (not docker-compose) on the server.# View logs
scripts/connect.sh "docker compose logs backend --tail 100"
# Restart service
scripts/connect.sh "docker compose restart backend"
# Rebuild and restart
scripts/connect.sh "docker compose build backend && docker compose up -d backend"
# Check status
scripts/connect.sh "docker compose ps"