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

IIFE Wrapper

Related skills

More from oaustegard/claude-skills

Installs
37
GitHub Stars
120
First Seen
Jan 25, 2026