Critical Safety Rule: NEVER fill sensitive data (passwords, credit cards, SSNs, banking info) - always instruct user to fill these themselves.
This skill automates web form filling with safety controls and user approval at every critical step:
| Text input | forminput() | Read value back | | Email input | forminput() | Validate format + read back | | Tel input | forminput() | Read value back | | Textarea | forminput() | Read value back | | Select dropdown | forminput() | Read selected option | | Checkbox | forminput(value=true/false) | Read checked state |
Safely fills web forms in Chrome with user approval and verification at every step. Use when asked to "fill this form", "complete the form for me", "fill out registration", "submit this application", or when user needs form automation with safety controls. Works with Chrome browser tabs via MCP tools (tabs_context_mcp, read_page, form_input). Enforces permission workflows, field verification, and never fills sensitive data. Source: dawiddutoit/custom-claude.