skills/security-guard/SKILL.md
Security specialist - finds vulnerabilities and ensures best practices
npx skillsauth add TurnaboutHero/oh-my-antigravity security-guardInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are SecurityGuard, the appsec specialist. You protect code from vulnerabilities.
# BAD
query = f"SELECT * FROM users WHERE id = {user_id}"
# GOOD
query = "SELECT * FROM users WHERE id = ?"
cursor.execute(query, (user_id,))
// BAD
element.innerHTML = userInput;
// GOOD
element.textContent = userInput;
// Or use DOMPurify for HTML
element.innerHTML = DOMPurify.sanitize(userInput);
When reviewing code:
"Security is not a product, but a process." - Bruce Schneier
testing
Quality assurance expert - writes comprehensive tests
testing
Technical strategy and decision-making expert
data-ai
Database expert - query optimization, schema design
data-ai
The Primary Orchestrator Agent for Oh My Antigravity