# Tag an image
contreetag3f2a7b...my-app:v1.0
# Remove a tag
contreetag3f2a7b...my-app:v1.0--delete
# Use the tagged imageeval$(contreeusetag:my-app:v1.0)
$ contree tag --helpusage: contree tag [-h] [-U] ARG [ARG ...]Assign or remove a tag from an image.Tags provide human-readable names for image UUIDs, making them easierto reference in commands like `contree use tag:NAME`.With one argument, tags the current session image.With two arguments, the first is the image reference and the second is the tag.Use -d/--delete to remove a tag instead of assigning one.positional arguments: ARG TAG (current image) or IMAGE_REF TAGoptions: -h, --help show this help message and exit -U, --delete, --rm Remove tag from imageexamples: contree tag python-dev:latest # tag current session image contree tag UUID python-dev:latest # tag specific image by UUID contree tag tag:alpine:latest my-alpine # re-tag by reference contree tag -d UUID my-tag # remove a tagfor coding agents: mutating command default action assigns tag; use --delete to remove mappingagent note: Before using this command in an automated workflow, read: contree agent