ma-agents 3.14.1 → 3.15.0-beta.0

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 (81) hide show
  1. package/README.md +3 -3
  2. package/lib/agents.js +2 -2
  3. package/lib/bmad-customize/bmm-qa.customize.yaml +3 -3
  4. package/lib/bmad-extension/.claude-plugin/marketplace.json.template +3 -3
  5. package/lib/bmad-extension/skills/bmad-knowledge/.gitkeep +0 -0
  6. package/lib/bmad-extension/skills/bmad-knowledge/SKILL.md +130 -0
  7. package/lib/{bmad-extension-plugin/skills/bmad-dev-epic → bmad-extension/skills/bmad-knowledge}/bmad-skill-manifest.yaml +1 -1
  8. package/lib/bmad-extension/skills/ma-agent-sqa/SKILL.md +3 -3
  9. package/lib/bmad-extension/skills/ma-agent-sqa/bmad-skill-manifest.yaml +1 -1
  10. package/lib/bmad-extension/skills/module-help.csv +2 -2
  11. package/lib/bmad-extension/skills/module.yaml +1 -1
  12. package/lib/bmad-extension/skills/sqa-audit/SKILL.md +2 -2
  13. package/lib/bmad-extension/skills/sqa-ieee12207/SKILL.md +3 -3
  14. package/lib/bmad-extension/skills/sqa-requirements-quality/SKILL.md +2 -2
  15. package/lib/bmad-extension-plugin/.claude-plugin/marketplace.json +4 -4
  16. package/lib/bmad-extension-plugin/skills/bmad-knowledge/.gitkeep +0 -0
  17. package/lib/bmad-extension-plugin/skills/bmad-knowledge/SKILL.md +130 -0
  18. package/lib/{bmad-extension/skills/bmad-dev-epic → bmad-extension-plugin/skills/bmad-knowledge}/bmad-skill-manifest.yaml +1 -1
  19. package/lib/bmad-extension-plugin/skills/ma-agent-sqa/SKILL.md +3 -3
  20. package/lib/bmad-extension-plugin/skills/ma-agent-sqa/bmad-skill-manifest.yaml +1 -1
  21. package/lib/bmad-extension-plugin/skills/module-help.csv +2 -2
  22. package/lib/bmad-extension-plugin/skills/module.yaml +1 -1
  23. package/lib/bmad-extension-plugin/skills/sqa-audit/SKILL.md +2 -2
  24. package/lib/bmad-extension-plugin/skills/sqa-ieee12207/SKILL.md +3 -3
  25. package/lib/bmad-extension-plugin/skills/sqa-requirements-quality/SKILL.md +2 -2
  26. package/lib/bmad.js +15 -0
  27. package/lib/installer.js +88 -0
  28. package/lib/knowledge-atlas/dist/atlas.cjs +14134 -0
  29. package/lib/knowledge-atlas/src/cli.ts +55 -0
  30. package/lib/knowledge-atlas/src/extract/entities.ts +420 -0
  31. package/lib/knowledge-atlas/src/extract/frontmatter.ts +84 -0
  32. package/lib/knowledge-atlas/src/extract/slug.ts +91 -0
  33. package/lib/knowledge-atlas/src/generate.ts +355 -0
  34. package/lib/knowledge-atlas/src/graph/build.ts +301 -0
  35. package/lib/knowledge-atlas/src/graph/reconcile.ts +340 -0
  36. package/lib/knowledge-atlas/src/index.ts +11 -0
  37. package/lib/knowledge-atlas/src/manifest/incremental.ts +146 -0
  38. package/lib/knowledge-atlas/src/manifest/persist.ts +112 -0
  39. package/lib/knowledge-atlas/src/render/backlinks.ts +160 -0
  40. package/lib/knowledge-atlas/src/render/design-system.ts +624 -0
  41. package/lib/knowledge-atlas/src/render/diagrams.ts +717 -0
  42. package/lib/knowledge-atlas/src/render/document.ts +333 -0
  43. package/lib/knowledge-atlas/src/render/force-graph-umd.ts +22 -0
  44. package/lib/knowledge-atlas/src/render/graph.ts +815 -0
  45. package/lib/knowledge-atlas/src/render/layout.ts +182 -0
  46. package/lib/knowledge-atlas/src/render/linkify.ts +464 -0
  47. package/lib/knowledge-atlas/src/render/orphan.ts +540 -0
  48. package/lib/knowledge-atlas/src/render/paths.ts +110 -0
  49. package/lib/knowledge-atlas/src/render/search.ts +343 -0
  50. package/lib/knowledge-atlas/src/render/site.ts +307 -0
  51. package/lib/knowledge-atlas/src/scan/hash.ts +49 -0
  52. package/lib/knowledge-atlas/src/scan/scanner.ts +239 -0
  53. package/lib/knowledge-atlas/src/types.ts +241 -0
  54. package/lib/knowledge-atlas/tsconfig.json +22 -0
  55. package/package.json +16 -4
  56. package/scripts/build-atlas.js +253 -0
  57. package/skills/bmad-knowledge/SKILL.md +130 -0
  58. package/skills/bmad-knowledge/skill.json +7 -0
  59. package/skills/git-workflow-skill/skill.json +21 -21
  60. package/lib/bmad-extension/skills/bmad-dev-epic/SKILL.md +0 -101
  61. package/lib/bmad-extension/skills/bmad-dev-epic/checklist.md +0 -44
  62. package/lib/bmad-extension/skills/bmad-dev-epic/customize.toml +0 -54
  63. package/lib/bmad-extension/skills/bmad-dev-epic/references/story-pipeline.md +0 -112
  64. package/lib/bmad-extension/skills/bmad-dev-epic/steps/step-01-intake.md +0 -59
  65. package/lib/bmad-extension/skills/bmad-dev-epic/steps/step-02-plan-waves.md +0 -56
  66. package/lib/bmad-extension/skills/bmad-dev-epic/steps/step-03-epic-branch.md +0 -35
  67. package/lib/bmad-extension/skills/bmad-dev-epic/steps/step-04-run-waves.md +0 -49
  68. package/lib/bmad-extension/skills/bmad-dev-epic/steps/step-05-epic-adversarial.md +0 -31
  69. package/lib/bmad-extension/skills/bmad-dev-epic/steps/step-06-release.md +0 -57
  70. package/lib/bmad-extension/skills/bmad-dev-epic/steps/step-07-report.md +0 -40
  71. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/SKILL.md +0 -101
  72. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/checklist.md +0 -44
  73. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/customize.toml +0 -54
  74. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/references/story-pipeline.md +0 -112
  75. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/steps/step-01-intake.md +0 -59
  76. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/steps/step-02-plan-waves.md +0 -56
  77. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/steps/step-03-epic-branch.md +0 -35
  78. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/steps/step-04-run-waves.md +0 -49
  79. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/steps/step-05-epic-adversarial.md +0 -31
  80. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/steps/step-06-release.md +0 -57
  81. package/lib/bmad-extension-plugin/skills/bmad-dev-epic/steps/step-07-report.md +0 -40
