Hand

AFK Hand — internal skill for controlling web games via CDP. Called internally by afk-play only. Never used in coach mode. Not meant for direct user invocation.

lilmgenius b860c1a 931 B Updated

File contents

Hand: Control Game

Internal skill. Called by afk-play only. Executes actions in the browser game.

Tools

mcp__chrome_devtools__press_key(key: "ArrowDown")   ← keyboard input
mcp__chrome_devtools__click(uid: "<element-uid>")   ← mouse click by UID
mcp__chrome_devtools__evaluate_script               ← run Hand Script from games/<game>.md

Rules

  • Always use Eye skill to read state BEFORE acting
  • ONE action at a time — observe result before next action
  • Use the Hand Script from games/<game>.md when available (more reliable than press_key)
  • After acting: call Eye again to verify state changed
  • On failure: try different approach, log error
  • NEVER used in coach mode — coach mode is read-only

lilmgenius/afk/tree/main/.cursor/skills/hand commit b860c1a0df

Frequently asked questions

npx skillmds@latest add lilmgenius/hand-2