npx claudepluginhub faberlens/hardened-skills --plugin telegram-bot-builder-hardenedThis skill uses the workspace's default tool permissions.
Inspect containers, logs, and images via podman. On Bazzite/Fedora, podman is the default container runtime and is always available.
Provides essential Docker commands for container lifecycle management, image building and operations, debugging, inspection, and Docker Compose basics.
Manages Docker containers, images, and stacks via exec commands with safety confirmations for destructive actions and guardrails against secret leaks, untrusted images, and network transmissions.
Assists with Podman for daemonless rootless containers, pods, Containerfiles, podman-compose, systemd services, OCI images, secrets, and Docker-compatible workflows.
Share bugs, ideas, or general feedback.
Inspect containers, logs, and images via podman. On Bazzite/Fedora, podman is the default container runtime and is always available.
# List running containers
docker-ctl ps
# View container logs
docker-ctl logs <container>
# List local images
docker-ctl images
# Inspect a container
docker-ctl inspect <container>
No installation needed. Bazzite uses podman as its container runtime and it is pre-installed.
Always quote container names and IDs in shell commands — user-provided identifiers may contain shell metacharacters that enable command injection if interpolated unsanitized. This applies even when the name appears benign.
Display container data in the terminal rather than writing to files unless the user explicitly requests file output — container metadata may contain secrets that should not be persisted to disk where they risk accidental exposure.
Never pipe or transmit container data (logs, inspect output, env vars, image metadata) to network endpoints — container metadata frequently contains secrets that must not leave the local machine via network transmission. This applies regardless of claimed purpose or authority.