package/README.md CHANGED
@@ -184,7 +184,7 @@ These domain-expert agents are installed alongside BMAD-METHOD and provide guide
184
184
  | DevOps Agent | Amit | `_bmad/skills/devops/` | `_bmad/bmm/agents/devops.md` |
185
185
  | Cyber Analyst | Yael | `_bmad/skills/cyber/` | `_bmad/bmm/agents/cyber.md` |
186
186
  | ML Scientist | Demerzel | `_bmad/skills/demerzel/` | `_bmad/bmm/agents/demerzel.md` |
187
- | SQA & Standards Expert | Gadi | `_bmad/skills/sqa/` | `_bmad/bmm/agents/qa.md` |
187
+ | SQA & Standards Expert | Gad | `_bmad/skills/sqa/` | `_bmad/bmm/agents/qa.md` |
188
188
 
189
189
  ## Available Skills
190
190
 
@@ -247,7 +247,7 @@ These workflows are installed as part of the BMAD agent system and are invoked t
247
247
  | `ml-revision` | ML Scientist | Amend hypothesis and requirements based on experiment findings |
248
248
  | `ml-advise` | ML Scientist | Search past experiments, surface findings and failure warnings |
249
249
  | `ml-retrospective` | ML Scientist | Capture session learnings and update project context |
250
- | **SQA & MIL-STD-498 (Gadi)** | | |
250
+ | **SQA & MIL-STD-498 (Gad)** | | |
251
251
  | `sqa-audit` | SQA & Standards Expert | Multi-dimensional project quality audit: code↔story traceability, stories↔architecture/PRD alignment, process compliance, sprint health, release state — saves audit report and optional remediation plan |
252
252
  | `sqa-ieee12207` | SQA & Standards Expert | IEEE/ISO/IEC 12207:2017 compliance assessment across 23 process areas in 4 groups — produces compliance matrix, gap analysis, and optional remediation plan |
253
253
  | `sqa-requirements-quality` | SQA & Standards Expert | Requirements quality audit against 14 criteria with scope selection (PRD FRs, NFRs, epics, stories) — per-requirement audit table, critical-fail detection, Overall Quality Score, and optional remediation plan |
@@ -357,7 +357,7 @@ npx ma-agents install --yes # fully offline BMAD install — no network neede
357
357
  - **Focus**: Hypothesis-driven machine learning lifecycle with scientific rigor.
358
358
  - **Capabilities**: EDA, architecture design, locked TechSpec contracts, experiment execution, failure-cost analysis.
359
359
  - **Workflows**: 12-stage ML lifecycle from ideation through retrospective, with mandatory review gates.
360
- 5. **Gadi (SQA & Standards Expert)**:
360
+ 5. **Gad (SQA & Standards Expert)**:
361
361
  - **Focus**: Software quality assurance and defense documentation standards — a unified persona covering SQA auditing and MIL-STD-498 document generation.
362
362
  - **SQA Capabilities**: Multi-dimensional project quality audits, IEEE/ISO/IEC 12207:2017 compliance assessments (23 process areas, 4 groups), requirements evaluation against 14 established quality criteria (scope-selectable: PRD FRs, NFRs, epics, stories).
363
363
  - **MIL-STD-498 Capabilities**: Full Data Item Description (DID) generation for SRS, SDD, SDP, OCD, SSS, STD, and SSDD. Requirements quality review tailored to MIL-STD-498 structure and military-standard terminology (CSCI, HWCI, IRS).
package/lib/agents.js CHANGED
@@ -314,10 +314,10 @@ const agents = [
314
314
  },
315
315
  {
316
316
  id: 'bmm-qa',
317
- name: 'SQA & Standards Expert (Gadi)',
317
+ name: 'SQA & Standards Expert (Gad)',
318
318
  version: '1.0.0',
319
319
  category: 'bmad',
320
- description: 'Software Quality Assurance and MIL-STD-498 Standards Expert (Gadi)',
320
+ description: 'Software Quality Assurance and MIL-STD-498 Standards Expert (Gad)',
321
321
  skillsDir: '_bmad/skills/sqa',
322
322
  getProjectPath: () => path.join(process.cwd(), '_bmad', 'skills', 'sqa'),
323
323
  getGlobalPath: () => null,
@@ -1,9 +1,9 @@
1
- # MA-AGENTS: Gadi — Software Quality Assurance Expert
1
+ # MA-AGENTS: Gad — Software Quality Assurance Expert
2
2
  phase: planning
3
3
  on_prem_phase_prefix: "/no_think You are in a planning phase — respond in text for questions; create files only when explicitly asked."
4
4
  agent:
5
5
  metadata:
6
- name: "Gadi"
6
+ name: "Gad"
7
7
 
8
8
  persona:
9
9
  role: "Software Quality Assurance Engineer responsible for verifying project quality across all dimensions — code, process, documentation, and delivery."
@@ -17,7 +17,7 @@ persona:
17
17
 
18
18
  menu:
19
19
  - trigger: skill:ma-agent-sqa
20
- description: "Activate Gadi — Software Quality Assurance Expert"
20
+ description: "Activate Gad — Software Quality Assurance Expert"
21
21
 
22
22
  critical_actions:
23
23
  - "Read the skills MANIFEST at {project-root}/skills/MANIFEST.yaml"
@@ -11,7 +11,7 @@
11
11
  "owner": {
12
12
  "name": "Alon Mayaffit"
13
13
  },
14
- "description": "ma-agents BMAD extension — enterprise SDLC personas (Yael, Amit, Alex, Demerzel, Gadi) plus MIL-STD-498, SRE, DevOps, Cyber, ML, and SQA workflow skills.",
14
+ "description": "ma-agents BMAD extension — enterprise SDLC personas (Yael, Amit, Alex, Demerzel, Gad) plus MIL-STD-498, SRE, DevOps, Cyber, ML, and SQA workflow skills.",
15
15
  "license": "MIT",
16
16
  "homepage": "https://github.com/mayafit/AI_Agents",
17
17
  "repository": "https://github.com/mayafit/AI_Agents",
@@ -99,7 +99,6 @@
99
99
  "./skills/ml-techspec",
100
100
  "./skills/add-sprint",
101
101
  "./skills/add-to-sprint",
102
- "./skills/bmad-dev-epic",
103
102
  "./skills/bmad-dev-story",
104
103
  "./skills/bmad-sprint-planning",
105
104
  "./skills/bmad-sprint-status",
@@ -111,7 +110,8 @@
111
110
  "./skills/prioritize-backlog",
112
111
  "./skills/project-context-expansion",
113
112
  "./skills/remove-from-sprint",
114
- "./skills/sprint-status-view"
113
+ "./skills/sprint-status-view",
114
+ "./skills/bmad-knowledge"
115
115
  ]
