bmad-method 6.10.1-next.49 → 6.10.1-next.50

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,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-method",
4
- "version": "6.10.1-next.49",
4
+ "version": "6.10.1-next.50",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -46,7 +46,9 @@ except ImportError: # pragma: no cover - guarded for <3.11
46
46
  def _run_json(cmd):
47
47
  """Run a resolver script and parse its JSON stdout. None on any failure."""
48
48
  try:
49
- out = subprocess.run(cmd, capture_output=True, text=True, timeout=60)
49
+ out = subprocess.run(
50
+ cmd, capture_output=True, text=True, encoding="utf-8", timeout=60
51
+ )
50
52
  except (OSError, subprocess.SubprocessError):
51
53
  return None
52
54
  if out.returncode != 0 or not out.stdout.strip():