Install SecureVibe on Linux¶
The skills-check CLI is a statically linked Go binary with no runtime
dependencies, so any glibc or musl Linux distribution can run it.
The CLI binary name (
skills-check) and the hosted APT/YUM repository paths (undershieldnet-360.github.io/skills-library/) are stable technical identifiers and are not renamed when the project's brand changed to SecureVibe.
APT (Debian / Ubuntu)¶
curl -fsSL https://shieldnet-360.github.io/skills-library/apt/pubkey.gpg \
| sudo gpg --dearmor -o /etc/apt/keyrings/skills-library.gpg
echo "deb [signed-by=/etc/apt/keyrings/skills-library.gpg] \
https://shieldnet-360.github.io/skills-library/apt stable main" \
| sudo tee /etc/apt/sources.list.d/skills-library.list
sudo apt update && sudo apt install skills-check
YUM / DNF (RHEL / Fedora)¶
sudo tee /etc/yum.repos.d/skills-library.repo <<'EOF'
[skills-library]
name=Skills Library
baseurl=https://shieldnet-360.github.io/skills-library/yum
enabled=1
gpgcheck=1
gpgkey=https://shieldnet-360.github.io/skills-library/yum/RPM-GPG-KEY-skills-library
EOF
sudo dnf install skills-check
Standalone .deb / .rpm¶
Download from the latest GitHub Release:
Reproducible-build / packaging details live in
packaging/linux/README.md.
Go install¶
Verify¶
Schedule background updates¶
skills-check init will also offer to install the scheduled update on
first run. Pass --no-prompt for CI usage.