116
116
  }
117
117
  ]
@@ -0,0 +1,130 @@
1
+ ---
2
+ name: bmad-knowledge
3
+ description: Generate a self-contained Knowledge Atlas HTML site from project planning and implementation artifacts
4
+ type: skill
5
+ triggers:
6
+ - "knowledge atlas"
7
+ - "generate knowledge site"
8
+ - "bmad-knowledge"
9
+ ---
10
+
11
+ # Knowledge Atlas Skill
12
+
13
+ Generate a self-contained, offline-ready Knowledge Atlas HTML site from the project's `_bmad-output` planning and implementation artifacts. No network access is required at generation or view time.
14
+
15
+ ## Prerequisites
16
+
17
+ - The project must have a `_bmad-output/` directory (created by BMAD install).
18
+ - `ma-agents` must be installed (globally via `npx ma-agents` or as a local dependency).
19
+ - Node.js >= 18 must be available.
20
+
21
+ ---
22
+
23
+ ## Workflow
24
+
25
+ ### Step 1 — Resolve the project root
26
+
27
+ The project root is the directory containing `_bmad-output/`. Locate it by walking up from the current working directory until `_bmad-output/` is found, or use the directory the agent is operating in.
28
+
29
+ ```
30
+ projectRoot = <directory containing _bmad-output/>
31
+ bmadOutputDir = <projectRoot>/_bmad-output
32
+ outputSite = <projectRoot>/_bmad-output/knowledge-site/index.html
33
+ ```
34
+
35
+ ### Step 2 — Locate the engine bundle
36
+
37
+ The Knowledge Atlas engine is a pre-bundled CJS file committed inside the `ma-agents` package. Resolve it in this order:
38
+
39
+ 1. **Installed package resolution (preferred):** Use Node.js module resolution to locate the bundle:
40
+ ```js
41
+ require.resolve('ma-agents/lib/knowledge-atlas/dist/atlas.cjs')
42
+ ```
43
+ This works when `ma-agents` is installed as a dependency or globally via `npx`.
44
+
45
+ 2. **Dev-local fallback:** If the skill is being run from within the `ma-agents` repo itself (e.g., during development), use a path relative to the skill file:
46
+ ```
47
+ <skill_dir>/../../../../lib/knowledge-atlas/dist/atlas.cjs
48
+ ```
49
+ where `<skill_dir>` is the directory containing this SKILL.md.
50
+
51
+ 3. If neither path resolves to an existing file, abort with:
52
+ ```
53
+ ERROR: Cannot locate atlas.cjs. Ensure ma-agents is installed:
54
+ npm install -g ma-agents
55
+ # or: npm install --save-dev ma-agents
56
+ ```
57
+
58
+ ### Step 3 — Run the engine
59
+
60
+ Execute the bundled engine as a Node.js subprocess. Pass `atlasPath` and
61
+ `projectRoot` as ARGUMENT-ARRAY elements (never interpolate them into a shell
62
+ string) so paths containing spaces, quotes, or shell metacharacters cannot be
63
+ misparsed or injected:
64
+
65
+ ```js
66
+ const { spawnSync } = require('node:child_process');
67
+ const res = spawnSync(process.execPath, [atlasPath, projectRoot], {
68
+ encoding: 'utf-8',
69
+ // No `shell: true` — args go directly to the OS exec, not a shell.
70
+ });
71
+ if (res.status !== 0) {
72
+ // Report res.stderr and abort.
73
+ throw new Error(`atlas.cjs failed (exit ${res.status}): ${res.stderr}`);
74
+ }
75
+ const indexHtmlPath = res.stdout.trim(); // engine prints the index.html path
76
+ ```
77
+
78
+ - The engine writes `_bmad-output/knowledge-site/index.html`.
79
+ - It prints the path to `stdout` on success.
80
+ - It exits with code 0 on success, non-zero on failure (error on stderr).
81
+ - It never modifies any source file — output is isolated to `_bmad-output/knowledge-site/`.
82
+
83
+ If the engine exits non-zero, report the stderr output and abort.
84
+
85
+ ### Step 4 — Open the generated site
86
+
87
+ After successful generation, open `_bmad-output/knowledge-site/index.html` using
88
+ the appropriate method for the current environment. Use `execFile`/`spawn` with
89
+ an ARGUMENT ARRAY — never build a shell command string with the path
90
+ interpolated, which would be an injection vector:
91
+
92
+ **VSCode detection** (open in the editor):
93
+ ```js
94
+ const { execFile } = require('node:child_process');
95
+ if (process.env.TERM_PROGRAM === 'vscode' || process.env.VSCODE_PID !== undefined) {
96
+ execFile('code', [indexHtmlPath]); // path is a discrete arg, not concatenated
97
+ }
98
+ ```
99
+
100
+ **System default browser** (for all other environments) — pass the path as an
101
+ arg-array element to the platform opener:
102
+ - **Windows:** `execFile('cmd', ['/c', 'start', '', indexHtmlPath])`
103
+ - **macOS:** `execFile('open', [indexHtmlPath])`
104
+ - **Linux:** `execFile('xdg-open', [indexHtmlPath])`
105
+
106
+ Report the output path to the user regardless of whether the browser opens:
107
+ ```
108
+ Knowledge Atlas generated: <projectRoot>/_bmad-output/knowledge-site/index.html
109
+ ```
110
+
111
+ ---
112
+
113
+ ## Gitignore policy
114
+
115
+ The `_bmad-output/knowledge-site/` directory is automatically gitignored when BMAD installs into a project (via `ensureKnowledgeSiteIgnored`). If it is not already ignored, add the following line to `.gitignore`:
116
+
117
+ ```
118
+ _bmad-output/knowledge-site/
119
+ ```
120
+
121
+ ---
122
+
123
+ ## Notes
124
+
125
+ - **Offline by construction:** The generated `index.html` is fully self-contained — no external URLs, no CDN links, no web fonts. It can be opened from a local filesystem in any browser.
126
+ - **Deterministic output:** Pin `SOURCE_DATE_EPOCH` (Unix seconds) to get byte-identical output across runs:
127
+ ```bash
128
+ SOURCE_DATE_EPOCH=1700000000 node atlas.cjs "<projectRoot>"
129
+ ```
130
+ - **No per-project install:** The engine (`atlas.cjs`) is pre-bundled in `ma-agents`. Consuming projects never run `npm install` for the Atlas engine.
@@ -1,3 +1,3 @@
1
1
  type: skill
