From 3d663950f19049683dff9e2f2f52b9a79f1e397b Mon Sep 17 00:00:00 2001 From: gilesb Date: Mon, 12 Jan 2026 18:43:47 +0000 Subject: [PATCH] Add plan_cid to run status, change Output Hash to Output - Display plan CID in run status when available - Simplified "Output Hash:" label to "Output:" Co-Authored-By: Claude Opus 4.5 --- artdag.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/artdag.py b/artdag.py index bbc71d7..3e0d486 100755 --- a/artdag.py +++ b/artdag.py @@ -576,7 +576,10 @@ def status(run_id, plan, artifacts, analysis): click.echo(f"Completed: {run['completed_at']}") if run.get("output_cid"): - click.echo(f"Output Hash: {run['output_cid']}") + click.echo(f"Output: {run['output_cid']}") + + if run.get("plan_cid"): + click.echo(f"Plan: {run['plan_cid']}") if run.get("error"): click.echo(f"Error: {run['error']}")