# List all images
contreeimages
# Filter by tag prefix
contreeimages--prefix=ubuntu
# Only tagged images
contreeimages--tagged
# Images created in the last hour
contreeimages--since=1h
# Find a specific image by UUID prefix
contreeimages--uuid=3f2a7b
# JSON output for scripting
contree-fjsonimages--tagged|jq-r'.tag'
$ contree images --helpusage: contree images [-h] [--prefix PREFIX] [-i UUID] [-a] [--since SINCE] [--until UNTIL] {list,ls,import} ...List and import sandbox images.Without a subcommand, lists images (same as ``images list``).Subcommands: list (ls) List images with filtering and pagination import Import image from a container registrypositional arguments: {list,ls,import} list (ls) List images import Import image from container registryoptions: -h, --help show this help message and exit --prefix PREFIX Filter by tag prefix -i UUID, --uuid UUID Filter by image UUID -a, --all Include untagged images (default: tagged only) --since SINCE Parse +/- intervals (bare seconds or smhdMy) or ISO/date to UTC datetime. --until UNTIL Show images before. Parse +/- intervals (bare seconds or smhdMy) or ISO/date to UTC datetime.examples: contree images --prefix=ubuntu contree images list --all contree images import ubuntu:latest contree images import ubuntu:{latest,noble,jammy} contree images import ghcr.io/owner/image:tagfor coding agents: `images` / `images list` is read-only `images import` spawns async import operations and polls until completion supports brace expansion for batch imports Ctrl+C cancels all active import operationsagent note: Before using this command in an automated workflow, read: contree agent