File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -588,6 +588,26 @@ def _feature_start(feature_id: str | None) -> None:
588588 regenerate_progress_md ()
589589
590590 echo (f"🔄 Started: { validated_id } - { feature .description } " )
591+ echo (f" Category: { feature .category } , Priority: { feature .priority } " )
592+ echo ("" )
593+
594+ # Show acceptance criteria
595+ if feature .acceptance_criteria :
596+ echo (" 📋 Acceptance Criteria:" )
597+ for ac in feature .acceptance_criteria :
598+ echo (f" • { ac } " )
599+ echo ("" )
600+
601+ # Show notes if present
602+ if feature .notes :
603+ echo (" 📝 Notes:" )
604+ echo (f" { feature .notes } " )
605+ echo ("" )
606+
607+ # Show if previously blocked
608+ if feature .blocked_by :
609+ echo (f" ⚠️ Previously blocked by: { feature .blocked_by } " )
610+ echo ("" )
591611
592612
593613def _feature_verify (feature_id : str | None , evidence : str | None ) -> None :
You can’t perform that action at this time.
0 commit comments