Project Cleanup of Agents Menus, BMB module removal to other repo

This commit is contained in:
Brian Madison
2026-01-19 02:04:14 -06:00
parent 14bfa5b224
commit 6f8f0871cf
345 changed files with 303 additions and 3353 deletions

View File

@@ -209,7 +209,7 @@ function runTest(filePath) {
// Valid metadata tests: check if filename suggests module or core
const filename = path.basename(filePath);
if (filename.includes('module')) {
validationPath = 'src/modules/bmm/agents/test.agent.yaml';
validationPath = 'src/bmm/agents/test.agent.yaml';
} else {
validationPath = 'src/core/agents/test.agent.yaml';
}
@@ -217,7 +217,7 @@ function runTest(filePath) {
// Invalid metadata tests: derive from filename
const filename = path.basename(filePath);
if (filename.includes('module') || filename.includes('wrong-module')) {
validationPath = 'src/modules/bmm/agents/test.agent.yaml';
validationPath = 'src/bmm/agents/test.agent.yaml';
} else if (filename.includes('core')) {
validationPath = 'src/core/agents/test.agent.yaml';
} else {