Agent skill · Security

security-audit

Comprehensive security scanning and vulnerability detection. Includes input validation, path traversal prevention, CVE detection, and secure coding pattern enforcement. Use when: authentication implementation, authorization logic, payment processing, user data handling, API endpoint creation, file upload handling, database queries, external API integration. Skip when: read-only operations on public data, internal development tooling, static documentation, styling changes.

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexships scriptsMIT
Install
npx skills add ruvnet/ruflo --skill security-audit --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 3 KB
Bundled scripts: yes
Path: .agents/skills/security-audit/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Security Audit Skill ## Purpose Comprehensive security scanning and vulnerability detection. Includes input validation, path traversal prevention, CVE detection, and secure coding pattern enforcement. ## When to Trigger - authentication implementation - authorization logic - payment processing - user data handling - API endpoint creation - file upload handling - database queries - external API integration ## When to Skip - read-only operations on public data - internal development tooling - static documentation - styling changes ## Commands ### Full Security Scan Run comprehensive security analysis on the codebase ```bash npx @claude-flow/cli security scan --depth full ``` **Example:** ```bash npx @claude-flow/cli security scan --depth full --output security-report.json ``` ### Input Validation Check Check for input validation issues ```bash npx @claude-flow/cli security scan --check input-validation ``` **Example:** ```bash npx @claude-flow/cli security scan --check input-validation --path ./src/api ``` ### Path Traversal Check Check for path traversal vulnerabilities ```bash npx @claude-flow/cli security scan --check path-traversal ``` ### SQL Injection Check Check for SQL inje

What's inside
Steps it walks through
  1. Purpose
  2. When to Trigger
  3. When to Skip
  4. Commands
  5. Full Security Scan
  6. Input Validation Check
  7. Path Traversal Check
  8. SQL Injection Check
  9. XSS Check
  10. CVE Scan
  11. Security Audit Report
  12. Threat Modeling
  13. Validate Secrets
  14. Scripts
Ships with 2 files
  • scripts/cve-remediate.sh
  • scripts/security-scan.sh
Commands it runs
npx @claude-flow/cli security scan --depth full
npx @claude-flow/cli security scan --depth full --output security-report.json
npx @claude-flow/cli security scan --check input-validation
npx @claude-flow/cli security scan --check input-validation --path ./src/api
npx @claude-flow/cli security scan --check path-traversal
npx @claude-flow/cli security scan --check sql-injection
npx @claude-flow/cli security scan --check xss
npx @claude-flow/cli security cve --scan
npx @claude-flow/cli security cve --scan --severity high
npx @claude-flow/cli security audit --report
More from ruflo
All skills →
About this skill
What does the security-audit skill do?

Comprehensive security scanning and vulnerability detection. Includes input validation, path traversal prevention, CVE detection, and secure coding pattern enforcement. Use when: authentication implementation, authorization logic, payment processing, user data handling, API endpoint creation, file upload handling, database queries, external API integration. Skip when: read-only operations on public data, internal development tooling, static documentation, styling changes.

How do I install it?

Run `npx skills add ruvnet/ruflo --skill security-audit --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going