orchestrix-yuri 4.8.8 → 4.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrix-yuri",
3
- "version": "4.8.8",
3
+ "version": "4.8.9",
4
4
  "description": "Yuri — Meta-Orchestrator for Orchestrix. Drive your entire project lifecycle with natural language.",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {
@@ -70,8 +70,11 @@ for f in "$STORIES_DIR"/*.md; do
70
70
  blocked) echo "StatusBlocked:$fname" ;;
71
71
  approved|ready) echo "StatusApproved:$fname" ;;
72
72
  draft|new|todo|pending|open) echo "StatusDraft:$fname" ;;
73
+ awaitingarchreview|awaiting_arch_review) echo "StatusAwaitingArchReview:$fname" ;;
74
+ requiresrevision|requires_revision) echo "StatusRequiresRevision:$fname" ;;
75
+ escalated) echo "StatusEscalated:$fname" ;;
73
76
  "") echo "StatusNoStatus:$fname" ;;
74
- *) echo "StatusOther:$fname:$status" ;;
77
+ *) echo "Status${status}:$fname" ;;
75
78
  esac
76
79
  done
77
80