A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
FAT Agent (Fix, Audit, Test) — a Claude Skill that automates post-launch website QA. Audits SEO, security, accessibility
A Claude plugin that acts as your post-launch QA engineer.
FAT Agent systematically audits deployed websites for SEO, performance, security, accessibility, and content issues — then walks you through fixing every one.
After you deploy a site, say "run FAT agent" and it will:
| Category | Automated? | What It Checks |
|---|---|---|
| 🌐 Availability & Response | ✅ | HTTP status, redirects, response headers, caching |
| 🔍 SEO Essentials | ✅ | Title, meta, headings, OG tags, structured data, sitemap, robots.txt |
| ⚡ Performance | ✅ | HTML size, render-blocking scripts, lazy loading, resource hints |
| 🔒 Security Headers | ✅ | HSTS, CSP, X-Frame-Options, Referrer-Policy, Permissions-Policy |
| ♿ Accessibility | Partial | Alt text, labels, landmarks, skip links + targeted user questions |
| 🧪 Functional Checks | 👤 User | Forms, navigation, mobile, 404 page, integrations |
| 📝 Content & Legal | Partial | Placeholder text, privacy policy, copyright year |
| 📊 Analytics & Tracking | ✅ | GA4, GTM, Facebook Pixel, Plausible, Hotjar, Fathom, Umami, Mixpanel, PostHog + 10 more |
claude plugins add https://github.com/spruikco/fat-agent-skill
This installs the FAT Agent plugin with the /fat-audit slash command.
git clone https://github.com/spruikco/fat-agent-skill ~/.claude/skills/fat-agent
Claude Code reads SKILL.md automatically and activates the skill when it detects trigger phrases.
Then in any conversation:
You: Run FAT agent on https://mysite.com
You: Audit my site
You: I just deployed — is everything working?
You: Post-launch check on https://example.com
You: /fat-audit https://example.com
plugins/fat-agent/skills/fat-agent/SKILL.md as a project file — this is the core instruction set Claude followsplugins/fat-agent/references/security-headers.mdplugins/fat-agent/references/seo-checklist.mdplugins/fat-agent/references/accessibility-guide.mdplugins/fat-agent/references/platform-fixes/*.md for your hosting platformplugins/fat-agent/references/framework-fixes/*.md for your tech stackNote: The Python scripts (
analyse-html.py,calculate-score.py) are designed for Claude Code, which can execute them directly. Claude.ai performs the same checks conversationally usingweb_fetch.
Fix suggestions are loaded on-demand from the references/platform-fixes/ and references/framework-fixes/ directories based on what you told it in Phase 0. A Next.js site on Vercel gets different fix code than a WordPress site on Apache.
FAT Agent is platform-agnostic. It audits the live URL regardless of where it's hosted:
fat-agent-skill/ # Marketplace root
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
├── plugins/
│ └── fat-agent/ # The plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── skills/
│ │ └── fat-agent/
│ │ └── SKILL.md # Core skill instructions
│ ├── commands/
│ │ └── fat-audit.md # /fat-audit slash command
│ ├── scripts/
│ │ ├── analyse-html.py # HTML analysis helper
│ │ ├── calculate-score.py # Scoring calculator (SEO, Security, A11y, Perf, FAT)
│ │ ├── generate-badge.py # SVG badge generator for READMEs
│ │ ├── track-history.py # Historical audit tracking
│ │ └── test_fat_agent.py # Full test suite (285 tests)
│ ├── references/
│ │ ├── security-headers.md # Security header reference
│ │ ├── seo-checklist.md # Extended SEO criteria
│ │ ├── accessibility-guide.md # WCAG 2.1 quick reference
│ │ ├── performance-budgets.md # Performance budget configuration
│ │ ├── ci-cd-integration.md # CI/CD integration examples
│ │ ├── platform-fixes/ # Hosting platform config guides
│ │ │ ├── netlify.md
│ │ │ ├── vercel.md
│ │ │ ├── cloudflare-pages.md
│ │ │ ├── apache.md
│ │ │ ├── nginx.md
│ │ │ ├── wordpress.md
│ │ │ └── aws.md
│ │ └── framework-fixes/ # Framework-specific fix patterns
│ │ ├── nextjs.md
│ │ ├── astro.md
│ │ ├── sveltekit.md
│ │ ├── nuxt.md
│ │ ├── gatsby.md
│ │ ├── wordpress.md
│ │ └── static-html.md
│ ├── evals/
│ │ └── evals.json # Test cases for skill validation
│ ├── assets/
│ │ ├── fat-agent-badge-icon.png
│ │ └── social-preview.png
│ └── README.md # Plugin documentation
├── fat-badge.svg # Generated FAT score badge
├── README.md # This file
├── CLAUDE.md # Project conventions for Claude Code
├── LICENSE # MIT License
├── .gitignore
└── .github/
└── LLM-BRIEF.md # Project brief for LLM continuation
User: Run FAT agent on https://mysite.com
Claude: Ready to run a FAT audit! I just need a few details...
User: I just deployed. Is everything working?
Claude: Let me run a FAT audit on your site to check...
User: Can you check the SEO on my new landing page?
Claude: I'll focus the FAT audit on SEO — fetching your page now...
User: /fat-audit https://mysite.com
Claude: Running FAT Agent audit on https://mysite.com...
Issues are prioritised with clear labels:
| Priority | Label | Meaning |
|---|---|---|
| 🔴 P0 | Critical | Site is broken, inaccessible, or insecure |
| 🟠 P1 | High | Significant SEO, performance, or UX impact |
| 🟡 P2 | Medium | Best practice violations, minor issues |
| 🟢 P3 | Low | Nice-to-haves, polish items |
Each finding includes:
FAT Agent generates scores across four dimensions:
Generate shields.io-style SVG badges from your audit scores:
# Overall FAT badge (grade + score)
python plugins/fat-agent/scripts/analyse-html.py page.html | python plugins/fat-agent/scripts/calculate-score.py | python plugins/fat-agent/scripts/generate-badge.py --output badge.svg
# Category badges
python plugins/fat-agent/scripts/generate-badge.py scores.json --category seo --output seo-badge.svg
python plugins/fat-agent/scripts/generate-badge.py scores.json --category security --output security-badge.svg
python plugins/fat-agent/scripts/generate-badge.py scores.json --category accessibility --output a11y-badge.svg
python plugins/fat-agent/scripts/generate-badge.py scores.json --category performance --output perf-badge.svg
# Flat-square style
python plugins/fat-agent/scripts/generate-badge.py scores.json --style flat-square --output badge.svg
Then embed in your README:

Edit plugins/fat-agent/skills/fat-agent/SKILL.md to add new audit sections. Follow the existing pattern:
Drop additional .md files in plugins/fat-agent/references/ and reference them from SKILL.md.
PRs welcome! All roadmap items are now implemented:
.fat-budget.json + --budget flag)track-history.py — save, show, diff, trend)Built by Spruik Co — Digital Marketing & SEO Consultancy.
Designed as a Claude Agent Skill for post-launch quality assurance.
MIT — see LICENSE for details.
npx CLI installing 100+ agents, commands, hooks, and integrations in one command
干净、强大、属于你的 AI Agent 平台 --AI agents, without the clutter.
Native macOS app to monitor Claude AI usage limits and watch your coding sessions live
Pocket Flow: Codebase to Tutorial