Linux system troubleshooting workflow for diagnosing and resolving system issues, performance problems, and service failures.
39
37%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./plugins/AI-Agents-Safe-Coding-Skills/skills/linux-troubleshooting/SKILL.mdThe canonical home for this skill is linux-troubleshooting in administrakt0r/AI-Agents-Safe-Coding-Skills
Specialized workflow for diagnosing and resolving Linux system issues including performance problems, service failures, network issues, and resource constraints.
Use this workflow when:
bash-linux - Linux commandsdevops-troubleshooter - Troubleshootinguptime
hostnamectl
cat /etc/os-release
dmesg | tail -50Use @bash-linux to gather system informationbash-linux - Resource commandsperformance-engineer - Performance analysistop -bn1 | head -20
free -h
df -h
iostat -x 1 5Use @performance-engineer to analyze system resourcesbash-linux - Process commandsserver-management - Process managementps aux --sort=-%cpu | head -10
pstree -p
lsof -p PID
strace -p PIDUse @server-management to investigate processesbash-linux - Log commandserror-detective - Error detectionjournalctl -xe
tail -f /var/log/syslog
grep -i error /var/log/*Use @error-detective to analyze log filesbash-linux - Network commandsnetwork-engineer - Network troubleshootingip addr show
ss -tulpn
curl -v http://target
dig domainUse @network-engineer to diagnose network issuesserver-management - Service managementsystematic-debugging - Debuggingsystemctl status service
journalctl -u service -f
systemctl restart serviceUse @systematic-debugging to troubleshoot service issuesincident-responder - Incident responsebash-pro - Fix implementationUse @incident-responder to implement resolutionos-scripting - OS scriptingbash-scripting - Bash scriptingcloud-devops - DevOps57c135b
Canonical home
since Aug 19, 2026
Also appears in
since Aug 19, 2026
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.