Examples
Workflow Examples
Dry-run First
Preview repository-aware tag, release-recovery, and container workflows before authorizing persistent changes.
Command
reflowCategory
Examples
Quick Command
reflow [GLOBAL OPTIONS] COMMANDReplace tag formats
Local PEP 440 to SemVer
bash# Preview local tag-ref replacement
reflow --dry-run -C ../project tags convert local --to semver
# Apply after reviewing the plan
reflow -C ../project tags convert local --to semver --yesRemote SemVer to PEP 440
bash# A URL is cloned into a managed temporary workspace for discovery
reflow --dry-run --repository-url https://github.com/acme/project.git tags convert remote --to pep440
# Remote scope performs the guarded push; --push is not used
reflow --repository-url https://github.com/acme/project.git tags convert remote --to pep440 --yesPreview external workflows
Terminal
bash# Find tags whose GitHub releases are missing; do not re-push
reflow --dry-run -C ../project releases recover
# Resolve tagged images; do not build, push, or clean images
reflow --dry-run -C ../project dockerize