Use this skill when the user wants to inspect Docker registry images, list repository tags, or manage Docker registries without pulling images.
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-01b041c2)More formats (shields.io, HTML) on the badges page.
---
name: reg
description: Use this skill when the user wants to inspect Docker registry images, list repository tags, or manage Docker registries without pulling images.
---
# reg Plugin
Docker registry CLI. List, inspect, and manage Docker registry images and tags from the command line without pulling.
## Commands
### Image Operations
- `reg image list` — List images in registry
- `reg image inspect` — Inspect image manifest
### Utility
- `reg _ _` — Passthrough to reg CLI
## Usage Examples
- "List registry images"
- "Inspect image manifest"
- "Check Docker registry tags"
- "List repository images"
## Installation
```bash
brew install reg
```
Or via Go:
```bash
go install github.com/genuinetools/reg@latest
```
## Examples
```bash
# List images in registry
reg image list r.j3ss.co
# With authentication
reg image list myregistry.com --username user --password pass
# Inspect image manifest
reg image inspect r.j3ss.co/img:latest
# List tags for image
reg image list r.j3ss.co/img
# Any reg command with passthrough
reg _ _ ls r.j3ss.co
reg _ _ manifest r.j3ss.co/img:latest
reg _ _ vulns r.j3ss.co/img:latest
```
## Key Features
- **No pull** - No image pulling needed
- **List** - List repositories and tags
- **Inspect** - Inspect manifests
- **Vulns** - Vulnerability scanning
- **Delete** - Delete tags
- **History** - Show layer history
- **Registry** - Multi-registry support
- **Auth** - Authentication support
- **Docker Hub** - Docker Hub support
- **Fast** - Quick operations
## Notes
- Works without Docker daemon
- Supports private registries
- Great for registry automation
- Can analyze image layers
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!