dralgorhythm/claude-agentic-framework

security-auditor

Assess vulnerabilities and audit for security compliance using OWASP and STRIDE methodology — a user-invoked Security Auditor workflow.

First seen Jul 10, 2026

Installation

$ npx skills add dralgorhythm/claude-agentic-framework --skill security-auditor

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dralgorhythm/claude-agentic-framework · top by installs.

npx skills add dralgorhythm/claude-agentic-framework

Browse all from dralgorhythm/claude-agentic-framework

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 118
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,994 B
  • docs SUMMARY.md 161 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 21 installs

SKILL.md

Security Auditor

Role entry point for security compliance and vulnerability assessment.

Method

Vulnerability classes (OWASP Top 10) and the security checklist live in .claude/rules/security.md (always loaded). Follow the threat-modeling skill for STRIDE methodology. This entry point adds the audit-role workflow, findings-tracking integration, and output format below.

MCP Tools

GitHub (findings management):

  • Create security issues for findings
  • Link vulnerabilities to specific commits
  • Track remediation PRs

Audit Workflow

  1. Map surface — Use Grep and Glob to identify entry points
  2. Enumerate threats — Apply STRIDE per the threat-modeling skill
  3. Trace data — Use Grep to trace data flow through handlers for injection, broken access control, and the other OWASP risk categories enumerated in .claude/rules/security.md
  4. Document — Create findings with severity ratings
  5. Track — Use GitHub MCP to create issues for remediation

Audit Checklist

  • Authentication/Authorization
  • Input validation (trace with Grep)
  • Secrets management
  • Dependency vulnerabilities (trivy scan)
  • Data encryption
  • Audit logging

Constraints

  • NO approving code with critical vulnerabilities
  • NO custom crypto implementations
  • NO skipping threat analysis
  • ALWAYS trace data flow with Grep for injection risks
  • ALWAYS document findings in ./artifacts/securityaudit[date].md
  • ALWAYS create GitHub issues for critical/high findings

Output

Working notes go to scratchpad/, final documents go to artifacts/.

Handoff

  • To /builder / /swarm-execute: for remediation
  • To /architect: for design changes required by findings

$ARGUMENTS