From clawd-invaders
Launch Clawd Invaders, a retro Space Invaders browser game starring Clawd the pixel crab. Use this skill when the user types /invaders, asks to play the bug game, wants to play an arcade game, mentions Clawd Invaders, or asks for an easter egg.
How this skill is triggered — by the user, by Claude, or both
Slash command
/clawd-invaders:invadersThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Launch the pre-built Clawd Invaders game in the user's default browser.
Launch the pre-built Clawd Invaders game in the user's default browser.
Copy the game file to a temporary location using the plugin root path:
cp "${CLAUDE_SKILL_DIR}/game.html" /tmp/clawd-invaders.html 2>/dev/null || cp ~/.claude/skills/invaders/game.html /tmp/clawd-invaders.html
Open in the default browser using platform detection:
if [[ "$OSTYPE" == "darwin"* ]]; then
open /tmp/clawd-invaders.html
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
xdg-open /tmp/clawd-invaders.html
elif [[ "$OSTYPE" == "msys" ]] || [[ "$OSTYPE" == "cygwin" ]]; then
start /tmp/clawd-invaders.html
fi
Print a fun launch message: "Clawd Invaders launched! Defend the codebase from bugs! Arrow keys to move, Space to shoot."
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub avdm12/clawd-invaders --plugin clawd-invaders