creating-bookmarklets

Installation
SKILL.md

Bookmarklet Creation

Critical Requirements

Comment Style - ABSOLUTE

Use ONLY /* */ comments. NEVER use // comments.

Bookmark execution contexts fail with // style. Every comment must use block format.

/* ✓ Correct */
const x = 5; /* inline */

/* ✗ Wrong - breaks bookmarklets */
// const x = 5;
const y = 10; // inline
Installs
42
GitHub Stars
127
First Seen
Jan 25, 2026
creating-bookmarklets — oaustegard/claude-skills