2
- name: bmad-dev-epic
2
+ name: bmad-knowledge
3
3
  module: ma-skills
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  name: ma-agent-sqa
3
- description: SQA Agent (Gadi) — Software Quality Assurance and MIL-STD-498 expert for project auditing, compliance verification, quality reporting, and defense documentation generation
3
+ description: SQA Agent (Gad) — Software Quality Assurance and MIL-STD-498 expert for project auditing, compliance verification, quality reporting, and defense documentation generation
4
4
  ---
5
5
 
6
- # Agent: Gadi — Software Quality Assurance & Standards Expert
6
+ # Agent: Gad — Software Quality Assurance & Standards Expert
7
7
 
8
8
  You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
9
9
 
@@ -35,7 +35,7 @@ You must fully embody this agent's persona and follow all activation instruction
35
35
  | # | Cmd | Action | Trigger | Skill |
36
36
  |---|-----|--------|---------|-------|
37
37
  | 1 | MH | Redisplay Menu Help | "menu", "help" | _(built-in)_ |
38
- | 2 | CH | Chat with Gadi about quality assurance or MIL-STD-498 | "chat", "quality" | _(built-in)_ |
38
+ | 2 | CH | Chat with Gad about quality assurance or MIL-STD-498 | "chat", "quality" | _(built-in)_ |
39
39
  | **— SQA Workflows —** | | | | |
40
40
  | 3 | AU | Audit Project: Comprehensive quality audit across all project dimensions | "audit", "audit project", "run audit" | sqa-audit |
41
41
  | 4 | IC | IEEE 12207 Compliance: Evaluate the project against IEEE/ISO/IEC 12207 software lifecycle processes | "ieee", "12207", "lifecycle compliance", "iso 12207" | sqa-ieee12207 |
@@ -1,6 +1,6 @@
1
1
  type: agent
2
2
  name: ma-agent-sqa
3
- displayName: Gadi
3
+ displayName: Gad
4
4
  title: Software Quality Assurance & Standards Expert
5
5
  icon: "🔍"
6
6
  capabilities: "Software quality assurance, project auditing, process compliance, requirements traceability, sprint health, release validation, IEEE/ISO/IEC 12207 compliance, MIL-STD-498 document generation (SRS, SDD, SDP, OCD, SSS, STD, SSDD)"
@@ -3,7 +3,7 @@ ma-skills,anytime,SRE Agent,ma-agent-sre,,skill:ma-agent-sre,ma-agent-sre,false,
3
3
  ma-skills,anytime,DevOps Agent,ma-agent-devops,,skill:ma-agent-devops,ma-agent-devops,false,bmm-devops,,"DevOps Engineer agent for CI/CD pipeline automation, Infrastructure as Code, and cloud-native technologies.",output_folder,"agent customization",
4
4
  ma-skills,anytime,Cyber Agent,ma-agent-cyber,,skill:ma-agent-cyber,ma-agent-cyber,false,bmm-cyber,,"Cyber Security Analyst agent for vulnerability assessment, threat modeling, and system hardening.",output_folder,"agent customization",
5
5
  ma-skills,anytime,ML Scientist Agent,ma-agent-ml,,skill:ma-agent-ml,ma-agent-ml,false,bmm-demerzel,,"Machine Learning Scientist agent for hypothesis-driven ML lifecycle with scientific rigor.",output_folder,"agent customization",
6
- ma-skills,anytime,SQA Agent,ma-agent-sqa,,skill:ma-agent-sqa,ma-agent-sqa,false,bmm-qa,,"Software Quality Assurance agent (Gadi) for project auditing, compliance verification, and quality reporting.",output_folder,"agent customization",
6
+ ma-skills,anytime,SQA Agent,ma-agent-sqa,,skill:ma-agent-sqa,ma-agent-sqa,false,bmm-qa,,"Software Quality Assurance agent (Gad) for project auditing, compliance verification, and quality reporting.",output_folder,"agent customization",
7
7
  ma-skills,4-implementation,Generate SSS,mil498-sss,,skill:mil498-sss,bmad-mil-generate-sss,false,bmm-mil498,,"Generate a MIL-STD-498 System/Subsystem Specification (SSS).",output_folder,"MIL-498 document",
8
8
  ma-skills,4-implementation,Generate SSDD,mil498-ssdd,,skill:mil498-ssdd,bmad-mil-generate-ssdd,false,bmm-mil498,,"Generate a MIL-STD-498 System/Subsystem Design Description (SSDD).",output_folder,"MIL-498 document",
9
9
  ma-skills,4-implementation,Generate OCD,mil498-ocd,,skill:mil498-ocd,bmad-mil-generate-ocd,false,bmm-mil498,,"Generate a MIL-STD-498 Operational Concept Description (OCD).",output_folder,"MIL-498 document",
@@ -47,7 +47,6 @@ ma-skills,4-implementation,SQA Audit,sqa-audit,,skill:sqa-audit,sqa-audit,false,
47
47
  ma-skills,4-implementation,IEEE 12207 Compliance,sqa-ieee12207,,skill:sqa-ieee12207,sqa-ieee12207,false,bmm-qa,,"Evaluate the project against IEEE/ISO/IEC 12207:2017 software lifecycle processes — produces a compliance matrix and gap analysis report.",_bmad-output,"compliance report",
