AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Fill Multi Step Form

skill-bettyguo-browser-skills-fill-multi-step-form · by bettyguo

Fills a multi-step form (stepper wizard) by routing labeled fields to values from `vars`, clicking "Next" between steps, and submitting at the end. Pairs with the `searchable-dropdown` and `date-picker-widget` skills for compound widgets.

No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-bettyguo-browser-skills-fill-multi-step-form

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-bettyguo-browser-skills-fill-multi-step-form)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Fill Multi Step Form? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. waitfordom_ready timeout=5s
  2. waitforselector selector="form, [role='form']" state=visible timeout=5s
  3. fill selector="input[name='name'], input[id*='name' i][type='text']" value="$vars.name"
  4. fill selector="input[type='email'], input[name*='email' i]" value="$vars.email"
  5. click selector="button:has-text('Next'), button:has-text('Continue'), button[type='submit']" timeout=2s
  6. 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-captcha first.

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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.