ClickMap
/install clickmap
ClickMap
Make flaky web automation stable: save named points once, then click/type by name every time.
Why people use this
- Stops brittle selector/DOM failures in UI automation flows
- Reuses human-readable names instead of random coordinates
- Great for repeat tasks: click target → type text → submit
Resources
- Extension folder:
assets/chrome-extension/ - Local bridge:
scripts/bridge-server.js - Optional launcher:
scripts/start-bridge.cmd - Autostart installer:
scripts/install-autostart.ps1 - Action runner:
scripts/clickmap-actions.ps1 - Data file:
data/pois.json
Capture flow (user)
- Load unpacked extension from
assets/chrome-extension. - Start bridge (
node scripts/bridge-server.jsorstart-bridge.cmd).- Optional:
powershell -ExecutionPolicy Bypass -File scripts/install-autostart.ps1 -RunNowto keep bridge auto-running after reload/login.
- Optional:
- Open target page (example:
https://suno.com/create). - Toggle marking ON from popup.
- Hover mouse at exact pixel and press P to add point.
- Native prompt opens: enter POI name and save.
- Press D while hovering near a point to delete nearest saved POI.
- Bright pink dots show saved points on that page.
POIs auto-sync to bridge when possible. Use popup Sync POIs if needed.
Agent action commands (no desktop-control)
Always use the ClickMap action runner for clicks/types:
# List points
powershell -ExecutionPolicy Bypass -File "$HOME/.openclaw/workspace/skills/clickmap/scripts/clickmap-actions.ps1" -Action list
# Click saved point exactly (screen coords)
powershell -ExecutionPolicy Bypass -File "$HOME/.openclaw/workspace/skills/clickmap/scripts/clickmap-actions.ps1" -Action click -PoiName "suno_com.LyricsBox"
# Type text into focused field (paste mode by default)
powershell -ExecutionPolicy Bypass -File "$HOME/.openclaw/workspace/skills/clickmap/scripts/clickmap-actions.ps1" -Action type -Text "hello world" -ClearFirst
# Click then type in one call
powershell -ExecutionPolicy Bypass -File "$HOME/.openclaw/workspace/skills/clickmap/scripts/clickmap-actions.ps1" -Action click-type -PoiName "suno_com.songName" -Text "Still Learning My Name (Remix)" -ClearFirst
Notes
- Best results come from POIs that include
coords.screen(new captures do this automatically). - If an old POI misses screen coords, just re-save it once.
- Use clear names (example:
suno_com.StylesBox) so automations stay readable. - The bridge runs locally on your machine (localhost only).
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install clickmap - After installation, invoke the skill by name or use
/clickmap - Provide required inputs per the skill's parameter spec and get structured output
What is ClickMap?
Chrome UI automation skill for saving named on-screen targets and reusing them with reliable click/type actions. Use when browser automation is flaky, select... It is an AI Agent Skill for Claude Code / OpenClaw, with 407 downloads so far.
How do I install ClickMap?
Run "/install clickmap" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is ClickMap free?
Yes, ClickMap is completely free (open-source). You can download, install and use it at no cost.
Which platforms does ClickMap support?
ClickMap is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created ClickMap?
It is built and maintained by jayton123456789-hub (@jayton123456789-hub); the current version is v1.0.2.