bmad-method 6.10.1-next.34 → 6.10.1-next.35

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.
Files changed (20) hide show
  1. package/package.json +4 -3
  2. package/src/bmm-skills/4-implementation/bmad-agent-dev/customize.toml +1 -1
  3. package/src/bmm-skills/4-implementation/bmad-retrospective/SKILL.md +52 -1490
  4. package/src/bmm-skills/4-implementation/bmad-retrospective/customize.toml +2 -2
  5. package/src/bmm-skills/4-implementation/bmad-retrospective/references/acceptance-verdict.md +55 -0
  6. package/src/bmm-skills/4-implementation/bmad-retrospective/references/aggregate-views.md +17 -0
  7. package/src/bmm-skills/4-implementation/bmad-retrospective/references/evidence-gathering.md +24 -0
  8. package/src/bmm-skills/4-implementation/bmad-retrospective/references/retro-document.md +84 -0
  9. package/src/bmm-skills/4-implementation/bmad-retrospective/references/team-discussion.md +22 -0
  10. package/src/bmm-skills/4-implementation/bmad-retrospective/scripts/__pycache__/sprint_status.cpython-311.pyc +0 -0
  11. package/src/bmm-skills/4-implementation/bmad-retrospective/scripts/git_evidence.py +304 -0
  12. package/src/bmm-skills/4-implementation/bmad-retrospective/scripts/sprint_status.py +746 -0
  13. package/src/bmm-skills/4-implementation/bmad-retrospective/scripts/tests/__pycache__/test_git_evidence.cpython-311-pytest-9.1.1.pyc +0 -0
  14. package/src/bmm-skills/4-implementation/bmad-retrospective/scripts/tests/__pycache__/test_sprint_status.cpython-311-pytest-9.1.1.pyc +0 -0
  15. package/src/bmm-skills/4-implementation/bmad-retrospective/scripts/tests/test_git_evidence.py +750 -0
  16. package/src/bmm-skills/4-implementation/bmad-retrospective/scripts/tests/test_sprint_status.py +1580 -0
  17. package/src/scripts/__pycache__/config_utils.cpython-311.pyc +0 -0
  18. package/src/scripts/tests/__pycache__/test_config_utils.cpython-311.pyc +0 -0
  19. package/src/scripts/tests/__pycache__/test_resolve_config.cpython-311.pyc +0 -0
  20. package/src/scripts/tests/__pycache__/test_resolve_customization.cpython-311.pyc +0 -0
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.34",
4
+ "version": "6.10.1-next.35",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -40,14 +40,15 @@
40
40
  "lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix",
41
41
  "lint:md": "markdownlint-cli2 \"**/*.md\"",
42
42
  "prepare": "command -v husky >/dev/null 2>&1 && husky || exit 0",
43
- "quality": "npm run format:check && npm run lint && npm run lint:md && npm run docs:build && npm run test:site-url && npm run test:install && npm run test:urls && npm run test:renderer && npm run test:build-auto-contract && npm run validate:refs && npm run validate:skills && npm run docs:validate-sidebar",
43
+ "quality": "npm run format:check && npm run lint && npm run lint:md && npm run docs:build && npm run test:site-url && npm run test:install && npm run test:urls && npm run test:renderer && npm run test:retrospective && npm run test:build-auto-contract && npm run validate:refs && npm run validate:skills && npm run docs:validate-sidebar",
44
44
  "rebundle": "node tools/installer/bundlers/bundle-web.js rebundle",
45
- "test": "npm run test:refs && npm run test:install && npm run test:urls && npm run test:site-url && npm run test:channels && npm run test:renderer && npm run test:build-auto-contract && npm run test:skills && npm run lint && npm run lint:md && npm run format:check",
45
+ "test": "npm run test:refs && npm run test:install && npm run test:urls && npm run test:site-url && npm run test:channels && npm run test:renderer && npm run test:retrospective && npm run test:build-auto-contract && npm run test:skills && npm run lint && npm run lint:md && npm run format:check",
46
46
  "test:build-auto-contract": "node test/test-build-auto-contract.js",
47
47
  "test:channels": "node test/test-installer-channels.js",
48
48
  "test:install": "node test/test-installation-components.js",
49
49
  "test:refs": "node test/test-file-refs-csv.js",
50
50
  "test:renderer": "uv run --python 3.11 python -m unittest src/scripts/tests/test_config_utils.py src/scripts/tests/test_resolve_config.py src/scripts/tests/test_resolve_customization.py && node test/test-build-renderer.js && node test/test-build-auto-renderer.js",
51
+ "test:retrospective": "uv run --python 3.11 src/bmm-skills/4-implementation/bmad-retrospective/scripts/tests/test_git_evidence.py && uv run --python 3.11 src/bmm-skills/4-implementation/bmad-retrospective/scripts/tests/test_sprint_status.py",
51
52
  "test:site-url": "node test/test-site-url.mjs",
52
53
  "test:skills": "node test/test-validate-skills.js",
53
54
  "test:urls": "node test/test-parse-source-urls.js",
@@ -79,5 +79,5 @@ skill = "bmad-sprint-planning"
79
79
 
80
80
  [[agent.menu]]
81
81
  code = "ER"
82
- description = "Party mode review of all work completed across an epic"
82
+ description = "Evidence-based review of a completed epic against its acceptance criteria"
83
83
  skill = "bmad-retrospective"