Use when working in the embedded browser and you want the cheapest reliable interaction loop.
66
78%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./runtime/harnesses/src/embedded-skills/browser-core-efficient/SKILL.mdUse this skill when operating the workspace-embedded browser and efficiency matters.
browser_act directly with locator signals.browser_find.browser_get_state only for orientation or when the target is still unclear.wait_for on the action itself when possible.browser_act over index-based tools when text, label, role, selector, or ref can identify the target.browser_find before browser_get_state when you know what you want but not where it is.browser_click and browser_type only when you already have a stable index from a fresh state snapshot.browser_select_tab and browser_close_tab instead of spending extra calls re-orienting around tabs.browser_wait for explicit stabilization, especially for URL changes, DOM changes, and download completion.browser_get_state with compact detail.data-* attributes, hrefs, or hydration data rather than visible text, inspect that targeted page-local DOM source before concluding the fact is unavailable.wait_for over a separate follow-up wait call.interactive or domcontentloaded after lightweight transitions.download_started and download_completed for browser-triggered downloads instead of manual polling through state reads.browser_get_state detail=standard only when compact state is insufficient.include_page_text=true only when the page content itself is the task output.browser_evaluate for narrow read-only extraction when the required fact is likely present in page-local attributes or hydration data but not exposed cleanly through visible text.74c7b6f
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.