ma-agents 3.13.0 → 3.13.2-skillname.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.
- package/bin/cli.js +67 -13
- package/lib/.bmad-extension-plugin.build-37364-1782300865129/.claude-plugin/marketplace.json +109 -0
- package/lib/.bmad-extension-plugin.build-37364-1782300865129/skills/module-help.csv +62 -0
- package/lib/.bmad-extension-plugin.build-37364-1782300865129/skills/module.yaml +20 -0
- package/lib/bmad-extension-plugin/.claude-plugin/marketplace.json +1 -1
- package/lib/bmad.js +270 -11
- package/lib/installer.js +276 -23
- package/lib/profile.js +96 -5
- package/lib/templates/instruction-block-git.template.md +25 -25
- package/lib/templates/instruction-block-onprem.template.md +86 -86
- package/lib/templates/instruction-block-universal.template.md +29 -29
- package/package.json +2 -2
- package/skills/git-workflow-skill/skill.json +21 -21
package/bin/cli.js
CHANGED
|
@@ -33,8 +33,8 @@ const chalk = require('chalk');
|
|
|
33
33
|
const path = require('path');
|
|
34
34
|
const fs = require('fs');
|
|
35
35
|
const { execFileSync } = require('child_process');
|
|
36
|
-
const { installSkill, uninstallSkill, getStatus, listSkills, listAgents, updateProjectContextRepoLayout, migrateRetiredSkills } = require('../lib/installer');
|
|
37
|
-
const { getProfile, setProfile, resolveProfile } = require('../lib/profile');
|
|
36
|
+
const { installSkill, uninstallSkill, getStatus, listSkills, listAgents, updateProjectContextRepoLayout, migrateRetiredSkills, reconcileAgentsSharedSkills } = require('../lib/installer');
|
|
37
|
+
const { getProfile, setProfile, resolveProfile, getBmadModules, setBmadModules } = require('../lib/profile');
|
|
38
38
|
const { reconfigure: runReconfigure, ReconfigureYesRejectedError, ManifestNotFoundError, RoomodesSlugDivergenceError } = require('../lib/reconfigure');
|
|
39
39
|
const { uninstallProfileArtifacts } = require('../lib/uninstall');
|
|
40
40
|
const bmad = require('../lib/bmad');
|
|
@@ -495,6 +495,19 @@ function writeConfigField(content, fieldName, value) {
|
|
|
495
495
|
return content.trimEnd() + '\n' + newLine + '\n';
|
|
496
496
|
}
|
|
497
497
|
|
|
498
|
+
// Bug 27.15 — unify the path convention. config.toml (written by upstream
|
|
499
|
+
// manifest-generator) declares artifact paths with a `{project-root}/` prefix;
|
|
500
|
+
// previously writeRepoLayoutConfig emitted a THIRD variant: bare relative
|
|
501
|
+
// `_bmad-output/...`. Emit the same `{project-root}/`-prefixed form here so
|
|
502
|
+
// ma-agents stops adding a divergent third convention. config.toml is the
|
|
503
|
+
// install-owned source of truth; the per-module config.yaml is the
|
|
504
|
+
// upstream-stripped read copy. Fully aligning the upstream stripper
|
|
505
|
+
// (official-modules.js) is a separate upstream follow-up; vendored node_modules
|
|
506
|
+
// is not edited here.
|
|
507
|
+
function canonicalArtifactPath(suffix) {
|
|
508
|
+
return `{project-root}/_bmad-output/${suffix}`;
|
|
509
|
+
}
|
|
510
|
+
|
|
498
511
|
function writeRepoLayoutConfig(layout) {
|
|
499
512
|
const configPath = path.join(process.cwd(), '_bmad', 'bmm', 'config.yaml');
|
|
500
513
|
try {
|
|
@@ -522,8 +535,8 @@ function writeRepoLayoutConfig(layout) {
|
|
|
522
535
|
content = writeConfigField(content, 'sprint_backend', 'jira');
|
|
523
536
|
content = writeConfigField(content, 'jira_url', layout.sprintManagement.jiraUrl);
|
|
524
537
|
content = writeConfigField(content, 'jira_project_key', layout.sprintManagement.jiraProjectKey);
|
|
525
|
-
const planningArtifacts = kbPath === '.' ? '
|
|
526
|
-
const implArtifacts = '
|
|
538
|
+
const planningArtifacts = kbPath === '.' ? canonicalArtifactPath('planning-artifacts') : kbPath;
|
|
539
|
+
const implArtifacts = canonicalArtifactPath('implementation-artifacts');
|
|
527
540
|
content = writeConfigField(content, 'planning_artifacts', planningArtifacts);
|
|
528
541
|
content = writeConfigField(content, 'implementation_artifacts', implArtifacts);
|
|
529
542
|
fs.writeFileSync(configPath, content, 'utf-8');
|
|
@@ -534,8 +547,8 @@ function writeRepoLayoutConfig(layout) {
|
|
|
534
547
|
const spPath = spPortable.portable;
|
|
535
548
|
content = writeConfigField(content, 'sprint_backend', 'file-system');
|
|
536
549
|
content = writeConfigField(content, 'sprint_management_path', spPath);
|
|
537
|
-
const planningArtifacts = kbPath === '.' ? '
|
|
538
|
-
const implArtifacts = spPath === '.' ? '
|
|
550
|
+
const planningArtifacts = kbPath === '.' ? canonicalArtifactPath('planning-artifacts') : kbPath;
|
|
551
|
+
const implArtifacts = spPath === '.' ? canonicalArtifactPath('implementation-artifacts') : spPath;
|
|
539
552
|
content = writeConfigField(content, 'planning_artifacts', planningArtifacts);
|
|
540
553
|
content = writeConfigField(content, 'implementation_artifacts', implArtifacts);
|
|
541
554
|
fs.writeFileSync(configPath, content, 'utf-8');
|
|
@@ -831,14 +844,26 @@ async function collectRepoLayout(flags, existingLayout = null) {
|
|
|
831
844
|
* break without them. Retired modules (currently only `wds`) are filtered
|
|
832
845
|
* out unconditionally.
|
|
833
846
|
*/
|
|
834
|
-
async function selectBmadModules({ bmadModulesFlag, bmadModulesPrompt }) {
|
|
847
|
+
async function selectBmadModules({ bmadModulesFlag, bmadModulesPrompt, projectRoot } = {}) {
|
|
835
848
|
const installable = bmad.getInstallableBmadModules().filter(m => !m.retired);
|
|
849
|
+
const root = projectRoot || process.cwd();
|
|
850
|
+
|
|
851
|
+
// Bug 27.13 — persist the resolved selection so a deselection sticks across
|
|
852
|
+
// future installs/reconfigures that do not re-pass --bmad-modules.
|
|
853
|
+
const persist = (modules) => {
|
|
854
|
+
try {
|
|
855
|
+
setBmadModules(root, modules);
|
|
856
|
+
} catch (err) {
|
|
857
|
+
console.warn(chalk.yellow(` Warning: could not persist BMAD module selection: ${err.message}`));
|
|
858
|
+
}
|
|
859
|
+
return modules;
|
|
860
|
+
};
|
|
836
861
|
|
|
837
862
|
// Branch 1: explicit CSV — validate + use as-is.
|
|
838
863
|
if (bmadModulesFlag) {
|
|
839
864
|
const requested = bmadModulesFlag.split(',').map(s => s.trim()).filter(Boolean);
|
|
840
865
|
try {
|
|
841
|
-
return bmad.resolveBmadModules({ requested, available: installable });
|
|
866
|
+
return persist(bmad.resolveBmadModules({ requested, available: installable }));
|
|
842
867
|
} catch (err) {
|
|
843
868
|
console.error(chalk.red(`Error: ${err.message}`));
|
|
844
869
|
process.exit(1);
|
|
@@ -872,11 +897,25 @@ async function selectBmadModules({ bmadModulesFlag, bmadModulesPrompt }) {
|
|
|
872
897
|
|
|
873
898
|
// Belt-and-suspenders: force bmm back in if the user managed to uncheck
|
|
874
899
|
// it despite the (required) tag.
|
|
875
|
-
return bmad.resolveBmadModules({ requested: chosenModules, available: installable });
|
|
900
|
+
return persist(bmad.resolveBmadModules({ requested: chosenModules, available: installable }));
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
// Branch 3: no flag → use the persisted selection from a prior run if present
|
|
904
|
+
// (bug 27.13 — a previous deselection must survive); otherwise fall back to
|
|
905
|
+
// the original "install every available module" default. The persisted set is
|
|
906
|
+
// intersected with the currently-installable set so a since-retired module
|
|
907
|
+
// does not resurface, and bmm is force-included via resolveBmadModules.
|
|
908
|
+
const persisted = getBmadModules(root);
|
|
909
|
+
if (persisted && persisted.length > 0) {
|
|
910
|
+
const availableIds = new Set(installable.map(m => m.id));
|
|
911
|
+
const stillInstallable = persisted.filter(id => availableIds.has(id));
|
|
912
|
+
try {
|
|
913
|
+
return persist(bmad.resolveBmadModules({ requested: stillInstallable, available: installable }));
|
|
914
|
+
} catch {
|
|
915
|
+
// If the persisted set somehow fails validation, fall through to default.
|
|
916
|
+
}
|
|
876
917
|
}
|
|
877
|
-
|
|
878
|
-
// Branch 3: no flag → install everything available.
|
|
879
|
-
return installable.map(m => m.id);
|
|
918
|
+
return persist(installable.map(m => m.id));
|
|
880
919
|
}
|
|
881
920
|
|
|
882
921
|
// --- Install wizard ---
|
|
@@ -1167,6 +1206,7 @@ async function installWizard(preselectedSkill, preselectedAgents, customPath, fo
|
|
|
1167
1206
|
const bmadModules = await selectBmadModules({
|
|
1168
1207
|
bmadModulesFlag,
|
|
1169
1208
|
bmadModulesPrompt,
|
|
1209
|
+
projectRoot: process.cwd(),
|
|
1170
1210
|
});
|
|
1171
1211
|
|
|
1172
1212
|
if (!bmadInstalled) {
|
|
@@ -1314,6 +1354,20 @@ async function installWizard(preselectedSkill, preselectedAgents, customPath, fo
|
|
|
1314
1354
|
}
|
|
1315
1355
|
}
|
|
1316
1356
|
|
|
1357
|
+
// Bug 27.16 — if BMAD populated the shared `.agents/skills` dir but no
|
|
1358
|
+
// .agents-targeting agent (copilot/kilocode/roo-code) was selected, the
|
|
1359
|
+
// standalone catalog + MANIFEST.yaml were never written there. Backfill them
|
|
1360
|
+
// so the dir is never BMAD-only without the MANIFEST.yaml the instruction
|
|
1361
|
+
// block points agents at. No-op when an .agents agent was selected or no
|
|
1362
|
+
// shared dir exists.
|
|
1363
|
+
if (installScope === 'project') {
|
|
1364
|
+
try {
|
|
1365
|
+
await reconcileAgentsSharedSkills(process.cwd(), selectedAgentIds, installScope);
|
|
1366
|
+
} catch (err) {
|
|
1367
|
+
console.log(chalk.yellow(` .agents/skills reconciliation skipped: ${err.message}`));
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1317
1371
|
// Step 6: Update project-context.md with repo layout section (after skills installed project-context.md)
|
|
1318
1372
|
if (installScope === 'project') {
|
|
1319
1373
|
const outputPath = path.join(process.cwd(), '_bmad-output', 'project-context.md');
|
|
@@ -1683,4 +1737,4 @@ if (require.main === module) {
|
|
|
1683
1737
|
});
|
|
1684
1738
|
}
|
|
1685
1739
|
|
|
1686
|
-
module.exports = { parseFlags, collectRepoLayout, readExistingLayout, writeRepoLayoutConfig, writeProjectLayoutYaml, writeConfigField, normalizePath, toPortablePath, resolveStoredPath, ciCloneIfNeeded, showCurrentLayout, handleConfigLayout, yamlEscapeValue };
|
|
1740
|
+
module.exports = { parseFlags, selectBmadModules, collectRepoLayout, readExistingLayout, writeRepoLayoutConfig, writeProjectLayoutYaml, writeConfigField, normalizePath, toPortablePath, resolveStoredPath, ciCloneIfNeeded, showCurrentLayout, handleConfigLayout, yamlEscapeValue };
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ma-agents",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "Alon Mayaffit"
|
|
5
|
+
},
|
|
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
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/mayafit/AI_Agents",
|
|
9
|
+
"repository": "https://github.com/mayafit/AI_Agents",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"bmad",
|
|
12
|
+
"ma-agents",
|
|
13
|
+
"enterprise",
|
|
14
|
+
"sdlc",
|
|
15
|
+
"mil-std-498",
|
|
16
|
+
"sre",
|
|
17
|
+
"devops",
|
|
18
|
+
"cyber",
|
|
19
|
+
"ml",
|
|
20
|
+
"sqa",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"copilot",
|
|
23
|
+
"cline",
|
|
24
|
+
"roo-code",
|
|
25
|
+
"kilocode"
|
|
26
|
+
],
|
|
27
|
+
"compatible_tools": [
|
|
28
|
+
"claude-code",
|
|
29
|
+
"copilot",
|
|
30
|
+
"cline",
|
|
31
|
+
"roo-code",
|
|
32
|
+
"kilocode"
|
|
33
|
+
],
|
|
34
|
+
"bmad_min_version": "6.8.0",
|
|
35
|
+
"plugins": [
|
|
36
|
+
{
|
|
37
|
+
"name": "ma-skills",
|
|
38
|
+
"source": "./",
|
|
39
|
+
"description": "ma-agents extension module providing enterprise SDLC personas and operational workflow skills.",
|
|
40
|
+
"version": "3.13.1",
|
|
41
|
+
"author": {
|
|
42
|
+
"name": "Alon Mayaffit"
|
|
43
|
+
},
|
|
44
|
+
"skills": [
|
|
45
|
+
"./skills/ma-agent-cyber",
|
|
46
|
+
"./skills/ma-agent-devops",
|
|
47
|
+
"./skills/ma-agent-ml",
|
|
48
|
+
"./skills/ma-agent-sqa",
|
|
49
|
+
"./skills/ma-agent-sre",
|
|
50
|
+
"./skills/mil498-ocd",
|
|
51
|
+
"./skills/mil498-requirement-quality",
|
|
52
|
+
"./skills/mil498-sdd",
|
|
53
|
+
"./skills/mil498-sdp",
|
|
54
|
+
"./skills/mil498-srs",
|
|
55
|
+
"./skills/mil498-ssdd",
|
|
56
|
+
"./skills/mil498-sss",
|
|
57
|
+
"./skills/mil498-std",
|
|
58
|
+
"./skills/sqa-audit",
|
|
59
|
+
"./skills/sqa-ieee12207",
|
|
60
|
+
"./skills/sqa-requirements-quality",
|
|
61
|
+
"./skills/sre-check-deployment-status",
|
|
62
|
+
"./skills/sre-check-secrets",
|
|
63
|
+
"./skills/sre-check-system-status",
|
|
64
|
+
"./skills/sre-day-2-ops",
|
|
65
|
+
"./skills/sre-deployment-strategies",
|
|
66
|
+
"./skills/sre-fix-deployments",
|
|
67
|
+
"./skills/sre-gitops-status",
|
|
68
|
+
"./skills/devops-configure-infrastructure",
|
|
69
|
+
"./skills/devops-disconnected-deployment",
|
|
70
|
+
"./skills/devops-docker-compose-setup",
|
|
71
|
+
"./skills/devops-manage-helm",
|
|
72
|
+
"./skills/devops-sign-docker-image",
|
|
73
|
+
"./skills/cyber-generate-certs",
|
|
74
|
+
"./skills/cyber-immunity-estimation",
|
|
75
|
+
"./skills/cyber-security-audit",
|
|
76
|
+
"./skills/cyber-vault-secrets",
|
|
77
|
+
"./skills/cyber-verify-docker-users",
|
|
78
|
+
"./skills/cyber-verify-image-signature",
|
|
79
|
+
"./skills/cyber-vulnerability-scan",
|
|
80
|
+
"./skills/ml-advise",
|
|
81
|
+
"./skills/ml-analysis",
|
|
82
|
+
"./skills/ml-architecture",
|
|
83
|
+
"./skills/ml-detailed-design",
|
|
84
|
+
"./skills/ml-eda",
|
|
85
|
+
"./skills/ml-experiment",
|
|
86
|
+
"./skills/ml-hparam",
|
|
87
|
+
"./skills/ml-ideation",
|
|
88
|
+
"./skills/ml-infra",
|
|
89
|
+
"./skills/ml-retrospective",
|
|
90
|
+
"./skills/ml-revision",
|
|
91
|
+
"./skills/ml-techspec",
|
|
92
|
+
"./skills/add-sprint",
|
|
93
|
+
"./skills/add-to-sprint",
|
|
94
|
+
"./skills/bmad-dev-story",
|
|
95
|
+
"./skills/bmad-sprint-planning",
|
|
96
|
+
"./skills/bmad-sprint-status",
|
|
97
|
+
"./skills/cleanup-done",
|
|
98
|
+
"./skills/close-sprint",
|
|
99
|
+
"./skills/create-bug-story",
|
|
100
|
+
"./skills/generate-backlog",
|
|
101
|
+
"./skills/modify-sprint",
|
|
102
|
+
"./skills/prioritize-backlog",
|
|
103
|
+
"./skills/project-context-expansion",
|
|
104
|
+
"./skills/remove-from-sprint",
|
|
105
|
+
"./skills/sprint-status-view"
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
module,phase,name,code,sequence,workflow-file,command,required,agent,options,description,output-location,outputs,
|
|
2
|
+
ma-skills,anytime,SRE Agent,ma-agent-sre,,skill:ma-agent-sre,ma-agent-sre,false,bmm-sre,,"Site Reliability Engineer agent for system availability, reliability, and Kubernetes operations.",output_folder,"agent customization",
|
|
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
|
+
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
|
+
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 (Gad) for project auditing, compliance verification, and quality reporting.",output_folder,"agent customization",
|
|
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
|
+
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
|
+
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",
|
|
10
|
+
ma-skills,4-implementation,Generate SDP,mil498-sdp,,skill:mil498-sdp,bmad-mil-generate-sdp,false,bmm-mil498,,"Generate a MIL-STD-498 Software Development Plan (SDP).",output_folder,"MIL-498 document",
|
|
11
|
+
ma-skills,4-implementation,Generate SRS,mil498-srs,,skill:mil498-srs,bmad-mil-generate-srs,false,bmm-mil498,,"Generate a MIL-STD-498 Software Requirements Specification (SRS).",output_folder,"MIL-498 document",
|
|
12
|
+
ma-skills,4-implementation,Generate SDD,mil498-sdd,,skill:mil498-sdd,bmad-mil-generate-sdd,false,bmm-mil498,,"Generate a MIL-STD-498 Software Design Description (SDD).",output_folder,"MIL-498 document",
|
|
13
|
+
ma-skills,4-implementation,Generate STD,mil498-std,,skill:mil498-std,bmad-mil-generate-std,false,bmm-mil498,,"Generate a MIL-STD-498 Software Test Description (STD).",output_folder,"MIL-498 document",
|
|
14
|
+
ma-skills,4-implementation,Requirements Quality,mil498-requirement-quality,,skill:mil498-requirement-quality,mil498-requirement-quality,false,bmm-mil498,,"Evaluate requirements against 14 quality criteria — produces per-requirement audit table, Missing Elements report, and Overall Quality Score.",output_folder,"requirements audit",
|
|
15
|
+
ma-skills,4-implementation,Check Deployment Status,sre-check-deployment-status,,skill:sre-check-deployment-status,bmad-sre-check-deployment-status,false,bmm-sre,,"Check deployment status across Kubernetes namespaces and report issues.",output_folder,"status report",
|
|
16
|
+
ma-skills,4-implementation,Check Secrets,sre-check-secrets,,skill:sre-check-secrets,bmad-sre-check-secrets,false,bmm-sre,,"Debug and verify secret configurations in Kubernetes clusters.",output_folder,"status report",
|
|
17
|
+
ma-skills,4-implementation,Check System Status,sre-check-system-status,,skill:sre-check-system-status,bmad-sre-check-system-status,false,bmm-sre,,"Perform overall system status check across cluster resources.",output_folder,"status report",
|
|
18
|
+
ma-skills,4-implementation,Day 2 Ops,sre-day-2-ops,,skill:sre-day-2-ops,bmad-sre-day-2-ops,false,bmm-sre,,"Execute Day 2 operations and maintenance tasks for running systems.",output_folder,"operations report",
|
|
19
|
+
ma-skills,4-implementation,Deployment Strategies,sre-deployment-strategies,,skill:sre-deployment-strategies,bmad-sre-deployment-strategies,false,bmm-sre,,"Evaluate and recommend deployment strategies (blue-green, canary, rolling).",output_folder,"strategy report",
|
|
20
|
+
ma-skills,4-implementation,Fix Deployments,sre-fix-deployments,,skill:sre-fix-deployments,bmad-sre-fix-deployments,false,bmm-sre,,"Troubleshoot and fix failed or degraded deployments.",output_folder,"fix report",
|
|
21
|
+
ma-skills,4-implementation,GitOps Status,sre-gitops-status,,skill:sre-gitops-status,bmad-sre-gitops-status,false,bmm-sre,,"Check GitOps sync status and detect configuration drift.",output_folder,"status report",
|
|
22
|
+
ma-skills,4-implementation,Configure Infrastructure,devops-configure-infrastructure,,skill:devops-configure-infrastructure,bmad-devops-configure-infrastructure,false,bmm-devops,,"Configure infrastructure components using Infrastructure as Code patterns.",output_folder,"infrastructure config",
|
|
23
|
+
ma-skills,4-implementation,Disconnected Deployment,devops-disconnected-deployment,,skill:devops-disconnected-deployment,bmad-devops-disconnected-deployment,false,bmm-devops,,"Deploy to air-gapped or disconnected environments.",output_folder,"deployment guide",
|
|
24
|
+
ma-skills,4-implementation,Docker Compose Setup,devops-docker-compose-setup,,skill:devops-docker-compose-setup,bmad-devops-docker-compose-setup,false,bmm-devops,,"Set up and manage Docker Compose configurations.",output_folder,"compose config",
|
|
25
|
+
ma-skills,4-implementation,Manage Helm,devops-manage-helm,,skill:devops-manage-helm,bmad-devops-manage-helm,false,bmm-devops,,"Deploy and manage Helm charts for Kubernetes.",output_folder,"helm config",
|
|
26
|
+
ma-skills,4-implementation,Sign Docker Image,devops-sign-docker-image,,skill:devops-sign-docker-image,bmad-devops-sign-docker-image,false,bmm-devops,,"Sign Docker images using Cosign/Notary for supply chain security.",output_folder,"signing report",
|
|
27
|
+
ma-skills,4-implementation,Generate Certs,cyber-generate-certs,,skill:cyber-generate-certs,bmad-cyber-generate-certs,false,bmm-cyber,,"Generate secure self-signed certificates and Root CAs using OpenSSL.",output_folder,"certificates",
|
|
28
|
+
ma-skills,4-implementation,Immunity Estimation,cyber-immunity-estimation,,skill:cyber-immunity-estimation,bmad-cyber-immunity-estimation,false,bmm-cyber,,"Estimate cyber immunity posture and resilience metrics.",output_folder,"immunity report",
|
|
29
|
+
ma-skills,4-implementation,Security Audit,cyber-security-audit,,skill:cyber-security-audit,bmad-cyber-security-audit,false,bmm-cyber,,"Perform comprehensive security audit against industry standards.",output_folder,"audit report",
|
|
30
|
+
ma-skills,4-implementation,Vault Secrets,cyber-vault-secrets,,skill:cyber-vault-secrets,bmad-cyber-vault-secrets,false,bmm-cyber,,"Manage HashiCorp Vault secret configurations and policies.",output_folder,"vault config",
|
|
31
|
+
ma-skills,4-implementation,Verify Docker Users,cyber-verify-docker-users,,skill:cyber-verify-docker-users,bmad-cyber-verify-docker-users,false,bmm-cyber,,"Verify Docker image user configurations and hardening compliance.",output_folder,"verification report",
|
|
32
|
+
ma-skills,4-implementation,Verify Image Signature,cyber-verify-image-signature,,skill:cyber-verify-image-signature,bmad-cyber-verify-image-signature,false,bmm-cyber,,"Verify Docker image signatures for supply chain integrity.",output_folder,"verification report",
|
|
33
|
+
ma-skills,4-implementation,Vulnerability Scan,cyber-vulnerability-scan,,skill:cyber-vulnerability-scan,bmad-cyber-vulnerability-scan,false,bmm-cyber,,"Orchestrate vulnerability scanning across project components.",output_folder,"scan report",
|
|
34
|
+
ma-skills,4-implementation,ML Ideation,ml-ideation,,skill:ml-ideation,ml-ideation,false,bmm-demerzel,,"Frame an ML research problem, produce a Research Thesis and PRD.",_bmad-output,"research thesis",
|
|
35
|
+
ma-skills,4-implementation,ML EDA,ml-eda,,skill:ml-eda,ml-eda,false,bmm-demerzel,,"Exploratory Data Analysis — establish baselines and produce an EDA report.",_bmad-output,"EDA report",
|
|
36
|
+
ma-skills,4-implementation,ML Architecture,ml-architecture,,skill:ml-architecture,ml-architecture,false,bmm-demerzel,,"Define model architecture, stack, and experiment tracking strategy.",_bmad-output,"architecture spec",
|
|
37
|
+
ma-skills,4-implementation,ML Detailed Design,ml-detailed-design,,skill:ml-detailed-design,ml-detailed-design,false,bmm-demerzel,,"Break implementation into INF-* and EXP-* tasks.",_bmad-output,"task breakdown",
|
|
38
|
+
ma-skills,4-implementation,ML TechSpec,ml-techspec,,skill:ml-techspec,ml-techspec,false,bmm-demerzel,,"Lock experiment parameters and performance tiers before training.",_bmad-output,"TechSpec",
|
|
39
|
+
ma-skills,4-implementation,ML Infra,ml-infra,,skill:ml-infra,ml-infra,false,bmm-demerzel,,"Build ML infrastructure, manage dependencies, and run smoke tests.",_bmad-output,"infra report",
|
|
40
|
+
ma-skills,4-implementation,ML Experiment,ml-experiment,,skill:ml-experiment,ml-experiment,false,bmm-demerzel,,"Execute training experiments against locked TechSpec and log metrics.",_bmad-output,"experiment log",
|
|
41
|
+
ma-skills,4-implementation,ML Analysis,ml-analysis,,skill:ml-analysis,ml-analysis,false,bmm-demerzel,,"Evaluate experiment outcomes against TechSpec success tiers.",_bmad-output,"analysis report",
|
|
42
|
+
ma-skills,4-implementation,ML Hyperparameter Optimization,ml-hparam,,skill:ml-hparam,ml-hparam,false,bmm-demerzel,,"Automated hyperparameter optimization (Optuna, W&B Sweeps, Ray Tune).",_bmad-output,"hparam report",
|
|
43
|
+
ma-skills,4-implementation,ML Revision,ml-revision,,skill:ml-revision,ml-revision,false,bmm-demerzel,,"Amend hypothesis and requirements based on experiment findings.",_bmad-output,"revision doc",
|
|
44
|
+
ma-skills,4-implementation,ML Advise,ml-advise,,skill:ml-advise,ml-advise,false,bmm-demerzel,,"Search past experiments, surface findings and failure warnings.",_bmad-output,"advisory report",
|
|
45
|
+
ma-skills,4-implementation,ML Retrospective,ml-retrospective,,skill:ml-retrospective,ml-retrospective,false,bmm-demerzel,,"Capture session learnings and update project context.",_bmad-output,"retrospective",
|
|
46
|
+
ma-skills,4-implementation,SQA Audit,sqa-audit,,skill:sqa-audit,sqa-audit,false,bmm-qa,,"Comprehensive project quality audit covering code-to-story traceability, story-to-architecture alignment, process compliance, sprint health, and release state.",_bmad-output,"audit report",
|
|
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
|
+
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
|
+
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,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",
|
|
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",
|
|
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",
|
|
53
|
+
ma-skills,4-implementation,Add to Sprint,add-to-sprint,,skill:add-to-sprint,add-to-sprint,false,bmm-sm,,"Move backlog items to a sprint in the unified sprint-status.yaml using movement semantics.",_bmad-output/implementation-artifacts,"sprint plan",
|
|
54
|
+
ma-skills,4-implementation,Remove from Sprint,remove-from-sprint,,skill:remove-from-sprint,remove-from-sprint,false,bmm-sm,,"Move items from a sprint back to the backlog in the unified sprint-status.yaml using reverse movement semantics.",_bmad-output/implementation-artifacts,"sprint plan",
|
|
55
|
+
ma-skills,4-implementation,Modify Sprint,modify-sprint,,skill:modify-sprint,modify-sprint,false,bmm-sm,,"Modify an existing sprint's metadata (name, capacity, dates, status) within the sprints section of sprint-status.yaml.",_bmad-output/implementation-artifacts,"sprint plan",
|
|
56
|
+
ma-skills,4-implementation,Sprint Status View,sprint-status-view,,skill:sprint-status-view,sprint-status-view,false,bmm-sm,,"Display formatted sprint progress, backlog, and epic status from the unified sprint-status.yaml.",_bmad-output/implementation-artifacts,"status display",
|
|
57
|
+
ma-skills,4-implementation,Sprint Status Health,bmad-sprint-status,,skill:bmad-sprint-status,bmad-sprint-status,false,bmm-sm,,"Analyze sprint health, surface risk flags, and recommend next actions from the unified sprint-status.yaml.",_bmad-output/implementation-artifacts,"health summary",
|
|
58
|
+
ma-skills,4-implementation,Cleanup Done,cleanup-done,,skill:cleanup-done,cleanup-done,false,bmm-sm,,"Archive done and cancelled items — remove from sprint-status.yaml and move files to done/ subfolder.",_bmad-output/implementation-artifacts,"archival",
|
|
59
|
+
ma-skills,4-implementation,Close Sprint,close-sprint,,skill:close-sprint,close-sprint,false,bmm-sm,,"Close an active sprint — archive done/cancelled items, disposition incomplete items, set sprint status to closed.",_bmad-output/implementation-artifacts,"sprint plan",
|
|
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",
|
|
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",
|
|
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",
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ma-skills module manifest (BMAD v6.6.0 schema)
|
|
2
|
+
#
|
|
3
|
+
# Canonical location: `skills/module.yaml` (BMAD 6.2.2+ / 6.3.0). The previous
|
|
4
|
+
# location `lib/bmad-extension/module.yaml` was moved here during Story 22.5.
|
|
5
|
+
# PluginResolver (tools/installer/modules/plugin-resolver.js) discovers this
|
|
6
|
+
# file as the "common parent of all skills" under Strategy 1.
|
|
7
|
+
#
|
|
8
|
+
# module_version policy (Story 22.5 / AC 7):
|
|
9
|
+
# - Patch: bug fixes within existing skills
|
|
10
|
+
# - Minor: skill added, additive change
|
|
11
|
+
# - Major: skill removed, renamed, or breaking change to skill behavior
|
|
12
|
+
# Bump this whenever marketplace.json.template's skills[] list or any
|
|
13
|
+
# bmad-skill-manifest.yaml is modified.
|
|
14
|
+
|
|
15
|
+
code: ma-skills
|
|
16
|
+
name: "MA-Agents Skills & Agents"
|
|
17
|
+
description: "Enterprise methodology enforcement, specialized agents, and operational workflows"
|
|
18
|
+
module_version: "3.6.2"
|
|
19
|
+
extends-module: bmm
|
|
20
|
+
default_selected: false
|
|
@@ -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.13.0",
|
|
40
|
+
"version": "3.13.2-skillname.0",
|
|
41
41
|
"author": {
|
|
42
42
|
"name": "Alon Mayaffit"
|
|
43
43
|
},
|