48
48
  ma-skills,4-implementation,Create Bug Story,create-bug-story,,skill:create-bug-story,create-bug-story,false,bmm-dev,,"Create a structured bug story from a detected defect and add to backlog.",_bmad-output/implementation-artifacts,"bug story",
49
49
  ma-skills,4-implementation,Dev Story,bmad-dev-story,,skill:bmad-dev-story,bmad-dev-story,false,bmm-dev,,"Execute story implementation following a context filled story spec file.",_bmad-output/implementation-artifacts,"story implementation",
50
- ma-skills,4-implementation,Dev Epic,bmad-dev-epic,,skill:bmad-dev-epic,bmad-dev-epic,false,bmm-dev,,"Orchestrate a full epic end-to-end with parallel subagents — per-story create/dev/review/edge-case/fix/e2e pipeline, dependency-aware waves, configurable model tiers, an epic-level adversarial + package-integrity gate, and gated beta publish + PR.",_bmad-output/implementation-artifacts,"epic run ledger + PR",
51
50
  ma-skills,4-implementation,Sprint Planning,bmad-sprint-planning,,skill:bmad-sprint-planning,bmad-sprint-planning,false,bmm-sm,,"Bootstrap or update the unified sprint-status.yaml from epics with three sections (epics, backlog, sprints).",_bmad-output/implementation-artifacts,"sprint plan",
52
51
  ma-skills,4-implementation,Generate Backlog,generate-backlog,,skill:generate-backlog,generate-backlog,false,bmm-sm,,"Generate or refresh the backlog section of sprint-status.yaml from epics and bug stories.",_bmad-output/implementation-artifacts,"backlog",
53
52
  ma-skills,4-implementation,Add Sprint,add-sprint,,skill:add-sprint,add-sprint,false,bmm-sm,,"Create a new sprint entry in the sprints section of sprint-status.yaml with capacity limits, optional ISO dates, and auto-incremented ID.",_bmad-output/implementation-artifacts,"sprint plan",
@@ -61,3 +60,4 @@ ma-skills,4-implementation,Close Sprint,close-sprint,,skill:close-sprint,close-s
61
60
  ma-skills,4-implementation,Prioritize Backlog,prioritize-backlog,,skill:prioritize-backlog,prioritize-backlog,false,bmm-sm,,"Reprioritize backlog items using multiple criteria -- severity, business value, dependencies, type, age.",_bmad-output/implementation-artifacts,"backlog",
62
61
  ma-skills,4-implementation,Project Context Expansion,project-context-expansion,,skill:project-context-expansion,project-context-expansion,false,bmm-sm,,"Post-retrospective companion to update project-context.md with new rules.",_bmad-output,"project context",
63
62
  ma-skills,4-implementation,Requirements Quality Audit,sqa-requirements-quality,,skill:sqa-requirements-quality,sqa-requirements-quality,false,bmm-qa,,"Evaluate project requirements against 14 quality criteria — produces a per-requirement audit table, missing-elements section, and overall quality score.",_bmad-output,"quality report",
63
+ ma-skills,anytime,Knowledge Atlas,bmad-knowledge,,skill:bmad-knowledge,bmad-knowledge,false,bmm-sm,,"Generate a self-contained Knowledge Atlas HTML site from project planning and implementation artifacts.",_bmad-output/knowledge-site,"knowledge site",
@@ -15,6 +15,6 @@
15
15
  code: ma-skills
16
16
  name: "MA-Agents Skills & Agents"
17
17
  description: "Enterprise methodology enforcement, specialized agents, and operational workflows"
18
- module_version: "3.7.0"
18
+ module_version: "3.6.2"
19
19
  extends-module: bmm
20
20
  default_selected: false
@@ -172,7 +172,7 @@ After running all selected dimensions, compile a full audit report.
172
172
  ```
173
173
  # SQA Audit Report
174
174
  **Date:** {today's date}
175
- **Auditor:** Gadi (SQA Agent)
175
+ **Auditor:** Gad (SQA Agent)
176
176
  **Scope:** {list of audited dimensions}
177
177
  **Overall Status:** PASS | WARNING | FAIL
178
178
 
@@ -246,7 +246,7 @@ If yes, generate and save a remediation plan to:
246
246
  ```
247
247
  # SQA Remediation Plan
