What problem does it solve? Setting up a Linux environment often requires installing system packages, and doing it incorrectly can waste time on failed installs, stale package metadata, or unnecessary upgrades. This Skill provides a disciplined workflow for finding, installing, and verifying Debian/Ubuntu packages inside a container. ## Core Features & Use Cases - Package Discovery: Search for the correct package name with apt-cache search and check candidate versions with apt-cache policy. - Safe Installation: Refresh metadata with apt-get update and install only the minimal required packages using apt-get install -y, avoiding broad upgrades. - Installation Verification: Confirm success with command -v, dpkg -s, or version checks before finishing a task. - Use Case: A task requires the jq JSON processor in an Ubuntu container. Use this Skill to update package metadata, install jq, and verify the binary works before proceeding. ## Quick Start Install the jq package in this Ubuntu container and verify that the jq binary is available.