Use this skill when the user wants to build container images without Docker daemon, run unprivileged builds, or build images in CI/CD environments.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-4bab1cea)More formats (shields.io, HTML) on the badges page.
---
name: img
description: Use this skill when the user wants to build container images without Docker daemon, run unprivileged builds, or build images in CI/CD environments.
---
# img Plugin
Standalone, daemon-less, unprivileged container image builder. Build container images without Docker daemon or root privileges.
## Commands
### Image Building
- `img image build` — Build a container image
### Utility
- `img _ _` — Passthrough to img CLI
## Usage Examples
- "Build container image"
- "Dockerless image build"
- "Unprivileged image build"
- "Build image without Docker"
## Installation
```bash
brew install img
```
Or via Go:
```bash
go install github.com/genuinetools/img@latest
```
## Examples
```bash
# Build image
img image build --tag myapp:latest .
# Build with specific Dockerfile
img image build --tag myapp:latest --file Dockerfile.prod .
# No cache build
img image build --tag myapp:latest --no-cache .
# Any img command with passthrough
img _ _ build --tag myapp:latest .
img _ _ ls
img _ _ pull alpine:latest
```
## Key Features
- **Daemon-less** - No Docker daemon
- **Unprivileged** - No root needed
- **Secure** - User namespace isolation
- **OCI** - OCI compliant images
- **Dockerfile** - Standard Dockerfile support
- **Cache** - Layer caching
- **Lightweight** - Minimal footprint
- **Fast** - Quick builds
- **CI/CD** - Pipeline friendly
- **Compatible** - Docker compatible
## Notes
- No Docker daemon required
- Runs without root privileges
- Great for CI/CD pipelines
- OCI image compatible
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!