Agent skill · Workflow & Productivity

linux-troubleshooting

Linux system troubleshooting workflow for diagnosing and resolving system issues, performance problems, and service failures.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill linux-troubleshooting --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/linux-troubleshooting/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Linux Troubleshooting Workflow ## Overview Specialized workflow for diagnosing and resolving Linux system issues including performance problems, service failures, network issues, and resource constraints. ## When to Use This Workflow Use this workflow when: - Diagnosing system performance issues - Troubleshooting service failures - Investigating network problems - Resolving disk space issues - Debugging application errors ## Workflow Phases ### Phase 1: Initial Assessment #### Skills to Invoke - `bash-linux` - Linux commands - `devops-troubleshooter` - Troubleshooting #### Actions 1. Check system uptime 2. Review recent changes 3. Identify symptoms 4. Gather error messages 5. Document findings #### Commands ```bash uptime hostnamectl cat /etc/os-release dmesg | tail -50 ``` #### Copy-Paste Prompts ``` Use @bash-linux to gather system information ``` ### Phase 2: Resource Analysis #### Skills to Invoke - `bash-linux` - Resource commands - `performance-engineer` - Performance analysis #### Actions 1. Check CPU usage 2. Analyze memory 3. Review disk space 4. Monitor I/O 5. Check network #### Commands ```bash top -bn1 | head -20 free -h df -h iostat -x 1 5 ``` #### Copy-Paste Prompts

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Workflow
  3. Workflow Phases
  4. Phase 1: Initial Assessment
  5. Phase 2: Resource Analysis
  6. Phase 3: Process Investigation
  7. Phase 4: Log Analysis
  8. Phase 5: Network Diagnostics
  9. Phase 6: Service Troubleshooting
  10. Phase 7: Resolution
  11. Troubleshooting Checklist
  12. Quality Gates
  13. Related Workflow Bundles
  14. Limitations
Commands it runs
uptime
hostnamectl
cat /etc/os-release
dmesg | tail -50
top -bn1 | head -20
free -h
df -h
iostat -x 1 5
ps aux --sort=-%cpu | head -10
pstree -p
More from agentic-awesome-skills
All skills →
About this skill
What does the linux-troubleshooting skill do?

Linux system troubleshooting workflow for diagnosing and resolving system issues, performance problems, and service failures.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill linux-troubleshooting --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going