Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions comfy_cli/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,6 +657,19 @@ def update(
rprint(f"[yellow]Failed to update node id cache: {e}[/yellow]")


@app.command(help="Report installed-vs-latest versions for ComfyUI core and custom node packs (read-only).")
@tracking.track_command()
def outdated(
refresh: Annotated[
bool,
typer.Option("--refresh", help="Bypass the 1h latest-version cache and re-query the network."),
] = False,
):
from comfy_cli.command import outdated as outdated_command

outdated_command.execute(get_renderer(), workspace_manager.workspace_path, refresh=refresh)


@app.command(help="Run an API workflow. Submits and returns immediately by default; pass --wait to block.")
def run(
workflow: Annotated[
Expand Down
Loading
Loading