From 0c08cdd1fa0e53facb5be016e6163d8b38e639c1 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Mon, 25 May 2026 00:38:13 -0700 Subject: [PATCH] chore(quick-dev): drop the render.py success stderr line The "rendered N files" progress line was pure diagnostic noise. The shim already tells the LLM to ignore stderr and follow the stdout instruction, so on success render.py now prints only the "read and follow ..." line. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/bmm-skills/4-implementation/bmad-quick-dev/render.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/bmm-skills/4-implementation/bmad-quick-dev/render.py b/src/bmm-skills/4-implementation/bmad-quick-dev/render.py index 157f97788..b5faed752 100644 --- a/src/bmm-skills/4-implementation/bmad-quick-dev/render.py +++ b/src/bmm-skills/4-implementation/bmad-quick-dev/render.py @@ -270,7 +270,6 @@ def main(): if fname.endswith(".md"): os.remove(posixpath.join(out_dir, fname)) - count = 0 for fname in sorted(os.listdir(script_dir)): if not fname.endswith(".md") or fname == "SKILL.md": continue @@ -280,9 +279,7 @@ def main(): content = fh.read() with open(dst, "w", encoding="utf-8", newline="") as fh: fh.write(render_workflow(render_template(content, vars_), workflow)) - count += 1 - print(f"render.py: rendered {count} files -> {out_dir}", file=sys.stderr) workflow_md = posixpath.join(out_dir, "workflow.md") print(f"read and follow {workflow_md}")