248
248
  **Date:** {today's date}
249
- **Auditor:** Gadi (SQA Agent)
249
+ **Auditor:** Gad (SQA Agent)
250
250
  **Source Report:** sqa-audit-report-{YYYY-MM-DD}.md
251
251
  **Scope:** {audited dimensions}
252
252
 
@@ -193,7 +193,7 @@ Evaluate each selected process group. For each process area, assign a compliance
193
193
 
194
194
  ### Group 4 — Organizational Project-Enabling Processes
195
195
 
196
- Note to Gadi: For Group 4 items, briefly assess based on available evidence only. These are primarily organizational-scope and marked accordingly.
196
+ Note to Gad: For Group 4 items, briefly assess based on available evidence only. These are primarily organizational-scope and marked accordingly.
197
197
 
198
198
  #### 4.1 Life Cycle Model Management (6.2.1)
199
199
  - Is a defined software life cycle model being followed?
@@ -216,7 +216,7 @@ Compile the full compliance report.
216
216
  ```
217
217
  # IEEE/ISO/IEC 12207:2017 Compliance Report
218
218
  **Date:** {today's date}
219
- **Auditor:** Gadi (SQA Agent)
219
+ **Auditor:** Gad (SQA Agent)
220
220
  **Standard:** IEEE/ISO/IEC 12207:2017 — Systems and software engineering — Software life cycle processes
221
221
  **Scope:** {selected process groups}
222
222
  **Overall Compliance Level:** COMPLIANT | PARTIAL | NON-COMPLIANT
@@ -332,7 +332,7 @@ If yes, generate and save a remediation plan to:
332
332
  ```
333
333
  # IEEE/ISO/IEC 12207 Remediation Plan
334
334
  **Date:** {today's date}
335
- **Auditor:** Gadi (SQA Agent)
335
+ **Auditor:** Gad (SQA Agent)
336
336
  **Source Report:** sqa-ieee12207-report-{YYYY-MM-DD}.md
337
337
  **Standard:** IEEE/ISO/IEC 12207:2017
338
338
 
@@ -157,7 +157,7 @@ Compile the full report in this structure:
157
157
  ```
158
158
  # Requirements Quality Audit Report
159
159
  **Date:** {today's date}
160
- **Auditor:** Gadi (SQA Agent)
160
+ **Auditor:** Gad (SQA Agent)
161
161
  **Scope:** {selected document sources}
162
162
  **Requirements Audited:** {total count}
163
163
  **Overall Quality Score:** {X}/{Y} ({P}%)
@@ -216,7 +216,7 @@ If yes, save a remediation plan to:
216
216
  ```
217
217
  # Requirements Quality Remediation Plan
218
218
  **Date:** {today's date}
219
- **Auditor:** Gadi (SQA Agent)
219
+ **Auditor:** Gad (SQA Agent)
220
220
  **Source Report:** sqa-requirements-quality-report-{YYYY-MM-DD}.md
221
221
 
222
222
  ---
@@ -3,7 +3,7 @@
3
3
  "owner": {
4
4
  "name": "Alon Mayaffit"
5
5
  },
6
- "description": "ma-agents BMAD extension — enterprise SDLC personas (Yael, Amit, Alex, Demerzel, Gadi) plus MIL-STD-498, SRE, DevOps, Cyber, ML, and SQA workflow skills.",
6
+ "description": "ma-agents BMAD extension — enterprise SDLC personas (Yael, Amit, Alex, Demerzel, Gad) plus MIL-STD-498, SRE, DevOps, Cyber, ML, and SQA workflow skills.",
7
7
  "license": "MIT",
8
8
  "homepage": "https://github.com/mayafit/AI_Agents",
9
9
  "repository": "https://github.com/mayafit/AI_Agents",
@@ -37,7 +37,7 @@
37
37
  "name": "ma-skills",
38
38
  "source": "./",
39
39
  "description": "ma-agents extension module providing enterprise SDLC personas and operational workflow skills.",
40
- "version": "3.14.1",
40
+ "version": "3.15.0-beta.0",
41
41
  "author": {
42
42
  "name": "Alon Mayaffit"
43
43
  },
@@ -91,7 +91,6 @@
91
91
  "./skills/ml-techspec",
92
92
  "./skills/add-sprint",
93
93
  "./skills/add-to-sprint",
94
- "./skills/bmad-dev-epic",
95
94
  "./skills/bmad-dev-story",
96
95
  "./skills/bmad-sprint-planning",
97
96
  "./skills/bmad-sprint-status",
@@ -103,7 +102,8 @@
103
102
  "./skills/prioritize-backlog",
104
103
  "./skills/project-context-expansion",
105
104
  "./skills/remove-from-sprint",
106
- "./skills/sprint-status-view"
105
+ "./skills/sprint-status-view",
106
+ "./skills/bmad-knowledge"
107
107
  ]
108
108
  }
109
109
  ]
@@ -0,0 +1,130 @@
1
+ ---
2
+ name: bmad-knowledge
3
+ description: Generate a self-contained Knowledge Atlas HTML site from project planning and implementation artifacts
4
+ type: skill
5
+ triggers:
6
+ - "knowledge atlas"
7
+ - "generate knowledge site"
8
+ - "bmad-knowledge"
9
+ ---
10
+
11
+ # Knowledge Atlas Skill
12
+
13
+ Generate a self-contained, offline-ready Knowledge Atlas HTML site from the project's `_bmad-output` planning and implementation artifacts. No network access is required at generation or view time.
14
+
15
+ ## Prerequisites
16
+
17
+ - The project must have a `_bmad-output/` directory (created by BMAD install).
18
+ - `ma-agents` must be installed (globally via `npx ma-agents` or as a local dependency).
19
+ - Node.js >= 18 must be available.
20
+
21
+ ---
22
+
23
+ ## Workflow
24
+
25
+ ### Step 1 — Resolve the project root
26
+
27
+ The project root is the directory containing `_bmad-output/`. Locate it by walking up from the current working directory until `_bmad-output/` is found, or use the directory the agent is operating in.
28
+
29
+ ```
30
+ projectRoot = <directory containing _bmad-output/>
31
+ bmadOutputDir = <projectRoot>/_bmad-output
32
+ outputSite = <projectRoot>/_bmad-output/knowledge-site/index.html
33
+ ```
34
+
35
+ ### Step 2 — Locate the engine bundle
36
+
37
+ The Knowledge Atlas engine is a pre-bundled CJS file committed inside the `ma-agents` package. Resolve it in this order:
38
+
39
+ 1. **Installed package resolution (preferred):** Use Node.js module resolution to locate the bundle:
40
+ ```js
41
+ require.resolve('ma-agents/lib/knowledge-atlas/dist/atlas.cjs')
42
+ ```
43
+ This works when `ma-agents` is installed as a dependency or globally via `npx`.
44
+
45
+ 2. **Dev-local fallback:** If the skill is being run from within the `ma-agents` repo itself (e.g., during development), use a path relative to the skill file:
46
+ ```
47
+ <skill_dir>/../../../../lib/knowledge-atlas/dist/atlas.cjs
48
+ ```
49
+ where `<skill_dir>` is the directory containing this SKILL.md.
50
+
51
+ 3. If neither path resolves to an existing file, abort with:
52
+ ```
53
+ ERROR: Cannot locate atlas.cjs. Ensure ma-agents is installed:
54
+ npm install -g ma-agents
55
+ # or: npm install --save-dev ma-agents
56
+ ```
57
+
58
+ ### Step 3 — Run the engine
59
+
60
+ Execute the bundled engine as a Node.js subprocess. Pass `atlasPath` and
61
+ `projectRoot` as ARGUMENT-ARRAY elements (never interpolate them into a shell
62
+ string) so paths containing spaces, quotes, or shell metacharacters cannot be
63
+ misparsed or injected:
64
+
65
+ ```js
66
+ const { spawnSync } = require('node:child_process');
67
+ const res = spawnSync(process.execPath, [atlasPath, projectRoot], {
68
+ encoding: 'utf-8',
69
+ // No `shell: true` — args go directly to the OS exec, not a shell.
70
+ });
71
+ if (res.status !== 0) {
72
+ // Report res.stderr and abort.
73
+ throw new Error(`atlas.cjs failed (exit ${res.status}): ${res.stderr}`);
74
+ }
75
+ const indexHtmlPath = res.stdout.trim(); // engine prints the index.html path
76
+ ```
77
+
78
+ - The engine writes `_bmad-output/knowledge-site/index.html`.
79
+ - It prints the path to `stdout` on success.
80
+ - It exits with code 0 on success, non-zero on failure (error on stderr).
81
+ - It never modifies any source file — output is isolated to `_bmad-output/knowledge-site/`.
82
+
83
+ If the engine exits non-zero, report the stderr output and abort.
84
+
85
+ ### Step 4 — Open the generated site
86
+
87
+ After successful generation, open `_bmad-output/knowledge-site/index.html` using
88
+ the appropriate method for the current environment. Use `execFile`/`spawn` with
89
+ an ARGUMENT ARRAY — never build a shell command string with the path
90
+ interpolated, which would be an injection vector:
91
+
92
+ **VSCode detection** (open in the editor):
93
+ ```js
94
+ const { execFile } = require('node:child_process');
95
+ if (process.env.TERM_PROGRAM === 'vscode' || process.env.VSCODE_PID !== undefined) {
96
+ execFile('code', [indexHtmlPath]); // path is a discrete arg, not concatenated
97
+ }
98
+ ```
99
+
100
+ **System default browser** (for all other environments) — pass the path as an
101
+ arg-array element to the platform opener:
102
+ - **Windows:** `execFile('cmd', ['/c', 'start', '', indexHtmlPath])`
103
+ - **macOS:** `execFile('open', [indexHtmlPath])`
104
+ - **Linux:** `execFile('xdg-open', [indexHtmlPath])`
105
+
106
+ Report the output path to the user regardless of whether the browser opens:
107
+ ```
108
+ Knowledge Atlas generated: <projectRoot>/_bmad-output/knowledge-site/index.html
109
+ ```
110
+
111
+ ---
112
+
113
+ ## Gitignore policy
114
+
115
+ The `_bmad-output/knowledge-site/` directory is automatically gitignored when BMAD installs into a project (via `ensureKnowledgeSiteIgnored`). If it is not already ignored, add the following line to `.gitignore`:
116
+
117
+ ```
118
+ _bmad-output/knowledge-site/
119
+ ```
120
+
121
+ ---
122
+
123
+ ## Notes
124
+
125
+ - **Offline by construction:** The generated `index.html` is fully self-contained — no external URLs, no CDN links, no web fonts. It can be opened from a local filesystem in any browser.
126
+ - **Deterministic output:** Pin `SOURCE_DATE_EPOCH` (Unix seconds) to get byte-identical output across runs:
127
+ ```bash
128
+ SOURCE_DATE_EPOCH=1700000000 node atlas.cjs "<projectRoot>"
129
+ ```
130
+ - **No per-project install:** The engine (`atlas.cjs`) is pre-bundled in `ma-agents`. Consuming projects never run `npm install` for the Atlas engine.
@@ -1,3 +1,3 @@
1
1
  type: skill
