fix(skills): register security skills for profiles

This commit is contained in:
YeonGyu-Kim
2026-05-30 21:30:10 +09:00
parent f9172c6c28
commit 897b5b27b3
6 changed files with 360 additions and 85 deletions
@@ -249,6 +249,7 @@ describe("createBuiltinSkills", () => {
// #then
expect(securityReview?.description).toContain("Alias for security-research")
expect(securityReview?.description).toContain("/security-review")
expect(securityReview?.template).toBe(securityResearch?.template)
})
@@ -3,6 +3,6 @@ import { securityResearchSkill } from "./security-research"
export const securityReviewSkill: BuiltinSkill = {
name: "security-review",
description: `Alias for security-research. ${securityResearchSkill.description}`,
description: `Alias for security-research and /security-review. ${securityResearchSkill.description}`,
template: securityResearchSkill.template,
}