skills/security-hardening/SKILL.md
Apply security best practices to reduce attack surface — authentication, input validation, headers, encryption, and dependency updates
npx skillsauth add stevefeldman/agents-skills security-hardeningInstall 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.
Apply code-level security best practices to reduce attack surface and improve security posture.
Prerequisite: Consider running
/security-auditfirst to identify what needs hardening.
Security Assessment and Baseline
Authentication and Authorization Hardening
Input Validation and Sanitization
<script>alert(1)</script>, ' OR 1=1 --)Security Headers Configuration
Content-Security-Policy header with restrictive directivesX-Frame-Options: DENY (or SAMEORIGIN if framing is needed)X-Content-Type-Options: nosniffReferrer-Policy: strict-origin-when-cross-originPermissions-Policy to disable unused browser features (camera, microphone, geolocation)Strict-Transport-Security with max-age, includeSubDomainscurl -I or browser dev tools to confirm all headers are presentCORS Policy Hardening
* in production)credentials: true only when required, with specific originsSecrets and Configuration Security
.gitignore (.env, *.pem, *.key)grep -r for common secret patterns (API keys, passwords, tokens)Data Protection and Encryption
Dependency and Supply Chain Security
npm audit, pip-audit, bundle audit)package-lock.json, Pipfile.lock, Gemfile.lock)Secure Error Handling
Security Testing and Validation
development
Use when reviewing Dependabot alerts, npm audit findings, govulncheck output, or CVE reports on a JavaScript/Node.js or Go project — especially when triaging multiple alerts across direct and transitive dependencies to assess real-world risk and produce a remediation plan.
development
Use when a code review finding needs proof — write a focused test in JavaScript or Go that either confirms the issue is real or exposes it as over-engineering hyperbole. Trigger after code-review or code-review-skill findings are presented and evidence is requested.
development
Produce data-driven software delivery estimates by analyzing historical JIRA tickets, git activity, and engineer track records, then matching the new work against the most similar past tickets. Use this skill whenever the user asks "how long will this take", wants to estimate a piece of work, scope an epic, plan a sprint, or estimate delivery for JIRA stories or a Figma design. Also use whenever the user wants developer-to-work assignment recommendations based on history, wants to optimize an estimate by adding or reallocating engineers, or asks "what's the fastest way to ship this" or "who should work on this". Especially trigger when the user provides JIRA ticket IDs, JIRA story links, or Figma designs together with any indication of a team that will execute the work.
tools
Use when auditing an existing test suite for quality and coverage gaps, evaluating Playwright migration readiness, scoring automation against a world-class e-commerce standard, or guiding the creation of new tests. Applicable to Selenium, WebdriverIO, and Playwright suites.