page-langs
Installation
SKILL.md
page-langs
Detect all languages used on a webpage — declared and in the body text.
Node 22+ required. Uses playwright-cli for the browser pass and Google CLD3 (WASM)
for content-based detection.
Setup (one-time)
Install cld3-asm into the skill directory before first use:
if [[ -n "${CLAUDE_SKILL_DIR:-}" ]]; then
SKILL_DIR="${CLAUDE_SKILL_DIR}"
else
SKILL_DIR="$(find ~/.claude -path "*/page-langs" -type d 2>/dev/null | head -1)"
fi
npm install --prefix "$SKILL_DIR"