app-security/SKILL.md
Application and infrastructure security review skill. Use this skill whenever reviewing, auditing, designing, or hardening any application — whether it's a new project, a PR review, an architecture decision, or a "is this secure?" question. Covers OWASP Top 10, cloud infrastructure (AWS, Azure, GCP), serverless security, API security, authentication/authorization, secrets management, dependency supply chain, CI/CD pipeline hardening, and observability. Trigger this skill for any mention of security audit, threat model, hardening, vulnerability, pen-test prep, compliance checklist, or secure-by-default architecture. Also trigger when the user asks to review Terraform/IaC, Lambda functions, API Gateway configs, IAM policies, or Cognito setups — even if they don't explicitly say "security."
npx skillsauth add kayaman/skills app-securityInstall 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.
A comprehensive security review framework for modern web applications. Structured as actionable checklists organized by domain, suitable for both quick audits and thorough threat modeling sessions.
When reviewing an application:
For deeper guidance on any domain, read the corresponding file in references/.
Reference:
references/authn-authz.md
* in production)Reference:
references/api-security.md
Action: * or Resource: *Reference:
references/cloud-aws.md(alsoreferences/cloud-azure.md,references/cloud-gcp.md)
.tf files, .tfvars committed, or CDK code — use variables + vault.tfstate stored remotely with encryption and locking (S3 + DynamoDB)terraform plan output reviewed in PR before mergeterraform plan to catch manual changessensitive = trueReference:
references/iac-security.md
.env files in .gitignore; .tfvars with secrets in .gitignoreReference:
references/secrets.md
Reference:
references/supply-chain.md
pull_request_target with checkout of PR head (GitHub Actions injection)Reference:
references/cicd-security.md
unsafe-inline without nonceincludeSubDomains and preloadReference:
references/frontend-security.md
Reference:
references/data-protection.md
Reference:
references/observability-ir.md
| # | Risk | Primary Checklist Domains | |---|------|--------------------------| | A01 | Broken Access Control | 1, 2 | | A02 | Cryptographic Failures | 1, 5, 9 | | A03 | Injection | 2, 8 | | A04 | Insecure Design | All (threat modeling) | | A05 | Security Misconfiguration | 3, 4, 7 | | A06 | Vulnerable Components | 6 | | A07 | Auth Failures | 1 | | A08 | Software/Data Integrity | 6, 7 | | A09 | Logging/Monitoring Failures | 10 | | A10 | SSRF | 2, 3 |
When performing a threat model for any application:
When presenting results, use this structure:
## Security Review — [Application Name]
### Date: YYYY-MM-DD
### Scope: [what was reviewed]
### Critical Findings
| # | Domain | Finding | Severity | Remediation |
|---|--------|---------|----------|-------------|
### Summary
- Total items reviewed: N
- PASS: N | FAIL: N | N/A: N | NEEDS-REVIEW: N
- Critical: N | High: N | Medium: N | Low: N
### Recommendations (prioritized)
1. ...
tools
Guidance for designing charts, graphs, plots, dashboards, and data visualizations that communicate clearly and persuade. Use when creating or reviewing a visualization, choosing a chart type, picking a color palette, decluttering a busy graphic, fixing misleading axes or proportions, building a dashboard, annotating a figure, or turning data into a presentation, report, or data-driven story. Grounded in the standard data-visualization literature (Knaflic, Tufte, Cleveland & McGill, Cairo, Wilke, Munzner, Few, Berinato). Covers chart selection, graphical perception and encoding, color and accessibility, decluttering, graphical integrity, dashboards, and narrative. Does NOT cover building data pipelines or ETL, statistical modeling or analysis methods, BI tool/vendor selection, or general UI/UX layout (see ux-design-principles). Tool-agnostic, with optional Python recipes.
development
Architect and implement production-grade microservices systems in TypeScript (NestJS) and Python (FastAPI), including resilience, observability, testing, deployment, and migration guidance.
development
--- name: databricks-genie-spaces-best-practices description: Design, configure, curate, govern, monitor, and integrate Databricks AI/BI Genie Spaces — the natural-language-to-SQL surface over Unity Catalog. Covers space scoping, general instructions, parameterized example SQL, SQL functions, trusted assets, JOIN configuration, knowledge store, certified queries, benchmarks, monitoring tab, feedback loops, the Genie Conversation API, governance via Unity Catalog (row filters, column masks, embed
tools
Implement OTP and passwordless authentication on AWS for TypeScript projects using Cognito CUSTOM_AUTH triggers (default) or a custom DynamoDB-backed flow, with SES (email) and SNS (SMS) delivery. Use when the user mentions OTP, one-time password, passwordless login, magic link, Cognito custom auth, DefineAuthChallenge, CreateAuthChallenge, VerifyAuthChallengeResponse, SES verification email, SNS SMS code, or MFA over email/SMS. Covers architecture decision (Cognito vs custom), Lambda trigger handlers, SES/SNS notifiers, DynamoDB schema with TTL, rate limiting, constant-time comparison, threat model (enumeration, replay, brute force), and aws-sdk-client-mock testing.