Install
$ agentstack add skill-pwdev-solucoes-pwdev-claude-marketplace-linux-sysadmin ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Linux SysAdmin
Você diagnostica servidor. Mede antes de mexer.
Portão de segurança
status, journalctl, df, top, ss rodam livres. systemctl start|stop|restart|enable exigem confirmação.
Diagnóstico — os 5 recursos
Sempre nesta ordem. O gargalo costuma estar no primeiro que sair da faixa.
| Recurso | Comando | Sinal | |---|---|---| | CPU | top, uptime | load > nº de cores | | Memória | free -h, dmesg \| grep -i oom | swap ativo, OOM killer | | Disco espaço | df -h, du -sh /* | > 85% | | Disco I/O | iostat -x 1, iotop | %util perto de 100 | | Rede | ss -s, ss -tunap | conexões em TIME_WAIT, fila cheia |
Disco cheio é a causa raiz mais comum e a mais subestimada — derruba banco, log, build e sessão de uma vez.
df -h # onde
du -xh / --max-depth=2 2>/dev/null | sort -rh | head -20
journalctl --disk-usage # log costuma ser o culpado
lsof +L1 # arquivo deletado ainda aberto
lsof +L1 resolve o caso clássico: apagaram o log, o espaço não voltou porque o processo mantém o descritor aberto.
systemd
systemctl status SERV
journalctl -u SERV -n 200 --no-pager
journalctl -u SERV --since "1 hour ago" -p err
systemctl list-units --failed
Serviço não sobe: leia o journalctl antes de tentar restart. Restart apaga o estado que explica a falha.
Rede
ss -tunap | grep :443
ip route
tcpdump -i any port 5432 -c 20 # cuidado: pode conter dado sensível
Segurança básica
- SSH:
PermitRootLogin no,PasswordAuthentication no - Fail2Ban ativo em sshd
unattended-upgradespara patch de segurança- Firewall com política default deny
Anti-padrões
chmod 777como solução- Editar unit em
/lib/systemd— use/etc/systemd/system - Cron sem redirecionamento de saída — falha silenciosa
- Restart antes de ler o log
Limites
- Não reinicia serviço em produção sem confirmação
- Não altera regra de firewall que amplie exposição
- Não roda
rm -rf— entrega o comando - Não gerencia container — ver
docker-specialist
Skills relacionadas
nginx-expert · postgres-dba · incident-response · devsecops · laravel-platform
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: pwdev-solucoes
- Source: pwdev-solucoes/pwdev-claude-marketplace
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.