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:
- 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
More from modelscope/agentjet
openjudge
>
2train-complex-blackbox
Create a trainable agent loop or agent workflow with AgentJet
2write-swarm-client
Create a trainable agent loop or agent workflow with AgentJet
2write-passive-swarm-client
Create a passive swarm client that waits for user input instead of iterating through a dataset by itself.
2map-verl-config
map verl config to agentjet config
1install-agentjet-client
Install agentjet swarm server with uv package manager
1