用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/holaboss-ai/holaOS --skill browser-core-efficient命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create short videos and motion clips from a text description using AI video generation.
Install workspace skills from curated sources or import open-source skills from GitHub.
Analyze your audience demographics, behavior, and preferences for targeted content.
基于 SOC 职业分类
正在显示 SKILL.md
| 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.