agentsclimarketplace

Website security

Skill paulgrape/skill-auditor/templates/website-security

Transport and HTTP-header security for a website — HTTPS/TLS, HSTS, Content Security Policy, X-Content-Type-Options, clickjacking protection, cookie attributes, and security.txt. Use when configuring server headers, TLS, cookies, or a disclosure policy.From its SKILL.md

Install
npx -y skills add paulgrape/skill-auditor --skill website-security

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.7 KB, 343 tokens by cl100k_base, as published. Nobody here has run it

Website security

Headers, transport, and policies that keep visitors safe. Curated from the Website Specification — Security (CC BY 4.0).

Required

  • Serve every page over HTTPS with TLS 1.2 or 1.3; redirect plain HTTP to HTTPS.
  • Send HSTS: Strict-Transport-Security: max-age=...; includeSubDomains.
  • X-Content-Type-Options: nosniff on responses.
  • Clickjacking protection via CSP frame-ancestors (X-Frame-Options as legacy fallback).
  • Cookies are Secure, HttpOnly where possible, with an explicit SameSite; use __Host- / __Secure- prefixes.

Recommended

  • Content Security Policy restricting script, style, image, and frame sources.
  • Referrer-Policy: strict-origin-when-cross-origin.
  • Permissions-Policy to turn off unused powerful features (camera, mic, geolocation).
  • Subresource Integrity (SRI) hashes on third-party scripts and styles.
  • /.well-known/security.txt telling researchers how to report vulnerabilities.
  • DNS CAA records restricting which CAs may issue certificates.

Example headers

Strict-Transport-Security: max-age=63072000; includeSubDomains
X-Content-Type-Options: nosniff
Content-Security-Policy: default-src 'self'; frame-ancestors 'none'
Referrer-Policy: strict-origin-when-cross-origin

Full item list and rationale: https://specification.website/checklist/

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.