bmad-method-test-architecture-enterprise 1.5.0 → 1.5.2

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/README.md CHANGED
@@ -54,7 +54,7 @@ flowchart LR
54
54
 
55
55
  ### How It Works at Runtime
56
56
 
57
- 1. **Trigger** — User types `/bmad:tea:automate` (or shorthand `TA`). The agent menu in `tea.agent.yaml` maps the trigger to `automate/workflow.yaml`.
57
+ 1. **Trigger** — Direct commands are `/bmad:tea:automate` (Claude/Cursor/Windsurf) and `$bmad-tea-testarch-automate` (Codex). `TA` is an agent-menu trigger available only after TEA is activated; the menu in `tea.agent.yaml` maps `TA` to `automate/workflow.yaml`.
58
58
  2. **Agent loads** — `tea.agent.yaml` injects the persona (identity, principles, critical actions) into the context window.
59
59
  3. **Workflow loads** — `workflow.yaml` resolves config variables and `workflow.md` presents the mode menu (Create / Edit / Validate), then routes to the first step file.
60
60
  4. **Step-by-step execution** — Only the current step file is in context (just-in-time loading). Each step explicitly names the next one (`nextStepFile: './step-02-...'`). The LLM reads, executes, saves output, then loads the next step. No future steps are ever preloaded.
@@ -81,9 +81,9 @@ BMad workflows and Claude Code Skills solve different problems at different scal
81
81
 
82
82
  The key insight is that there is **no external runtime engine** — the LLM _is_ the engine. BMad workflows are structured markdown that the LLM follows as instructions: "read this file, execute it completely, save your output, load the next file." Skills are a single tool in a toolbox; BMad workflows are a workshop with a process manual.
83
83
 
84
- **How workflows become commands.** When you run `npx bmad-method install`, the installer converts every workflow and agent into a Claude Code command in `.claude/commands/`. For example, `bmad-tea-testarch-automate.md` tells the LLM: "load the core workflow engine (`workflow.xml`), pass it this workflow config (`automate/workflow.yaml`), follow the instructions exactly." That single command file is the bridge — it triggers the workflow entry point; the multi-step engine takes over from there.
84
+ **How workflows become commands.** When you run `npx bmad-method install`, the installer generates tool-specific artifacts for your runtime (for example, Claude Code uses `.claude/commands/`, while Codex uses `.agents/skills/`). In Claude Code, `bmad-tea-testarch-automate.md` tells the LLM: "load the core workflow engine (`workflow.xml`), pass it this workflow config (`automate/workflow.yaml`), follow the instructions exactly." That launcher artifact is the bridge — it triggers the workflow entry point; the multi-step engine takes over from there.
85
85
 
86
- ```
86
+ ```text
87
87
  .claude/commands/ # Generated by installer
88
88
  ├── bmad-agent-tea-tea.md # /tea → loads agent persona + menu
89
89
  ├── bmad-tea-testarch-automate.md # /automate → loads workflow.xml + workflow.yaml
@@ -103,13 +103,20 @@ npx bmad-method install
103
103
 
104
104
  **Note:** TEA is automatically added to party mode after installation. Use `/party` to collaborate with TEA alongside other BMad agents.
105
105
 
106
+ ### Tool-specific invocation
107
+
108
+ | Tool | Invocation style | Example |
109
+ | ------------------------------- | ------------------------------- | ----------------------------- |
110
+ | Claude Code / Cursor / Windsurf | Slash command | `/bmad:tea:automate` |
111
+ | Codex | `$` skill from `.agents/skills` | `$bmad-tea-testarch-automate` |
112
+
106
113
  ## Quickstart
107
114
 
108
115
  1. Install TEA (above)
109
116
  2. Run one of the core workflows:
