Add documentation in docs/examples/your-feature.md
Update README.md — add to examples and feature matrix
If it belongs to an existing skill category, update that skills/*/SKILL.md
If it's a new category, create a new skills/your-category/SKILL.md with YAML frontmatter
Documentation Template
# Feature Name
Brief description.
## What It Does
1. Step one
2. Step two
## Browser Console Script
Navigate to: x.com/relevant/page
Paste in DevTools console.
## Notes
- Important caveats
SKILL.md Frontmatter Template
---
name: your-skill-name
description: Third-person description of what this does and when to use it.
license: Apache-2.0
metadata:
author: nichxbt
version: "3.0"
---
Code Style
const over let, async/await over raw promises
Descriptive console.log with emojis for visibility
Comment complex selectors
Author credit: // by nichxbt
Use data-testid selectors when available (see selectors.md)