monitor-with-tmux

Installation
SKILL.md

Monitor with Tmux

Monitor training progress in tmux, detect anomalies, analyze errors, provide fix suggestions.

Step Zero

Create a sleep script for tmux monitoring:

  1. Create ./tmp/wait_tmux.py
import argparse
import subprocess
import time

SHELLS = {"bash", "zsh", "sh", "fish", "csh", "tcsh", "ksh", "dash", "ash"}

def smart_sleep(session: str, seconds: float, check_every: float = 2.0) -> bool:
    """
Related skills
Installs
1
GitHub Stars
202
First Seen
2 days ago