ma-agents 2.13.2 → 2.13.4

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/bin/cli.js CHANGED
@@ -52,8 +52,8 @@ function showAgents() {
52
52
  const agents = listAgents();
53
53
  console.log(chalk.bold('\n Supported Agents:\n'));
54
54
 
55
- const ideAgents = agents.filter(a => !['bmm-sre', 'bmm-devops', 'bmm-cyber'].includes(a.id));
56
- const bmadAgents = agents.filter(a => ['bmm-sre', 'bmm-devops', 'bmm-cyber'].includes(a.id));
55
+ const ideAgents = agents.filter(a => !['bmm-sre', 'bmm-devops', 'bmm-cyber', 'bmm-mil498'].includes(a.id));
56
+ const bmadAgents = agents.filter(a => ['bmm-sre', 'bmm-devops', 'bmm-cyber', 'bmm-mil498'].includes(a.id));
57
57
 
58
58
  console.log(chalk.bold.yellow(' AI Coding Assistants:'));
59
59
  ideAgents.forEach(agent => {
@@ -235,8 +235,8 @@ async function installWizard(preselectedSkill, preselectedAgents, customPath, fo
235
235
 
236
236
  // Step 2: Select agents
237
237
  if (selectedAgentIds.length === 0 || isUpdate) {
238
- const ideAgents = agents.filter(a => !['bmm-sre', 'bmm-devops', 'bmm-cyber'].includes(a.id));
239
- const bmadAgents = agents.filter(a => ['bmm-sre', 'bmm-devops', 'bmm-cyber'].includes(a.id));
238
+ const ideAgents = agents.filter(a => !['bmm-sre', 'bmm-devops', 'bmm-cyber', 'bmm-mil498'].includes(a.id));
239
+ const bmadAgents = agents.filter(a => ['bmm-sre', 'bmm-devops', 'bmm-cyber', 'bmm-mil498'].includes(a.id));
240
240
 
241
241
  // 2.1 Coding Assistants
242
242
  const { ideChosen } = await prompts({
@@ -14,4 +14,4 @@ This workflow generates a MIL-STD-498 OCD document to describe the system from a
14
14
  - **Section 4 (Nature of proposed changes)**: Overview of the solution.
15
15
  - **Section 5 (Operational concept)**: Describe user roles, operational scenarios, and key workflows (from UX/Stories).
16
16
  4. **Clarity**: Ensure the document is written in a way that is easily understood by system users and stakeholders.
17
- 5. **Output**: Save the generated document to the `{output_folder}` as `OCD.md`.
17
+ 5. **Output**: Save the generated document to the `{output_folder}/planning-artifacts/` as `OCD.md`.
@@ -15,4 +15,4 @@ This workflow generates a MIL-STD-498 SDD document (using the SSDD template) bas
15
15
  - **Section 4 (CSCI architectural design)**: Define components, their interfaces, and data flow.
16
16
  - **Section 5 (CSCI detailed design)**: Map Stories to detailed logic and internal data structures.
17
17
  4. **Consistency**: Ensure the design matches the requirements specified in the SRS.
18
- 5. **Output**: Save the generated document to the `{output_folder}` as `SDD.md`.
18
+ 5. **Output**: Save the generated document to the `{output_folder}/planning-artifacts/` as `SDD.md`.
@@ -14,4 +14,4 @@ This workflow generates a MIL-STD-498 SDP document to outline the development ap
14
14
  - **Section 4 (Software development process)**: Describe the BMAD-METHOD lifecycle used.
15
15
  - **Section 5 (Software development activities)**: Detail the tasks, schedules, and milestones.
16
16
  4. **Consistency**: Ensure the plan reflects the actual development methodology being followed.
17
- 5. **Output**: Save the generated document to the `{output_folder}` as `SDP.md`.
17
+ 5. **Output**: Save the generated document to the `{output_folder}/planning-artifacts/` as `SDP.md`.
@@ -16,4 +16,4 @@ This workflow generates a MIL-STD-498 SRS document by extracting requirements fr
16
16
  - **Section 3.3 (External Interface Requirements)**: Map Architecture interface definitions here.
17
17
  - **Section 3.10 (Computer Resource Requirements)**: Extract hardware/software constraints from the Architecture document.
18
18
  4. **Traceability**: Ensure each requirement has a unique CID and is traced to the original PRD entry.
19
- 5. **Output**: Save the generated document to the `{output_folder}` as `SRS.md`.
19
+ 5. **Output**: Save the generated document to the `{output_folder}/planning-artifacts/` as `SRS.md`.
@@ -13,4 +13,4 @@ This workflow generates a MIL-STD-498 SSS document for high-level system require
13
13
  - **Section 3.3 (System external interface requirements)**: Map top-level interfaces.
14
14
  - **Section 3.4 (System internal interface requirements)**: Map interfaces between major subsystems.
15
15
  4. **High-Level Focus**: Keep requirements at the system/subsystem level, avoiding low-level software details.
16
- 5. **Output**: Save the generated document to the `{output_folder}` as `SSS.md`.
16
+ 5. **Output**: Save the generated document to the `{output_folder}/planning-artifacts/` as `SSS.md`.
@@ -14,4 +14,4 @@ This workflow generates a MIL-STD-498 STD document to define the test cases and
14
14
  - **Section 4 (Test descriptions)**: Map Story acceptance criteria to specific test cases and procedures.
15
15
  - **Section 5 (Requirements traceability)**: Link each test case to one or more SRS requirements.
16
16
  4. **Verification**: Ensure all requirements in the SRS have at least one test case.
17
- 5. **Output**: Save the generated document to the `{output_folder}` as `STD.md`.
17
+ 5. **Output**: Save the generated document to the `{output_folder}/planning-artifacts/` as `STD.md`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ma-agents",
3
- "version": "2.13.2",
3
+ "version": "2.13.4",
4
4
  "description": "NPX tool to install skills for AI coding agents (Claude Code, Gemini, Copilot, Kilocode, Cline, Cursor)",
5
5
  "main": "index.js",
6
6
  "bin": {