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 +1 -1
- package/src/bmm-skills/plan/bmad-sprint-planning/scripts/__pycache__/sprint_plan.cpython-311.pyc +0 -0
- package/src/bmm-skills/plan/bmad-sprint-planning/scripts/tests/__pycache__/test_sprint_plan.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/__pycache__/sprint_status.cpython-311.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/tests/__pycache__/test_git_evidence.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/bmm-skills/ship/bmad-retrospective/scripts/tests/__pycache__/test_sprint_status.cpython-311-pytest-9.1.1.pyc +0 -0
- package/src/core-skills/bmad-party-mode/scripts/resolve_party.py +3 -1
- package/src/scripts/__pycache__/config_utils.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_config_utils.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_resolve_config.cpython-311.pyc +0 -0
- package/src/scripts/tests/__pycache__/test_resolve_customization.cpython-311.pyc +0 -0
package/package.json
CHANGED
package/src/bmm-skills/plan/bmad-sprint-planning/scripts/__pycache__/sprint_plan.cpython-311.pyc
CHANGED
|
Binary file
|
|
Binary file
|
package/src/bmm-skills/ship/bmad-retrospective/scripts/__pycache__/sprint_status.cpython-311.pyc
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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(
|
|
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():
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|