Agent Skills for coding agents. Each folder under skills/ is self-contained: a SKILL.md holding the instructions, plus any references it needs.
| Skill | What it does |
|---|---|
| website-tracking-scanner | Scans a website codebase and inventories its tracking, analytics, ad pixel, and consent stack with file:line evidence for every claim. Covers 200+ vendors, including the regional stacks (China, Japan, Korea, Russia/CIS, DACH, France, Turkey, India, Latin America, Southeast Asia) that Western-centric scanners miss. |
Copy a skill folder into your agent's skills directory:
# project-scoped
cp -R skills/website-tracking-scanner /path/to/project/.claude/skills/
# user-scoped, available in every project
cp -R skills/website-tracking-scanner ~/.claude/skills/An agent loads only a skill's name and description at startup, and reads the full instructions when a task matches. Installed skills cost close to nothing until they are actually used.
skills/
└── <skill-name>/
├── SKILL.md # required — YAML frontmatter (name, description) + instructions
├── references/ # optional — documentation loaded on demand
├── scripts/ # optional — executable helpers
└── assets/ # optional — templates, data files
The name in the frontmatter must match the folder name: lowercase letters, digits, and single hyphens, 64 characters or fewer.
MIT — see LICENSE.