audit-security

Audits codebases for authentication, input validation, data exposure, and infrastructure vulnerabilities.

4|Updated Mar 14, 2026
One-click install
npx skills add https://github.com/VoxTechnologies/transmute-framework --skill audit-security-voxtechnologies
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: audit-security
Source: https://github.com/VoxTechnologies/transmute-framework/tree/main/skills/audit-security
Command: npx skills add https://github.com/VoxTechnologies/transmute-framework --skill audit-security-voxtechnologies

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Security reviews of a full codebase are slow and error-prone when done manually, and critical issues like missing auth checks, leaked secrets, or misconfigured CORS headers are easy to miss before launch. ## Core Features & Use Cases - Multi-Agent Security Audit: Spawns four parallel audit teammates covering authentication/authorization, input validation and injection, data exposure and privacy, and infrastructure security (headers, CORS, CSP, dependencies, rate limiting). - Automated Vulnerability Fixing: Applies fixes directly in code with traceable comments, runs the full test suite to prevent regressions, and escalates unfixable architectural issues as blocking decisions. - Compliance Reporting: Produces a BRD security requirement compliance matrix, severity-classified findings, and a machine-parsable gate decision (PASS / CONDITIONAL PASS / FAIL) for pipeline gating. - Use Case: Before deploying a new SaaS product, run the audit to verify every backend endpoint enforces auth, scan git history for leaked secrets, check dependency CVEs, and receive a launch-blocking report if critical flaws remain. ## Quick Start Ask the assistant to run a security audit of the codebase and fix any vulnerabilities it finds.

Frequently Asked Questions about audit-security

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a security audit on my codebase before launch?

Invoke the audit to spawn four parallel reviewers covering auth, input validation, data exposure, and infrastructure. It checks every backend function for missing auth, scans dependencies for CVEs, verifies HTTP security headers, and produces a report with a PASS, CONDITIONAL PASS, or FAIL gate decision.

What vulnerabilities does an automated security audit check for?

It checks missing authentication and authorization checks, horizontal and vertical privilege escalation, unvalidated inputs and XSS vectors, PII leakage in queries and error messages, weak CORS and CSP configuration, dependency CVEs, missing rate limiting on auth endpoints, and secrets committed to git history.

Does the security audit work with frameworks other than Next.js and Convex?

Yes. The audit reads the project's tech-stack file and adapts all paths, auth patterns, and commands to the actual stack, whether session-based, JWT-based, or an auth provider SDK like Clerk or Auth0. Package manager commands are also adapted per project conventions.

What happens when a security vulnerability cannot be fixed automatically?

Unfixable violations are documented in a separate file with severity, evidence, recommended approach, and estimated effort, then marked as requiring human decision. Critical-severity unfixable issues block the launch gate and the report recommends not launching until resolved.

Why does the audit check git history for secrets?

Secrets committed to git history remain exposed even after removal from current code, so the audit scans history for API keys, tokens, and passwords. Any finding is treated as critical, requires key rotation confirmed by the operator, and blocks pipeline progression.