一键导入
onboarding
Complete new account onboarding flows: multi-step registration, email verification, profile setup, and preference configuration on authenticated pages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Complete new account onboarding flows: multi-step registration, email verification, profile setup, and preference configuration on authenticated pages.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Compare two pages or browser views side by side: staging vs production, mobile vs desktop, or before vs after changes. Outputs structured diffs of content, forms, and links.
Navigate multi-step flows on authenticated pages: follow menu paths, click through breadcrumbs, handle SPA routing, wait for page loads, and backtrack safely. Also covers direct URL navigation with the navigate_to_url tool.
Use when starting any Brijio session — establishes how to discover and use skills, which tools are available, and when to invoke each skill before any browser interaction.
Complete forms on authenticated pages: detect field types, handle multi-step forms, fill inputs, select options, and submit safely.
Audit web pages for accessibility issues: missing alt text, unlabeled controls, heading hierarchy, ARIA landmarks, and color contrast — on authenticated pages that automated scanners can't reach.
Extract structured data from authenticated pages: tables, lists, paginated content, and multi-page scraping via the user's real browser session.
| name | onboarding |
| description | Complete new account onboarding flows: multi-step registration, email verification, profile setup, and preference configuration on authenticated pages. |
Guide users through multi-step account creation and onboarding flows on web applications. Handles signup forms, email verification, profile completion, and preference setup — the full journey from landing on a signup page to a fully configured account.
list_browsers → Confirm browser connected
If not already on the signup page, use the navigation skill to get there. Look for links like:
1. read_current_page → Get signup form
2. fill_input → Name, email, username fields
3. set_checked → Agreement checkboxes, newsletter opt-ins
4. ⚠️ Skip password fields — they return browser_error
5. Ask user for password or let them fill it manually
After submitting the registration form:
read_current_page to see the verified accountfill_input the verification code fieldMost platforms show a profile completion wizard after verification:
1. read_current_page → Get profile form
2. fill_input → Bio, location, website fields
3. select_options → Industry, role, experience dropdowns
4. set_checked → Notification preferences, interest tags
5. click_element(kind: "action") → "Continue" / "Next"
6. read_current_page → Next profile step
Handle each step of the wizard, re-reading the page after each navigation.
After the basic profile, there may be preference screens:
Fill these based on the user's instructions. If the user hasn't specified preferences, present the options and ask.
Onboarding flows often include optional steps ("Connect your calendar", "Invite teammates", "Upload a photo"). These usually have "Skip" or "Do later" actions. If the user doesn't want to complete optional steps:
click_element(kind: "action", id: "a_skip") → Skip optional step
After all onboarding steps, read_current_page should show the main dashboard
or home page. Confirm with the user that onboarding is complete.
Step 1: Name + Username
Step 2: Password (user fills manually)
Step 3: Phone verification (user handles)
Step 4: Terms agreement
→ Dashboard
Step 1: Work email
Step 2: Company name + team size
Step 3: Invite teammates (optional — skip)
Step 4: Choose plan
Step 5: Configure preferences
→ Dashboard
Step 1: Name + email + password (user fills password)
Step 2: Email verification
Step 3: Profile photo + bio
Step 4: Follow suggestions / interests
Step 5: Notification preferences
→ Feed / Home
Registration forms always include password fields (often two: password +
confirm password). Brijio returns browser_error for these. Skip
them and let the user fill them manually. This is a security feature, not a
bug.
Some signup flows include CAPTCHA challenges. Brijio cannot solve these. Ask the user to complete the CAPTCHA manually, then continue with the rest of the form.
Verification codes expire (typically 5-15 minutes). If the user hasn't checked their email yet, don't fill the code field until they provide the code. If the code expires, look for a "Resend" action to get a new one.
Some platforms don't show all onboarding steps at once. After completing one step, the next may appear on a subsequent visit. Check if the page shows "Complete your profile" or similar prompts.
Some platforms generate a temporary password and send it via email. If the signup form includes a "Show password" or "Copy password" action, the user should handle this — don't attempt to read or fill generated passwords.
Onboarding forms mix required and optional fields. Required fields will have validation that prevents proceeding without them. Optional fields can be skipped. When in doubt, present the fields to the user and ask which to fill.