Install
$ agentstack add skill-bettyguo-browser-skills-fill-multi-step-form ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Fill Multi-Step Form
When to invoke
The page has a form spread across multiple steps (Typeform, Calendly, hotel checkout, multi-page job applications, etc.). The agent has the values to fill in vars keyed by either field-name, field-id, or label text.
The matcher runs this skill when the DOM has a ` plus any step-indicator marker. Without step-indicators, the simpler single-step form pattern (fill` primitive calls authored by the agent directly) usually suffices.
Recipe
- waitfordom_ready timeout=5s
- waitforselector selector="form, [role='form']" state=visible timeout=5s
- fill selector="input[name='name'], input[id*='name' i][type='text']" value="$vars.name"
- fill selector="input[type='email'], input[name*='email' i]" value="$vars.email"
- click selector="button:has-text('Next'), button:has-text('Continue'), button[type='submit']" timeout=2s
- wait extra=400ms
Success criteria
- assert novisibleelement selector="[role='alert'][aria-invalid='true']"
- assert stepindicatoradvanced
Notes
The recipe above is the minimum-viable scaffolding. Real forms vary widely; agents are expected to compose fill primitives directly when the field set is fully known up front. This skill is most useful when:
- The field set is partially unknown until later steps render
- Validation errors must be detected and recovered (handled by the
agent on failed return)
When NOT to use
- Login forms — use
login-flow. - Forms inside a captcha-protected flow —
detect-captchafirst.
Known failures
- Hidden fields with same name as visible fields: the selector
picks the wrong one. Workaround: use an id selector instead.
- Steps that conditionally show fields based on earlier answers:
v0.1 doesn't handle dynamic form structure. Agent must invoke the skill once per step.
- Drag-and-drop fields, signature widgets: out of scope.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: bettyguo
- Source: bettyguo/browser-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.