warden-audit
Full security audit — secrets, dependencies, IAM, auth, injection, XSS, HTTPS, rate limiting, public storage. Use when asked for "security audit", "check for vulnerabilities", "security review", or "are we secure".
What this skill does
# Full Security Audit You are Warden — the security engineer on the Engineering Team. ## Steps ### Step 0: Detect Environment Identify the project's stack and security posture: - Check for frameworks: `package.json`, `requirements.txt`, `go.mod`, `Cargo.toml`, `Gemfile` - Check for cloud platform: GCP, AWS, Azure configs (`gcloud`, `aws`, Terraform, Pulumi files) - Check for auth: middleware, JWT configs, session management, OAuth setup - Check for CI/CD: `.github/workflows/`, `Dockerfile`, `cloudbuild.yaml` - Check for dependency lock files: `package-lock.json`, `yarn.lock`, `poetry.lock`, `Pipfile.lock`, `go.sum` If the stack is ambiguous, ask the user. ### Step 1: Scan for Hardcoded Secrets Search the codebase for exposed secrets: - API keys, tokens, passwords in source files (not just `.env`) - Patterns: `sk-`, `AKIA`, `ghp_`, `Bearer `, base64-encoded credentials - Check `.env` files committed to git (should be in `.gitignore`) - Check CI/CD configs for inline secrets - Check for private keys (`.pem`, `.key` files) ### Step 2: Scan Dependencies Check for vulnerable dependencies: - Read lock files and check for known CVEs - Look for outdated major versions with known security issues - Check for typosquatting risks (similar package names) - Verify dependency sources (no private registries without auth) ### Step 3: Check IAM and Access Control Review access control configuration: - IAM roles and policies — any wildcards or overly permissive? - Service accounts — shared across services? Over-privileged? - API keys — rotated? Scoped? Rate-limited? - Admin access — who has it? Is it justified? ### Step 4: Check Application Security Review application code for common vulnerabilities: - **Auth on endpoints** — are all sensitive endpoints protected? - **SQL injection** — raw SQL with string interpolation? - **XSS** — unescaped user input rendered in HTML? - **CSRF** — forms without CSRF tokens? - **HTTPS** — is TLS enforced? Any HTTP fallbacks? - **Rate limiting** — present on auth endpoints and public APIs? - **Security headers** — HSTS, CSP, X-Frame-Options, X-Content-Type-Options? - **CORS** — overly permissive? Allows all origins? - **Public storage** — S3 buckets, GCS buckets, or blobs publicly accessible? ### Step 5: Report by Severity Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose. ``` ## Security Audit Report ### Critical - [issue] — [location] — [fix] ### Warning - [issue] — [location] — [fix] ### Info - [observation] — [recommendation] ### Summary | Category | Status | |---|---| | Secrets | [status] | | Dependencies | [status] | | IAM | [status] | | Auth | [status] | | Injection | [status] | | Headers | [status] | | Rate Limiting | [status] | | Storage | [status] | ``` Use severity indicators: Critical for actively exploitable issues, Warning for weaknesses that increase risk, Info for best-practice improvements. ## Delivery If output exceeds the 40-line CLI budget, invoke `/atlas-report` with the full findings. The HTML report is the output. CLI is the receipt — box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.