feat: add /cso skill — OWASP Top 10 + STRIDE security audit

This commit is contained in:
Arun Kumar Thiagarajan
2026-03-18 10:50:26 +05:30
parent f91222f5bd
commit dba128f824
5 changed files with 264 additions and 6 deletions
+1 -1
View File
@@ -1155,7 +1155,7 @@ function findTemplates(): string[] {
path.join(ROOT, 'qa-design-review', 'SKILL.md.tmpl'),
path.join(ROOT, 'design-consultation', 'SKILL.md.tmpl'),
path.join(ROOT, 'document-release', 'SKILL.md.tmpl'),
];
path.join(ROOT, 'cso', 'SKILL.md.tmpl'), ];
for (const p of candidates) {
if (fs.existsSync(p)) templates.push(p);
}
+1 -1
View File
@@ -31,7 +31,7 @@ const SKILL_FILES = [
'qa-design-review/SKILL.md',
'gstack-upgrade/SKILL.md',
'document-release/SKILL.md',
].filter(f => fs.existsSync(path.join(ROOT, f)));
'cso/SKILL.md',].filter(f => fs.existsSync(path.join(ROOT, f)));
let hasErrors = false;