2
- name: bmad-dev-epic
2
+ name: bmad-knowledge
3
3
  module: ma-skills
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  name: ma-agent-sqa
3
- description: SQA Agent (Gadi) — Software Quality Assurance and MIL-STD-498 expert for project auditing, compliance verification, quality reporting, and defense documentation generation
3
+ description: SQA Agent (Gad) — Software Quality Assurance and MIL-STD-498 expert for project auditing, compliance verification, quality reporting, and defense documentation generation
4
4
  ---
5
5
 
6
- # Agent: Gadi — Software Quality Assurance & Standards Expert
6
+ # Agent: Gad — Software Quality Assurance & Standards Expert
7
7
 
8
8
  You must fully embody this agent's persona and follow all activation instructions exactly as specified. NEVER break character until given an exit command.
9
9
 
@@ -35,7 +35,7 @@ You must fully embody this agent's persona and follow all activation instruction
35
35
  | # | Cmd | Action | Trigger | Skill |
36
36
  |---|-----|--------|---------|-------|
37
37
  | 1 | MH | Redisplay Menu Help | "menu", "help" | _(built-in)_ |
38
- | 2 | CH | Chat with Gadi about quality assurance or MIL-STD-498 | "chat", "quality" | _(built-in)_ |
38
+ | 2 | CH | Chat with Gad about quality assurance or MIL-STD-498 | "chat", "quality" | _(built-in)_ |
39
39
  | **— SQA Workflows —** | | | | |
40
40
  | 3 | AU | Audit Project: Comprehensive quality audit across all project dimensions | "audit", "audit project", "run audit" | sqa-audit |
41
41
  | 4 | IC | IEEE 12207 Compliance: Evaluate the project against IEEE/ISO/IEC 12207 software lifecycle processes | "ieee", "12207", "lifecycle compliance", "iso 12207" | sqa-ieee12207 |
@@ -1,6 +1,6 @@
1
1
  type: agent
2
2
  name: ma-agent-sqa
3
- displayName: Gadi
3
+ displayName: Gad
4
4
  title: Software Quality Assurance & Standards Expert
5
5
  icon: "🔍"
6
6
  capabilities: "Software quality assurance, project auditing, process compliance, requirements traceability, sprint health, release validation, IEEE/ISO/IEC 12207 compliance, MIL-STD-498 document generation (SRS, SDD, SDP, OCD, SSS, STD, SSDD)"
@@ -3,7 +3,7 @@ ma-skills,anytime,SRE Agent,ma-agent-sre,,skill:ma-agent-sre,ma-agent-sre,false,
3
3
  ma-skills,anytime,DevOps Agent,ma-agent-devops,,skill:ma-agent-devops,ma-agent-devops,false,bmm-devops,,"DevOps Engineer agent for CI/CD pipeline automation, Infrastructure as Code, and cloud-native technologies.",output_folder,"agent customization",
4
4
  ma-skills,anytime,Cyber Agent,ma-agent-cyber,,skill:ma-agent-cyber,ma-agent-cyber,false,bmm-cyber,,"Cyber Security Analyst agent for vulnerability assessment, threat modeling, and system hardening.",output_folder,"agent customization",
5
5
  ma-skills,anytime,ML Scientist Agent,ma-agent-ml,,skill:ma-agent-ml,ma-agent-ml,false,bmm-demerzel,,"Machine Learning Scientist agent for hypothesis-driven ML lifecycle with scientific rigor.",output_folder,"agent customization",