110
- - `TD` / `/bmad:tea:test-design` — test design and risk assessment
111
- - `AT` / `/bmad:tea:atdd` — failing acceptance tests first (TDD red phase)
112
- - `TA` / `/bmad:tea:automate` — expand automation coverage
117
+ - `TD` / `/bmad:tea:test-design` / `$bmad-tea-testarch-test-design` — test design and risk assessment
118
+ - `AT` / `/bmad:tea:atdd` / `$bmad-tea-testarch-atdd` — failing acceptance tests first (TDD red phase)
119
+ - `TA` / `/bmad:tea:automate` / `$bmad-tea-testarch-automate` — expand automation coverage
113
120
  3. Or use in party mode: `/party` to include TEA with other agents
114
121
 
115
122
  ## Engagement Models
@@ -121,17 +128,17 @@ npx bmad-method install
121
128
 
122
129
  ## Workflows
123
130
 
124
- | Trigger | Command | Purpose |
125
- | ------- | ---------------------------- | --------------------------------------------------------- |
126
- | TMT | `/bmad:tea:teach-me-testing` | Teach Me Testing (TEA Academy) |
127
- | TF | `/bmad:tea:framework` | Scaffold test framework (frontend, backend, or fullstack) |
128
- | CI | `/bmad:tea:ci` | Set up CI/CD quality pipeline (multi-platform) |
129
- | TD | `/bmad:tea:test-design` | System-level or epic-level test design |
130
- | AT | `/bmad:tea:atdd` | Generate failing acceptance tests + checklist |
131
- | TA | `/bmad:tea:automate` | Expand test automation coverage |
132
- | RV | `/bmad:tea:test-review` | Review test quality and score |
133
- | TR | `/bmad:tea:trace` | Trace requirements to tests + gate decision |
134
- | NR | `/bmad:tea:nfr-assess` | Assess non-functional requirements |
131
+ | Trigger | Slash Command | Codex Skill | Purpose |
132
+ | ------- | ---------------------------- | -------------------------------- | --------------------------------------------------------- |
133
+ | TMT | `/bmad:tea:teach-me-testing` | `$bmad-tea-teach-me-testing` | Teach Me Testing (TEA Academy) |
134
+ | TF | `/bmad:tea:framework` | `$bmad-tea-testarch-framework` | Scaffold test framework (frontend, backend, or fullstack) |
135
+ | CI | `/bmad:tea:ci` | `$bmad-tea-testarch-ci` | Set up CI/CD quality pipeline (multi-platform) |
136
+ | TD | `/bmad:tea:test-design` | `$bmad-tea-testarch-test-design` | System-level or epic-level test design |
137
+ | AT | `/bmad:tea:atdd` | `$bmad-tea-testarch-atdd` | Generate failing acceptance tests + checklist |
138
+ | TA | `/bmad:tea:automate` | `$bmad-tea-testarch-automate` | Expand test automation coverage |
139
+ | RV | `/bmad:tea:test-review` | `$bmad-tea-testarch-test-review` | Review test quality and score |
140
+ | TR | `/bmad:tea:trace` | `$bmad-tea-testarch-trace` | Trace requirements to tests + gate decision |
141
+ | NR | `/bmad:tea:nfr-assess` | `$bmad-tea-testarch-nfr` | Assess non-functional requirements |
135
142
 
136
143
  ## Configuration
137
144
 
package/docs/MIGRATION.md CHANGED
@@ -36,6 +36,10 @@ All TEA commands have changed namespace from `/bmad:bmm:tea:*` to `/bmad:tea:*`.
36
36
  | `TF`, `CI`, `TD`, `AT`, `TA` | Same |
37
37
  | `RV`, `TR`, `NR` | Same |
38
38
 
39
+ Codex skill-mode workflow equivalents: `framework` → `$bmad-tea-testarch-framework`, `ci` → `$bmad-tea-testarch-ci`, `test-design` → `$bmad-tea-testarch-test-design`, `atdd` → `$bmad-tea-testarch-atdd`, `automate` → `$bmad-tea-testarch-automate`, `test-review` → `$bmad-tea-testarch-test-review`, `trace` → `$bmad-tea-testarch-trace`, `nfr-assess` → `$bmad-tea-testarch-nfr`, `teach-me-testing` → `$bmad-tea-teach-me-testing`.
40
+
41
+ Clarification: short triggers like `TD` and `TA` are agent menu triggers after TEA activation; invocation differs by tool (slash commands vs Codex skill calls).
42
+
39
43
  **Action Required**: Update any saved prompts, scripts, or documentation that reference the old commands.
