con un clic
package-manager
Install, update, and manage packages on Linux using apt, yum, or dnf
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Install, update, and manage packages on Linux using apt, yum, or dnf
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Essential file system operations.
Common Git version control operations.
Upload, download, and edit files on remote servers via NAVIG
Summarize web pages, articles, YouTube videos, and documents using AI
Query and manage databases on remote servers via NAVIG
Check GitHub repos, CI status, PRs, and issues using the gh CLI
| name | package-manager |
| description | Install, update, and manage packages on Linux using apt, yum, or dnf |
| user-invocable | true |
| os | ["linux"] |
| navig-commands | ["navig run \"apt list --installed\"","navig run \"apt update && apt upgrade -y\"","navig run \"apt install -y {package}\"","navig run \"apt remove {package}\"","navig run \"apt search {query}\""] |
| examples | ["Update packages on the server","Install htop","What packages are installed?","Is nginx installed?","Remove old packages","Check for security updates"] |
Install, update, and manage system packages on remote Linux servers.
# Detect which package manager is available
navig run "which apt && echo 'DEBIAN' || (which dnf && echo 'FEDORA' || (which yum && echo 'CENTOS'))"
navig run "apt update"
⚠️ Confirm: "This will upgrade all packages. Continue?"
navig run "apt update && apt upgrade -y"
Response format:
📦 Package Update on {host}:
Updated: 12 packages
- nginx 1.24.0 → 1.25.3
- openssl 3.0.11 → 3.0.13
- libssl3 3.0.11 → 3.0.13
- ...8 more
✅ System is up to date!
💡 Reboot needed: No
navig run "apt install -y {package}"
⚠️ Confirm first!
navig run "apt remove {package}"
navig run "apt search {query} 2>/dev/null | head -20"
navig run "dpkg -l | grep {package}"
navig run "dpkg --get-selections | grep -v deinstall | wc -l"
navig run "apt list --upgradable 2>/dev/null"
Response format:
🔒 Security Updates Available on {host}:
🔴 Critical:
• openssl 3.0.11 → 3.0.13 (CVE-2024-xxxx)
• linux-image 5.15.0-91 → 5.15.0-94
🟡 Recommended:
• nginx 1.24.0 → 1.25.3
• curl 7.81.0 → 7.88.1
💡 Run updates: "update my server packages"
navig run "apt autoremove -y && apt autoclean"
navig run "dnf update -y"
navig run "dnf install -y {package}"
navig run "dnf remove {package}"
navig run "dnf search {query}"
navig run "dnf check-update"
navig run "rpm -qa | wc -l"
| Package | Description | Command |
|---|---|---|
htop | Interactive process viewer | apt install -y htop |
tmux | Terminal multiplexer | apt install -y tmux |
curl | HTTP client | apt install -y curl |
wget | File downloader | apt install -y wget |
git | Version control | apt install -y git |
unzip | Archive extraction | apt install -y unzip |
ncdu | Disk usage analyzer | apt install -y ncdu |
net-tools | Network utilities | apt install -y net-tools |
fail2ban | Intrusion prevention | apt install -y fail2ban |
ufw | Firewall | apt install -y ufw |
apt list, dpkg -l, apt search, apt policy (read-only)apt install, apt update (modifies system)apt remove, apt purge, apt dist-upgrade (destructive)apt search {name}"apt --fix-broken install"ps aux | grep apt"