orchestrix-yuri 4.5.9 → 4.6.0

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.5.9",
3
+ "version": "4.6.0",
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": {
@@ -26,8 +26,9 @@ total_planned=0
26
26
  if [ -d "$PRD_DIR" ]; then
27
27
  for yaml in "$PRD_DIR"/epic-*.yaml; do
28
28
  [ -f "$yaml" ] || continue
29
- # Count lines matching " - id:" (story entries in the stories array)
30
- n=$(grep -cE '^\s+- id:' "$yaml" 2>/dev/null || echo 0)
29
+ # Count story-level entries only (2-space indent: " - id:")
30
+ # Deeper indentation (4+ spaces) are acceptance_criteria, business_rules, etc.
31
+ n=$(grep -cE '^ - id:' "$yaml" 2>/dev/null || echo 0)
31
32
  total_planned=$((total_planned + n))
32
33
  done
33
34
  fi