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

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`)
@@ -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)
@@ -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
  ---
@@ -685,7 +689,7 @@ 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
694
  - [ ] Knowledge base files present (40 fragments)
691
695
  - [ ] Output directory exists and is writable
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.1",
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,10 @@
1
- ## 🚀 What's New in v1.5.0
2
-
3
- ### ✨ New Features
4
- - feat: harden generated ci related yml
1
+ ## 🚀 What's New in v1.5.1
5
2
 
6
3
  ### 📦 Other Changes
7
- - addressed PR comments
8
- - Merge pull request #49 from bmad-code-org/feat/harden-generated-ci-related-yml
4
+ - docs: update codex skill mode
5
+ - review comment
6
+ - review comments 2
7
+ - Merge pull request #50 from bmad-code-org/docs/update-codex-skill-mode
9
8
 
10
9
 
11
10
  ## 📦 Installation
@@ -15,4 +14,4 @@ npx bmad-method install
15
14
  # Select "Test Architect" from module menu
16
15
  ```
17
16
 
18
- **Full Changelog**: https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/compare/v1.4.1...v1.5.0
17
+ **Full Changelog**: https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise/compare/v1.5.0...v1.5.1