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.

Stars 9
Forks 0

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

bash
ssh <hostname> "command here"

Multi-line / complex commands

bash
ssh <hostname> 'bash -s' << 'EOF'
command1
command2
EOF

File transfer

bash
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:

bash
ssh <hostname> "cat /path/to/file"
# Then write with:
ssh <hostname> "cat > /path/to/file << 'EOF'
content
EOF"

Operational Rules

  1. SSH host key changes: On Tailnet machines, accept new host keys automatically. These machines get reinstalled. Use ssh-keygen -R <host> then ssh -o StrictHostKeyChecking=accept-new.

  2. 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 1 to generate.

  3. User context: All machines use the delorenj user account. Home directory is /home/delorenj on Linux, /Users/delorenj on macOS.

  4. Package managers: Arch Linux machines use pacman/yay. Ubuntu/Debian use apt. macOS uses brew. Check with cat /etc/os-release or uname -s if unsure.

  5. Systemd user services: For per-user daemons on remote machines, use systemctl --user and place units in ~/.config/systemd/user/. Enable lingering if the service should run without login: loginctl enable-linger delorenj.

  6. Config files: Store app configs in ~/.config/<app-name>/ on remote machines.

  7. Parallelism: When operating on multiple machines simultaneously, run independent SSH commands in parallel.

Expand your agent's capabilities with these related and highly-rated skills.

delorenj/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.

9 0
Explore
delorenj/skills

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.

9 0
Explore
delorenj/skills

security-monitor

Real-time security monitoring for Clawdbot. Detects intrusions, unusual API calls, credential usage patterns, and alerts on breaches.

9 0
Explore
delorenj/skills

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.

9 0
Explore
delorenj/skills

shadcn-ui

Expert guidance for integrating and building applications with shadcn/ui components, including component discovery, installation, customization, and best practices.

9 0
Explore
delorenj/skills

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.

9 0
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results