con un clic
browser-core-efficient
// Use when working in the embedded browser and you want the cheapest reliable interaction loop.
// Use when working in the embedded browser and you want the cheapest reliable interaction loop.
Build a new holaOS app using @holaboss/app-builder-sdk (5 backend primitives + optional shadcn dashboard UI). The canonical path for vibe-coded apps — integration modules AND dashboard apps both live here.
Provision a production-ready teammate only after its stable responsibilities, prerequisites, and reusable operating guidance are understood.
Remove AI writing patterns from prose. Use when drafting, editing, or reviewing text to eliminate predictable AI tells.
Build the visual layer of a holaOS dashboard app — TanStack Start + @holaboss/ui + workspace tokens. Use when an app has SDK primitives wired (via app-builder-sdk) AND needs a `src/client/` UI surface. NOT for marketing pages, NOT for snapshot HTML reports.
This skill is for interface design — dashboards, admin panels, apps, tools, and interactive products. NOT for marketing design (landing pages, marketing sites, campaigns).
Use when validating or debugging a workflow in the embedded browser and you need a reproducible, evidence-first loop.
| name | browser-core-efficient |
| description | Use when working in the embedded browser and you want the cheapest reliable interaction loop. |
Use 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.