6
- ma-skills,anytime,SQA Agent,ma-agent-sqa,,skill:ma-agent-sqa,ma-agent-sqa,false,bmm-qa,,"Software Quality Assurance agent (Gadi) for project auditing, compliance verification, and quality reporting.",output_folder,"agent customization",
6
+ ma-skills,anytime,SQA Agent,ma-agent-sqa,,skill:ma-agent-sqa,ma-agent-sqa,false,bmm-qa,,"Software Quality Assurance agent (Gad) for project auditing, compliance verification, and quality reporting.",output_folder,"agent customization",
7
7
  ma-skills,4-implementation,Generate SSS,mil498-sss,,skill:mil498-sss,bmad-mil-generate-sss,false,bmm-mil498,,"Generate a MIL-STD-498 System/Subsystem Specification (SSS).",output_folder,"MIL-498 document",
8
8
  ma-skills,4-implementation,Generate SSDD,mil498-ssdd,,skill:mil498-ssdd,bmad-mil-generate-ssdd,false,bmm-mil498,,"Generate a MIL-STD-498 System/Subsystem Design Description (SSDD).",output_folder,"MIL-498 document",
9
9
  ma-skills,4-implementation,Generate OCD,mil498-ocd,,skill:mil498-ocd,bmad-mil-generate-ocd,false,bmm-mil498,,"Generate a MIL-STD-498 Operational Concept Description (OCD).",output_folder,"MIL-498 document",
@@ -47,7 +47,6 @@ ma-skills,4-implementation,SQA Audit,sqa-audit,,skill:sqa-audit,sqa-audit,false,
47
47
  ma-skills,4-implementation,IEEE 12207 Compliance,sqa-ieee12207,,skill:sqa-ieee12207,sqa-ieee12207,false,bmm-qa,,"Evaluate the project against IEEE/ISO/IEC 12207:2017 software lifecycle processes — produces a compliance matrix and gap analysis report.",_bmad-output,"compliance report",
48
48
  ma-skills,4-implementation,Create Bug Story,create-bug-story,,skill:create-bug-story,create-bug-story,false,bmm-dev,,"Create a structured bug story from a detected defect and add to backlog.",_bmad-output/implementation-artifacts,"bug story",
49
49
  ma-skills,4-implementation,Dev Story,bmad-dev-story,,skill:bmad-dev-story,bmad-dev-story,false,bmm-dev,,"Execute story implementation following a context filled story spec file.",_bmad-output/implementation-artifacts,"story implementation",
50
- ma-skills,4-implementation,Dev Epic,bmad-dev-epic,,skill:bmad-dev-epic,bmad-dev-epic,false,bmm-dev,,"Orchestrate a full epic end-to-end with parallel subagents — per-story create/dev/review/edge-case/fix/e2e pipeline, dependency-aware waves, configurable model tiers, an epic-level adversarial + package-integrity gate, and gated beta publish + PR.",_bmad-output/implementation-artifacts,"epic run ledger + PR",
51
50
  ma-skills,4-implementation,Sprint Planning,bmad-sprint-planning,,skill:bmad-sprint-planning,bmad-sprint-planning,false,bmm-sm,,"Bootstrap or update the unified sprint-status.yaml from epics with three sections (epics, backlog, sprints).",_bmad-output/implementation-artifacts,"sprint plan",
52
51
  ma-skills,4-implementation,Generate Backlog,generate-backlog,,skill:generate-backlog,generate-backlog,false,bmm-sm,,"Generate or refresh the backlog section of sprint-status.yaml from epics and bug stories.",_bmad-output/implementation-artifacts,"backlog",
53
52
  ma-skills,4-implementation,Add Sprint,add-sprint,,skill:add-sprint,add-sprint,false,bmm-sm,,"Create a new sprint entry in the sprints section of sprint-status.yaml with capacity limits, optional ISO dates, and auto-incremented ID.",_bmad-output/implementation-artifacts,"sprint plan",
@@ -61,3 +60,4 @@ ma-skills,4-implementation,Close Sprint,close-sprint,,skill:close-sprint,close-s
61
60
  ma-skills,4-implementation,Prioritize Backlog,prioritize-backlog,,skill:prioritize-backlog,prioritize-backlog,false,bmm-sm,,"Reprioritize backlog items using multiple criteria -- severity, business value, dependencies, type, age.",_bmad-output/implementation-artifacts,"backlog",
62
61
  ma-skills,4-implementation,Project Context Expansion,project-context-expansion,,skill:project-context-expansion,project-context-expansion,false,bmm-sm,,"Post-retrospective companion to update project-context.md with new rules.",_bmad-output,"project context",
63
62
  ma-skills,4-implementation,Requirements Quality Audit,sqa-requirements-quality,,skill:sqa-requirements-quality,sqa-requirements-quality,false,bmm-qa,,"Evaluate project requirements against 14 quality criteria — produces a per-requirement audit table, missing-elements section, and overall quality score.",_bmad-output,"quality report",
63
+ ma-skills,anytime,Knowledge Atlas,bmad-knowledge,,skill:bmad-knowledge,bmad-knowledge,false,bmm-sm,,"Generate a self-contained Knowledge Atlas HTML site from project planning and implementation artifacts.",_bmad-output/knowledge-site,"knowledge site",
@@ -15,6 +15,6 @@
15
15
  code: ma-skills
16
16
  name: "MA-Agents Skills & Agents"
17
17
  description: "Enterprise methodology enforcement, specialized agents, and operational workflows"
18
- module_version: "3.7.0"
18
+ module_version: "3.6.2"
19
19
  extends-module: bmm
20
20
  default_selected: false
@@ -172,7 +172,7 @@ After running all selected dimensions, compile a full audit report.
172
172
  ```
173
173
  # SQA Audit Report
174
174
  **Date:** {today's date}
175
- **Auditor:** Gadi (SQA Agent)
175
+ **Auditor:** Gad (SQA Agent)
176
176
  **Scope:** {list of audited dimensions}
177
177
  **Overall Status:** PASS | WARNING | FAIL
178
178
 
@@ -246,7 +246,7 @@ If yes, generate and save a remediation plan to:
246
246
  ```
247
247
  # SQA Remediation Plan
248
248
  **Date:** {today's date}
249
- **Auditor:** Gadi (SQA Agent)
249
+ **Auditor:** Gad (SQA Agent)
250
250
  **Source Report:** sqa-audit-report-{YYYY-MM-DD}.md
251
251
  **Scope:** {audited dimensions}
252
252