@@ -142,11 +142,11 @@ def scaffold(
142142 use_single_file = prompts_file .exists () and not output_dir
143143
144144 if use_single_file :
145- console .print (f "[blue]Mode:[/blue] Single-file (prompts.yaml)" )
145+ console .print ("[blue]Mode:[/blue] Single-file (prompts.yaml)" )
146146 console .print (f"[blue]Scanning:[/blue] { src_path } " )
147147 console .print (f"[blue]Output:[/blue] { prompts_file } \n " )
148148 else :
149- console .print (f "[blue]Mode:[/blue] Multi-file (prompts/)" )
149+ console .print ("[blue]Mode:[/blue] Multi-file (prompts/)" )
150150 console .print (f"[blue]Scanning:[/blue] { src_path } " )
151151 console .print (f"[blue]Output:[/blue] { prompts_dir } \n " )
152152
@@ -460,7 +460,7 @@ def migrate(
460460 applied_count = 0
461461 skipped_count = 0
462462 yaml_written_count = 0
463- yaml_skipped_count = 0
463+
464464
465465 for py_file in py_files :
466466 try :
@@ -493,7 +493,7 @@ def migrate(
493493 # In clean mode, show YAML file status
494494 if clean and project_root :
495495 if use_single_file :
496- console .print (f "[green] → Will add to:[/green] prompts.yaml" )
496+ console .print ("[green] → Will add to:[/green] prompts.yaml" )
497497 else :
498498 yaml_path = project_root / PROMPTS_DIR / candidate .prompt_id / "v1.yaml"
499499 if yaml_path .exists ():
@@ -562,7 +562,7 @@ def migrate(
562562 if clean :
563563 console .print (f" [green]YAML files created:[/green] { yaml_written_count } " )
564564 else :
565- console .print (f " [yellow]Dry run - no changes applied[/yellow]" )
565+ console .print (" [yellow]Dry run - no changes applied[/yellow]" )
566566
567567
568568@app .command ()
@@ -706,7 +706,7 @@ def log(
706706 if prompts_file .exists ():
707707 # Single-file mode: show history for prompts.yaml
708708 target_path = prompts_file
709- console .print (f "[blue]Mode:[/blue] Single-file (prompts.yaml)" )
709+ console .print ("[blue]Mode:[/blue] Single-file (prompts.yaml)" )
710710 else :
711711 # Multi-file mode: show history for the prompt directory
712712 target_path = project_root / PROMPTS_DIR / prompt_id
0 commit comments