40
44
 
41
45
  ### 2. Module Installation
@@ -172,6 +176,8 @@ claude "/bmad:bmm:tea:test-design"
172
176
  claude "/bmad:tea:test-design"
173
177
  ```
174
178
 
179
+ Codex skill mode (in Codex chat): `$bmad-tea-testarch-test-design`
180
+
175
181
  **Example: Updating Documentation**
176
182
 
177
183
  ```markdown
@@ -184,6 +190,8 @@ Run `/bmad:bmm:tea:automate` to expand test coverage.
184
190
  Run `/bmad:tea:automate` to expand test coverage.
185
191
  ```
186
192
 
193
+ Codex skill-mode equivalent: use `$bmad-tea-testarch-automate`.
194
+
187
195
  ### Step 4: Verify Installation
188
196
 
189
197
  Load the TEA agent and run a test command:
@@ -353,12 +361,15 @@ See [Configure Browser Automation](/docs/how-to/customization/configure-browser-
353
361
 
354
362
  **Solution**: Update to new namespace:
355
363
 
356
- ```bash
364
+ ```text
357
365
  # Old (won't work)
358
366
  /bmad:bmm:tea:test-design
359
367
 
360
368
  # New (correct)
361
369
  /bmad:tea:test-design
370
+
371
+ # Codex skill mode
372
+ $bmad-tea-testarch-test-design
362
373
  ```
363
374
 
364
375
  ### Issue: Configuration Variables Not Set
@@ -427,7 +438,7 @@ Use this checklist to ensure a smooth migration:
427
438
  - [ ] Verify BMAD Method version is v7.0.0 or later
428
439
  - [ ] Install standalone TEA module via `npx bmad-method install`
429
440
  - [ ] Configure TEA variables (test_artifacts, Playwright Utils, MCP)
430
- - [ ] Update saved prompts to use new namespace (`/bmad:tea:*`)
441
+ - [ ] Update saved invocations for your tool (`/bmad:tea:*` for slash-command tools, or `$bmad-tea-*` skills for Codex)
431
442
  - [ ] Update documentation references to new commands
432
443
  - [ ] Update CI/CD scripts if they invoke TEA commands
433
444
  - [ ] Test each workflow you use (e.g., `test-design`, `automate`, `atdd`)
@@ -345,7 +345,7 @@ Production-ready contract testing utilities that reduce raw Pact.js boilerplate
345
345
  - Install: `npm install -D @seontechnologies/pactjs-utils @pact-foundation/pact`
346
346
  - Config: `tea_use_pactjs_utils: true` (default is `true`)
347
347
  - Impacts: `framework`, `atdd`, `automate`, `test-design`, `test-review`, `ci`
348
- - Utilities include: createProviderState, toJsonMap, buildVerifierOptions, buildMessageVerifierOptions, createRequestFilter, noOpRequestFilter, handlePactBrokerUrlAndSelectors, getProviderVersionTags
348
+ - Utilities include: createProviderState, toJsonMap, setJsonBody, setJsonContent, buildVerifierOptions, buildMessageVerifierOptions, createRequestFilter, noOpRequestFilter, handlePactBrokerUrlAndSelectors, getProviderVersionTags
349
349
  - Supports local monorepo flow (`pactUrls`) and remote broker flow (`PACT_BROKER_BASE_URL`, `PACT_BROKER_TOKEN`)
350
350
 
351
351
  ### Browser Automation (Playwright CLI + MCP)
@@ -455,7 +455,7 @@ Optional MCP integration for design-time broker interaction in contract testing
455
455
  - [Test Quality Standards](/docs/explanation/test-quality-standards.md) - Definition of Done, determinism, isolation, explicit assertions
456
456
  - [Fixture Architecture](/docs/explanation/fixture-architecture.md) - Pure function → fixture → composition pattern
