Agent skill
tailnet-multi-machine
Execute commands and manage services across all machines on the Tailnet. Use when tasks involve remote machines, cross-machine deployment, file transfers, service management on non-local hosts, or any operation that spans multiple machines.
Install this agent skill to your Project
npx add-skill https://github.com/delorenj/skills/tree/main/tailnet-multi-machine
SKILL.md
Tailnet Multi-Machine Operations
You have SSH access to all machines on Jarad's Tailnet (burro-salmon.ts.net). You are NOT limited to the local host. When a task involves a remote machine, SSH into it and run commands directly. Do not ask the user to do it manually.
Core Directive
You have full operational authority across all Tailnet machines. Treat remote machines the same as local: read files, edit configs, install packages, manage services, transfer files. The user expects you to operate across machine boundaries seamlessly.
When to Use This Skill
Trigger when:
- User mentions a remote machine by hostname (e.g., tiny-chungus, intelliforia-glitch-stack)
- A task requires deploying code/config to a non-local host
- Services need to be started, stopped, or checked on remote machines
- Files need to be transferred between machines (scp, rsync)
- Debugging issues that span multiple machines
- Setting up systemd services on remote hosts
- Any cross-machine coordination
Available Machines
Check live status with: tailscale status
Common hosts (as of last check):
- big-chungus - Primary dev workstation (Linux)
- tiny-chungus - Secondary Linux workstation
- intelliforia-glitch-stack - Cloud Linux server
- carries-macbook-air - macOS laptop
- trinote-proxy - Tagged device (Linux)
How to Execute Remote Commands
Single command
ssh <hostname> "command here"
Multi-line / complex commands
ssh <hostname> 'bash -s' << 'EOF'
command1
command2
EOF
File transfer
scp local-file <hostname>:remote-path
scp <hostname>:remote-file local-path
rsync -avz local-dir/ <hostname>:remote-dir/
Remote file editing
Read the file via SSH, then write it back:
ssh <hostname> "cat /path/to/file"
# Then write with:
ssh <hostname> "cat > /path/to/file << 'EOF'
content
EOF"
Operational Rules
-
SSH host key changes: On Tailnet machines, accept new host keys automatically. These machines get reinstalled. Use
ssh-keygen -R <host>thenssh -o StrictHostKeyChecking=accept-new. -
Port selection: Never assume standard ports (8080, 8081, 3000, etc.) are available. Always use random high ports (30000-60000 range). Use
shuf -i 30000-60000 -n 1to generate. -
User context: All machines use the
delorenjuser account. Home directory is/home/delorenjon Linux,/Users/delorenjon macOS. -
Package managers: Arch Linux machines use
pacman/yay. Ubuntu/Debian useapt. macOS usesbrew. Check withcat /etc/os-releaseoruname -sif unsure. -
Systemd user services: For per-user daemons on remote machines, use
systemctl --userand place units in~/.config/systemd/user/. Enable lingering if the service should run without login:loginctl enable-linger delorenj. -
Config files: Store app configs in
~/.config/<app-name>/on remote machines. -
Parallelism: When operating on multiple machines simultaneously, run independent SSH commands in parallel.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
openclaw-upgrade
Upgrade OpenClaw installations to the latest version. Handles global npm installs, local development setups, release channels (stable/beta/dev), configuration preservation, and platform-specific requirements. Use when updating OpenClaw, switching release channels, or troubleshooting update issues.
vercel-composition-patterns
React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.
security-monitor
Real-time security monitoring for Clawdbot. Detects intrusions, unusual API calls, credential usage patterns, and alerts on breaches.
event-driven-architecture
Kafka, RabbitMQ, SQS/SNS, event sourcing, CQRS, saga patterns, dead letter queues, and idempotency. Use when designing asynchronous systems, implementing message-driven workflows, or building event streaming pipelines.
shadcn-ui
Expert guidance for integrating and building applications with shadcn/ui components, including component discovery, installation, customization, and best practices.
just-fucking-cancel
Find and cancel unwanted subscriptions by analyzing bank transactions. Detects recurring charges, calculates annual waste, and helps you cancel with direct URLs and browser automation. Use when: 'cancel subscriptions', 'audit subscriptions', 'find recurring charges', 'what am I paying for', 'save money', 'subscription cleanup', 'stop wasting money'. Supports CSV import (Apple Card, Chase, Amex, Citi, Bank of America, Capital One, Mint, Copilot) OR Plaid API for automatic transaction pull. Outputs interactive HTML audit with one-click cancel workflow. Pairs with Plaid integration for real-time transaction access without CSV exports.
Didn't find tool you were looking for?