feat: add machine learning engineering workflow

This commit is contained in:
Divyesh Thirukonda
2026-05-01 20:19:25 -05:00
parent c45aeee57f
commit 4b0eeacd66
20 changed files with 1236 additions and 21 deletions

View File

@@ -77,6 +77,10 @@ function run() {
assert.ok(skillDirs.length > 0, 'Expected at least one .agents/skills entry');
})) passed++; else failed++;
if (test('Codex skill surface includes the MLE workflow', () => {
assert.ok(skillDirs.includes('mle-workflow'), 'Expected .agents/skills/mle-workflow');
})) passed++; else failed++;
if (test('SKILL.md frontmatter matches Codex validator expectations', () => {
for (const skillDir of skillDirs) {
const frontmatter = parseFrontmatter(skillDir);