pub const RUN_EXAMPLES: &str = "\
EXAMPLES:
devp run --dry-run What would be pruned, and why the rest would not
devp run Prune across all registered repositories (asks first)
devp run -y Same, no confirmation prompt
devp run . Prune only the current repository
devp run ~/Code/my-app --ignore-idle -y
Prune it even though it was touched recently
devp run --except api-service,~/Code/playground
Everything except the ones you name
devp run --only cargo,uv --dry-run
Only these package managers
devp run --skip venv --min-size 50
Skip venvs; ignore directories under 50 MiB
devp run --json --dry-run One JSON document on stdout (schema in CLI_REFERENCE)
devp run --explain Why each repository would or would not be pruned
Run interactively with a terminal, `--json` also copies the document to the clipboard.
A run in which any repository failed exits 1, even if others succeeded.";