From moto-race
This skill should be used when the user asks to "play moto race", "launch moto race", "open motorcycle racing", "run the moto-race plugin", "start the racing game", "打开摩托车游戏", "运行赛车游戏", "启动摩托竞赛", or when Claude should open the cyberpunk motorcycle racing game window from this plugin.
How this skill is triggered — by the user, by Claude, or both
Slash command
/moto-race:moto-raceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Open a native macOS window that runs a Three.js motorcycle racing game with optional
Open a native macOS window that runs a Three.js motorcycle racing game with optional live camera hand tracking. Race against 4 AI opponents on a neon-lit circuit track.
The plugin ships a local Swift WKWebView host via @cloudgeek/glimpse.
Running npm install in the scripts directory installs the dependency.
SCRIPTS_DIR="${CLAUDE_PLUGIN_ROOT}/scripts"
BINARY="$SCRIPTS_DIR/node_modules/@cloudgeek/glimpse/glimpse"
NEEDS_BUILD=0
if [ ! -x "$BINARY" ]; then
NEEDS_BUILD=1
else
GLIMPSE_DIR="$SCRIPTS_DIR/node_modules/@cloudgeek/glimpse"
for src in "$GLIMPSE_DIR"/glimpse.swift "$GLIMPSE_DIR"/Info.plist; do
[ "$src" -nt "$BINARY" ] && NEEDS_BUILD=1 && break
done
fi
if [ "$NEEDS_BUILD" -eq 1 ]; then
cd "$SCRIPTS_DIR" && npm install
fi
node "${CLAUDE_PLUGIN_ROOT}/scripts/moto-race.mjs"
Optional window size overrides:
node "${CLAUDE_PLUGIN_ROOT}/scripts/moto-race.mjs" --width 1280 --height 860 --title "Moto Race"
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub larchliu/0_0 --plugin moto-race