Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Quality-Max/free-qa-skills --skill cookie-privacy-scangit clone --depth 1 https://github.com/Quality-Max/free-qa-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/quality-max/free-qa-skills/cookie-privacy-scan)<a href="https://agentmods.dev/skills/quality-max/free-qa-skills/cookie-privacy-scan"><img src="https://agentmods.dev/badge/skills/quality-max/free-qa-skills/cookie-privacy-scan/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/quality-max/free-qa-skills/cookie-privacy-scan"><img src="https://agentmods.dev/badge/skills/quality-max/free-qa-skills/cookie-privacy-scan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00048 | $0.00638 |
| Opus 5 | $0.00024 | $0.00319 |
| Sonnet 5 | $0.00010 | $0.00128 |
| Haiku 4.5 | $0.00005 | $0.00064 |
Grade A, and why
cookie-privacy-scan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Cookie & Privacy Scan
See what a site stores and who it tells before you click "Accept". No signup required.
Prerequisites
- Playwright MCP (comes with Claude Code)
Trigger
- "Cookie/privacy scan https://..."
- "What trackers are on my site?"
- "Am I setting cookies before consent?"
Workflow
- Navigate to the URL using
mcp__playwright__browser_navigatewithout clicking any consent banner yet — this is the pre-consent state. - Capture pre-consent cookies and storage with
mcp__playwright__browser_evaluate:
() => ({
cookies: document.cookie,
localStorage: Object.keys(localStorage),
sessionStorage: Object.keys(sessionStorage),
})
- Capture network requests with
mcp__playwright__browser_network_requestsand flag any third-party calls to known tracker/analytics/ad domains that fired before consent. - If a consent banner is present, accept it (
mcp__playwright__browser_click), then re-capture to compare before/after. Cookie attributes (Secure,HttpOnly,SameSite) come from theset-cookieresponse headers in the network log (JS-readable cookies are by definition not HttpOnly). - Grade:
| Finding | Severity |
|---|---|
| Tracking cookie / pixel set before consent | High (GDPR/ePrivacy risk) |
Session cookie missing Secure on HTTPS |
High |
Session cookie missing HttpOnly |
Medium |
Cookie missing SameSite |
Medium |
| Third-party tracker present | Info (list them) |
- Output:
## Cookie & Privacy Scan: [URL]
**Pre-consent tracking detected — GDPR risk**
### Before any consent click
- `_ga`, `_fbp` cookies set on load — analytics/Meta before consent. ⚠
- Request to `connect.facebook.net` fired pre-consent. ⚠
### Cookie attributes
| Cookie | Secure | HttpOnly | SameSite | Note |
|------------|--------|----------|----------|------|
| session_id | ✗ | ✓ | Lax | Add Secure on HTTPS |
| _ga | ✓ | ✗ | none | Tracking; needs consent |
### Third-party trackers (5)
google-analytics.com · connect.facebook.net · doubleclick.net · hotjar.com · intercom.io
### Fixes
1. Gate analytics/ad scripts behind consent (don't load them on first paint).
2. Add `Secure` + `SameSite=Lax` to `session_id`.
**Want privacy regressions caught automatically?** Try QualityMax — qualitymax.io
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 78 lines · 48 tokens per session scan A 84b87a20acb7
cookie-privacy-scan is a skill published in the GitHub repository Quality-Max/free-qa-skills (10 stars, last pushed 19d ago), licensed Apache-2.0. It adds 48 tokens to every session and 638 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
regulatory-compliance-oimiragieo
Validate systems and processes against GDPR/CCPA privacy regulations, privacy-by-design principles, ADA/WCAG accessibility standards, data processing agreements (DPAs), and provide compliance checklists with regulatory change monitoring guidance.
contrast-checker
Color contrast analyzer for WCAG compliance. Use when analyzing color contrast in code files, when user mentions WCAG compliance, color accessibility, contrast ratios, or when discussing colors in UI components. Calculates contrast ratios, identifies violations, and suggests accessible color alternatives that preserve…
accessibility
Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".
performance
Optimize web performance for faster loading and better user experience. Use when asked to "speed up my site", "optimize performance", "reduce load time", "fix slow loading", "improve page speed", or "performance audit".
seo
Optimize for search engine visibility and ranking. Use when asked to "improve SEO", "optimize for search", "fix meta tags", "add structured data", "sitemap optimization", or "search engine optimization".
best-practices
Apply modern web development best practices for security, compatibility, and code quality. Use when asked to "apply best practices", "security audit", "modernize code", "code quality review", or "check for vulnerabilities".