terminal-title
v1.0.0Automatically updates terminal title with emoji + project + topic context and establishes 2389 workflow conventions for TodoWrite task tracking
Structured procedures for Linux system diagnostics and maintenance via SSH/tmux with Ubuntu/Debian cleanup checklists
/plugin install remote-system-maintenance@2389-research
Full plugin documentation and usage guide
Structured procedures for diagnosing and maintaining remote Linux systems via SSH/tmux.
/plugin install remote-system-maintenance@2389-research
Walks you through system diagnostics and cleanup on remote Linux boxes, focused on Ubuntu/Debian. Three diagnostic phases, a seven-stage cleanup sequence, and documentation templates so you actually record what you did. Expect to recover 2+ GB in a thorough session.
# Phase 1: Initial diagnostics
hostname && df -h && free -h && uptime
ps aux | head -20
ps aux | awk '$8 ~ /Z/ {print}' # Zombie detection
# Phase 2: Log review
journalctl -p err -n 50
journalctl --disk-usage
# Phase 3: Cleanup sequence
apt update && apt upgrade -y
apt autoremove -y && apt clean
journalctl --vacuum-time=7d
# Snap cleanup (biggest wins!)
snap list --all | awk '/disabled/{print $1, $3}'
snap remove package-name --revision=123
# Document: hostname, before/after disk, MB freed per category
Capture baseline system state:
Examine system health:
Find maintenance opportunities:
Run these seven stages in order:
apt updateapt upgradeapt autoremoveapt cleanjournalctl --vacuum-time=7d/tmp and /var/tmpSnap keeps old revisions by default. This is where the big wins are:
# List all disabled snap revisions
snap list --all | awk '/disabled/{print $1, $3}'
# Remove specific revision
snap remove <package-name> --revision=<revision-number>
You have to remove each revision by number explicitly.
Typical recovery per category:
Every maintenance session should produce a structured log covering:
A typical maintenance session takes 15-30 minutes including diagnostics, cleanup, and documentation.
See skills/SKILL.md for the complete maintenance procedures.
Structure ad-hoc operational work with checklists and documentation. Quantify everything.
Get started in seconds
/plugin marketplace add 2389-research/claude-plugins
/plugin install remote-system-maintenance
Skills auto-trigger when relevant