457
457
  - [Network-First Patterns](/docs/explanation/network-first-patterns.md) - Intercept-before-navigate, eliminating flakiness
458
- - [Knowledge Base System](/docs/explanation/knowledge-base-system.md) - Context engineering with tea-index.csv, 40 fragments
458
+ - [Knowledge Base System](/docs/explanation/knowledge-base-system.md) - Context engineering with tea-index.csv, 42 fragments
459
459
  - [Engagement Models](/docs/explanation/engagement-models.md) - TEA Lite, TEA Solo, TEA Integrated (5 models explained)
460
460
 
461
461
  ### Philosophy & Design
@@ -470,5 +470,5 @@ Optional MCP integration for design-time broker interaction in contract testing
470
470
 
471
471
  - [TEA Command Reference](/docs/reference/commands.md) - All 9 workflows: inputs, outputs, phases, frequency
472
472
  - [TEA Configuration Reference](/docs/reference/configuration.md) - Config options, file locations, setup examples
473
- - [Knowledge Base Index](/docs/reference/knowledge-base.md) - 40 fragments categorized and explained
473
+ - [Knowledge Base Index](/docs/reference/knowledge-base.md) - 42 fragments categorized and explained
474
474
  - [Glossary - TEA Section](/docs/glossary/index.md#test-architect-tea-concepts) - 20 TEA-specific terms defined
@@ -41,7 +41,7 @@ The solution combines three components that work together to enforce quality:
41
41
 
42
42
  **Playwright-Utils examples:** `api-request`, `auth-session`, `intercept-network-call`, `recurse`, `log`, `network-recorder`, `burn-in`, `network-error-monitor`, `file-utils`.
43
43
 
44
- **pactjs-utils examples:** `createProviderState`, `toJsonMap`, `createRequestFilter`, `noOpRequestFilter`, `buildVerifierOptions`, `buildMessageVerifierOptions`.
44
+ **pactjs-utils examples:** `createProviderState`, `toJsonMap`, `setJsonBody`, `setJsonContent`, `createRequestFilter`, `noOpRequestFilter`, `buildVerifierOptions`, `buildMessageVerifierOptions`.
45
45
 
46
46
  Together, these utility libraries eliminate the need to reinvent core testing primitives across UI, API, web, non-web, and contract testing.
47
47
 
@@ -33,7 +33,7 @@ npm install -g @playwright/cli@latest # Install globally (Node.js 18+)
33
33
  playwright-cli install --skills # Register as an agent skill
34
34
  ```
35
35
 
36
- The global npm install is one-time. The skills install (`playwright-cli install --skills`) should be run from your project root — it registers skills in your project's `.claude/skills/` directory (Claude Code, GitHub Copilot, and other coding agents that support the skills convention). Agents without skills support can still use the CLI directly via `playwright-cli --help`.
36
+ The global npm install is one-time. The skills install (`playwright-cli install --skills`) should be run from your project root — it registers skills in your active tool's project skills directory (for example, Claude Code uses `.claude/skills/` and Codex uses `.agents/skills/`). Agents without skills support can still use the CLI directly via `playwright-cli --help`.
37
37
 
38
38
  ### For MCP (`mcp` or `auto` mode)
39
39
 
@@ -7,6 +7,11 @@ description: Quick reference for all 9 TEA workflows - inputs, outputs, and link
7
7
 
8
8
  Quick reference for all 9 TEA (Test Engineering Architect) workflows. For detailed step-by-step guides, see the how-to documentation.
9
9
 
10
+ **Invocation by tool:**
11
+
12
+ - Claude Code / Cursor / Windsurf: use slash commands (for example, `/bmad:tea:automate`)
13
+ - Codex: use `$` skills from `.agents/skills` (for example, `$bmad-tea-testarch-automate`)
14
+
10
15
  ## Quick Index
11
16
 
12
17
  - [`teach-me-testing`](#teach-me-testing) - Learn testing (TEA Academy)
@@ -175,14 +175,16 @@ Feature flag testing and pure API testing patterns.
175
175
 
176
176
  Contract testing fundamentals plus Pact.js Utils and Pact MCP integrations.
177
177
 
178
- | Fragment | Description | Key Topics |
179
- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- | ---------------------------------------------- |
180
- | [contract-testing](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/contract-testing.md) | Raw Pact patterns, publishing, verification, resilience | Contract testing, Pact fundamentals |
181
- | [pactjs-utils-overview](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-overview.md) | Installation, flow decision tree, utility map | pactjs-utils, CDCT/BDCT, integration strategy |
182
- | [pactjs-utils-consumer-helpers](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-consumer-helpers.md) | `createProviderState`, `toJsonMap` for consumer-side provider states | pactjs-utils, consumer testing, provider state |
183
- | [pactjs-utils-provider-verifier](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-provider-verifier.md) | `buildVerifierOptions`, `buildMessageVerifierOptions`, broker selectors, tagging | pactjs-utils, provider verification, CI |
184
- | [pactjs-utils-request-filter](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-request-filter.md) | `createRequestFilter`, `noOpRequestFilter` auth/header patterns | pactjs-utils, request filter, auth injection |
185
- | [pact-mcp](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pact-mcp.md) | SmartBear MCP tools for provider states, review, can-i-deploy, matrix | pact-mcp, broker interaction, pactflow |
178
+ | Fragment | Description | Key Topics |
179
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------- |
180
+ | [contract-testing](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/contract-testing.md) | Raw Pact patterns, publishing, verification, resilience | Contract testing, Pact fundamentals |
181
+ | [pactjs-utils-overview](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-overview.md) | Installation, flow decision tree, utility map | pactjs-utils, CDCT/BDCT, integration strategy |
182
+ | [pactjs-utils-consumer-helpers](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-consumer-helpers.md) | Provider-state helpers: `createProviderState`, `toJsonMap`; request/response callback helpers: `setJsonBody`, `setJsonContent` | pactjs-utils, consumer testing, provider state |
183
+ | [pactjs-utils-provider-verifier](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-provider-verifier.md) | `buildVerifierOptions`, `buildMessageVerifierOptions`, broker selectors, tagging | pactjs-utils, provider verification, CI |
184
+ | [pactjs-utils-request-filter](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pactjs-utils-request-filter.md) | `createRequestFilter`, `noOpRequestFilter` auth/header patterns | pactjs-utils, request filter, auth injection |
185
+ | [pact-mcp](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pact-mcp.md) | SmartBear MCP tools for provider states, review, can-i-deploy, matrix | pact-mcp, broker interaction, pactflow |
186
+ | [pact-consumer-framework-setup](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pact-consumer-framework-setup.md) | Consumer CDC framework scaffolding: directory layout, scripts, CI workflow, and PactV4 test patterns | pactjs-utils, consumer CDC, framework setup |
187
+ | [pact-consumer-di](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/blob/main/src/testarch/knowledge/pact-consumer-di.md) | Dependency-injection pattern for Pact consumer tests using real client code | pact, consumer, DI, contract accuracy |
186
188
 
187
189
  **Used in:** `framework`, `test-design`, `atdd`, `automate`, `test-review`, `ci` (conditioned by `tea_use_pactjs_utils` and `tea_pact_mcp`)
188
190
 
@@ -255,7 +257,7 @@ Fragments are loaded based on workflow needs and tier priority:
255
257
  - **Extended tier**: Loaded when the workflow context requires them (e.g., `auth-session.md` when tests involve authentication)
256
258
  - **Specialized tier**: Only loaded when the specific use case matches (e.g., contract-testing for microservices, email-auth for email flows)
257
259
 
258
- **Fragment Location:** `src/testarch/knowledge/` (all 40 fragments in a single directory)
260
+ **Fragment Location:** `src/testarch/knowledge/` (all 42 fragments in a single directory)
259
261
 
260
262
  **Manifest:** `src/testarch/tea-index.csv`
261
263
 
@@ -195,9 +195,13 @@ If the BMAD installer can run but cannot fetch the Test Architect module from Gi
195
195
  ```
196
196
 
197
197
  3. Test workflow trigger directly:
198
- ```bash
199
- # Try full command
198
+
199
+ ```text
200
+ # Try full slash command
200
201
  /bmad:tea:test-design
202
+
203
+ # Codex skill-mode alternative
204
+ $bmad-tea-testarch-test-design
201
205
  ```
202
206
 
203
207
  ---
@@ -304,7 +308,7 @@ If the BMAD installer can run but cannot fetch the Test Architect module from Gi
304
308
 
305
309
  ```bash
306
310
  cat _bmad/tea/testarch/tea-index.csv | wc -l
307
- # Should show 41 lines (header + 40 fragments)
311
+ # Should show 43 lines (header + 42 fragments)
308
312
  ```
309
313
 
310
314
  2. Check knowledge fragment files:
@@ -609,7 +613,7 @@ If the BMAD installer can run but cannot fetch the Test Architect module from Gi
609
613
 
610
614
  **Causes**:
611
615
 
612
- - Up to 40 fragments loading at once (depends on workflow and enabled integrations)
616
+ - Up to 42 fragments loading at once (depends on workflow and enabled integrations)
613
617
  - Large fragment file sizes
614
618
  - Disk I/O bottleneck
615
619
 
@@ -685,9 +689,9 @@ When reporting issues, include:
685
689
  Check these first:
686
690
 
687
691
  - [ ] TEA is installed: `ls -la _bmad/tea/`
688
- - [ ] Using correct command namespace: `/bmad:tea:*` not `/bmad:bmm:tea:*`
692
+ - [ ] Using the correct invocation for your tool: slash namespace `/bmad:tea:*` (not `/bmad:bmm:tea:*`) or Codex skill equivalents (`$bmad-tea-*`)
689
693
  - [ ] Module.yaml exists and is valid
690
- - [ ] Knowledge base files present (40 fragments)
694
+ - [ ] Knowledge base files present (42 fragments)
691
695
  - [ ] Output directory exists and is writable
692
696
  - [ ] No disk space issues: `df -h`
693
697
  - [ ] Node version >=20.0.0: `node --version`
@@ -751,7 +755,7 @@ done
751
755
 
752
756
  # Check knowledge base
753
757
  fragment_count=$(ls _bmad/tea/testarch/knowledge/*.md 2>/dev/null | wc -l)
754
- echo "Knowledge fragments: $fragment_count (expected: 40)"
758
+ echo "Knowledge fragments: $fragment_count (expected: 42)"
755
759
 
756
760
  # Check tea-index.csv
757
761
  csv_lines=$(wc -l < _bmad/tea/testarch/tea-index.csv 2>/dev/null || echo "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-test-architecture-enterprise",
4
- "version": "1.5.0",
4
+ "version": "1.5.2",
5
5
  "description": "Master Test Architect for quality strategy, test automation, and release gates",
6
6
  "keywords": [
7
7
  "bmad",
package/release_notes.md CHANGED
@@ -1,11 +1,13 @@
1
- ## 🚀 What's New in v1.5.0
1
+ ## 🚀 What's New in v1.5.2
2
2
 
3
3
  ### ✨ New Features
4
- - feat: harden generated ci related yml
4
+ - feat: harden pact framework and knowledge
5
+
6
+ ### 🐛 Bug Fixes
7
+ - fix: pr comments
5
8
 
6
9
  ### 📦 Other Changes
7
- - addressed PR comments
8
- - Merge pull request #49 from bmad-code-org/feat/harden-generated-ci-related-yml
10
+ - Merge pull request #51 from bmad-code-org/feat/harden-pact-framework-flow
9
11
 
10
12
 
11
13
  ## 📦 Installation
@@ -15,4 +17,4 @@ npx bmad-method install
15
17
  # Select "Test Architect" from module menu
16
18
  ```
17
19
 
18
- **Full Changelog**: https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/compare/v1.4.1...v1.5.0
20
+ **Full Changelog**: https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/compare/v1.5.1...v1.5.2