<< All versions
Skill v1.0.1
currentLLM-judged scan98/100browseros-ai/browseros-agent/fill-form
1 files
──Details
PublishedJune 26, 2026 at 08:01 PM
Content Hashsha256:9c7b84d8a10426ae...
Git SHAe886782210d1
Bump Typepatch
──Files
Files (1 file, 2.2 KB)
SKILL.md2.2 KBactive
SKILL.md · 51 lines · 2.2 KB
version: "1.0.1" name: fill-form description: Intelligently fill web forms using provided data — handles text fields, dropdowns, checkboxes, radio buttons, and multi-step forms. Use when the user asks to fill out, complete, or submit a form. metadata: display-name: Fill Form enabled: "true" version: "1.0"
Fill Form
When to Use
Activate when the user asks to fill out a form, complete an application, enter data into fields, or submit information on a web page.
Steps
- Collect the data to fill. Ask the user for the information if not already provided. Organize it as key-value pairs.
- Take a snapshot using
take_snapshotto see the form fields and understand the layout.
- Map data to fields. Match the user's data keys to form field labels. Handle common variations:
- "Name" may map to "Full Name", "Your Name", or separate "First Name" + "Last Name" fields
- "Phone" may map to "Phone Number", "Mobile", "Tel"
- "Address" may need to split into Street, City, State, Zip
- Fill fields in order. For each field:
- Text inputs: Use
fillwith the field selector and value - Dropdowns/selects: Use
select_optionwith the appropriate value - Checkboxes: Use
checkto toggle on/off - Radio buttons: Use
clickon the correct option - Date pickers: Try
fillfirst; if that fails, interact with the date picker UI usingclick - File uploads: Use
upload_filefor attachment fields
- Handle multi-step forms. After filling visible fields:
- Look for "Next", "Continue", or "Step 2" buttons
- Use
clickto advance - Take a new snapshot to see the next step's fields
- Repeat the fill process
- Review before submission. Take a final
take_snapshotand present the filled form to the user for confirmation before clicking Submit.
Tips
- Fill fields top-to-bottom, left-to-right to match natural tab order.
- For auto-complete fields (like address), type slowly and wait for suggestions to appear, then select.
- If a field has validation errors after filling, read the error message and adjust the value.
- Never submit payment forms without explicit user confirmation.
- For CAPTCHA fields, inform the user they need to complete it manually.