Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

computer-use-playbook计算机使用手册

Agent Skill

computer-use-playbook 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

594

周安装

25

GitHub Stars

34

下载量

208
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:computer-use-playbook(计算机使用手册)
来源仓库:https://github.com/autobyteus/autobyteus-skills
仓库路径:skills/computer-use-playbook
安装命令:
npx skills add https://github.com/autobyteus/autobyteus-skills --skill computer-use-playbook
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/autobyteus/autobyteus-skills --skill computer-use-playbook

简介

computer-use-playbook 提供端到端的计算机自动化操作指南,覆盖浏览器与桌面环境。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中执行确定性优先的自动化任务序列。
  • 内置 lesson-lock 模式确保遵循已有教程,避免在未验证情况下尝试新方法。
  • 安装前请确认是否控制浏览器标签页、操作系统进程或访问受保护的用户界面。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Computer Use Playbook

Overview

Use this skill for end-to-end computer automation across browser and desktop surfaces. Browser use is a major track, but not the only one. Prefer deterministic methods first, then escalate to visual/native automation only when required. For browser MCP workflows, treat tab_id as a required handle for all stateful actions.

Execution Mode (Default: Lesson-Lock)

When a matching topic already exists under references/learnings/<topic-slug>/lessons.md, run in lesson-lock mode.

  • Execute the lesson checklist as written before trying any novel approach.
  • Do not create a new topic slug when an existing topic clearly matches.
  • Do not publish until all pre-publish lesson gates pass.
  • If a lesson step fails, try only fallbacks documented in the same lessons.md first.
  • Use experience-log.md only to fill missing detail, not to override lesson rules.
  • If documented lesson paths fail and the task is not human-gated, run bounded self-learning attempts, then codify the winning pattern.

Precedence Ladder (No Ambiguity)

Always follow this order:

  1. Reuse existing lessons.md for the resolved topic slug.
  2. If a lesson step fails, use only fallbacks already documented in that same lessons.md.
  3. If no documented fallback works and no human gate is present, perform bounded self-learning to discover a reliable path.
  4. Once a reliable path is found, update lessons.md and experience-log.md so the next run is mechanical.
  5. Request human intervention only for login/2FA/CAPTCHA/security/policy gates or true hard blocks.

Playbook Structure

  1. Browser use (primary for web tasks): browser MCP tools, DOM snapshots, scripts, screenshots.
  2. Filesystem use: shell-native operations for deterministic file/process work.
  3. Native desktop use: coordinate and window automation only when DOM/shell are insufficient.
  4. Human-in-the-loop checkpoints: login, CAPTCHA, security prompts, or policy-gated steps.

Decision Order

  1. Identify the active surface: browser page, filesystem/process, or native desktop UI.
  2. For browser pages, use browser MCP tools first and keep a strict tab_id contract.
  3. For filesystem/process work, use shell/system tools first (rg, ls, find, etc.).
  4. Escalate to vision or native UI automation only when deterministic methods are insufficient.
  5. If blocked by login, CAPTCHA, or security gates, switch to human-in-the-loop flow.
  6. Verify each critical step with state checks plus screenshot evidence.

Browser Automation (Major Track)

Use browser tools + DOM-first for browser flows. Avoid jumping to native desktop clicks while the target is still reachable by browser tools.

Preferred sequence:

  1. open_tab and capture returned tab_id.
  2. navigate_to(tab_id, url) for explicit page transitions.
  3. dom_snapshot(tab_id,...) or run_script(tab_id,...) to identify target.
  4. run_script(tab_id,...) action (click/type/submit).
  5. read_page(tab_id,...) / run_script(tab_id,...) to verify URL/title/content.
  6. screenshot(tab_id,...) as evidence.

Session behavior guidance:

  • always pass tab_id for navigate_to, read_page, screenshot, dom_snapshot, run_script, and close_tab.
  • never rely on implicit active-tab behavior.
  • if a click opens a new tab/window, call list_tabs, detect the new tab_id, and continue explicitly on that tab_id.
  • keep a local map of purpose -> tab_id when handling multiple tabs.

Escalation triggers:

  • dynamic overlays not stable via selectors,
  • canvas/rendered controls,
  • consent dialogs where selector path is inconsistent,
  • native picker launched from browser (file upload dialog).

Do not overuse fallback:

  • if a browser tool can do it, stay in browser tools.
  • use native automation only for cross-app boundaries (OS dialogs, non-DOM UI).

File Explorer and Filesystem Automation

Prefer shell-native methods before GUI clicking.

Use shell when possible:

  • search files: rg --files, find
  • move/copy/rename: mv, cp, mkdir
  • inspect metadata: ls -la, stat

Use native UI only when the workflow is GUI-only:

  • OS file picker from browser/app,
  • drag-drop interactions not scriptable via API,
  • app-specific explorer panes.

Native UI Automation

Use native UI automation for interactions outside application DOM/API.

Typical tools:

  • xdotool for key/click/type,
  • xprop / xwininfo for window targeting.

Guidelines:

  • ensure window focus before typing,
  • prefer keyboard-driven deterministic paths,
  • keep retries bounded and observable,
  • re-check application state after each action.

Human-in-the-loop rules

Pause and ask for user intervention when blocked by:

  • login/2FA challenges,
  • CAPTCHA or anti-bot checkpoints,
  • legal/security confirmation screens that require explicit human intent.

When waiting for user action:

  1. explain exactly what the user must do and where.
  2. issue an audible notification using speak so the user notices immediately.
  3. wait, then re-check state (url, title, element visibility, screenshot) before continuing.

Special Cases

Consent dialogs

  • DOM-first click (Accept all/Reject all/localized variants).
  • if selector fails but button is visible, use coordinate/native fallback.
  • confirm modal is not visible and main interaction path works.

CAPTCHA / anti-bot challenges

  • do not attempt bypass logic.
  • capture evidence and report blocked state clearly.
  • require human-in-the-loop completion.
  • notify user with speak when intervention is required.

Login and account security gates

  • try normal DOM steps first for username/password field fill and submit.
  • if SSO, passkey, device approval, or 2FA requires human action, pause and request user action.
  • after user confirms completion, re-snapshot and continue from verified page state.

File uploads

  • use DOM file input assignment if available.
  • if native picker opens, switch to native UI automation.
  • verify upload appears in page/app state.

Verification Standard

Every important step should end with both:

  1. state evidence (URL/title/content/element state), and
  2. visual evidence (screenshot path).

If blocked, report:

  • attempted method,
  • blocker reason,
  • evidence collected,
  • next safe fallback.

Learning Library Structure

Use references/learnings/ as the canonical knowledge base.

  • references/learnings/index.md: topic registry and folder convention.
  • references/learnings/general/: cross-task fallback logs.
  • references/learnings/<topic-slug>/: topic-specific lessons and experience log.

Known canonical topic slugs:

  • x-posting (X / Twitter / Expost publishing)
  • linkedin-posting (LinkedIn posting/comments)
  • google-flow
  • xiaohongshu-posting

Topic folder convention:

  • lessons.md for stable workflow rules.
  • experience-log.md for incremental run learnings.

Continuous Learning Loop (Required)

Treat each real run as training data for future runs.

Priority contract:

  • lessons.md is the source of truth for execution.
  • experience-log.md is supporting evidence used to refine or extend lessons.
  • If lesson and experience conflict, follow lessons.md and then update logs/lessons after the run.

Before starting similar work:

  1. Load references/learnings/index.md.
  2. Resolve the task to a canonical topic slug:

- X/Twitter/Expost -> x-posting - LinkedIn/linkedin.com -> linkedin-posting - Google Flow/labs.google/fx/tools/flow -> google-flow - Xiaohongshu -> xiaohongshu-posting

  1. If the canonical topic exists, use it directly and do not create a variant slug.
  2. Load topic lessons.md first when present:

- references/learnings/<topic-slug>/lessons.md

  1. Load topic experience-log.md second when present:

- references/learnings/<topic-slug>/experience-log.md

  1. Load references/learnings/general/experience-log.md only as fallback context when topic files are missing or incomplete.
  2. If no topic folder exists, create it with lessons.md and experience-log.md, then run bounded self-learning to establish initial reliable lessons.

Before execution:

  1. Extract an ordered run checklist from topic lessons.md with step IDs.
  2. Execute step-by-step and mark each step pass/fail using state evidence.
  3. For publish flows, allow one publish action only after all pre-publish gates are passed.
  4. Use experience logs only to fill gaps not covered by lessons.

During execution:

  1. Capture failure signal and the exact checklist step where it appears.
  2. If blocked, apply only documented lesson fallback paths before any new approach.
  3. Keep one-action-at-a-time execution where UI state is fragile.
  4. If no documented fallback works and the issue is not human-gated, run bounded self-learning:

- try at most 2-3 alternative deterministic paths, - verify each attempt with explicit state evidence, - stop once one reliable path is found.

  1. If blocked by login/2FA/CAPTCHA/security/policy gates, pause and request human intervention with evidence.

After completion (or meaningful failure):

  1. Append a short run note to references/learnings/<topic-slug>/experience-log.md.
  2. Include: date, context, failure signal, root cause, fix pattern, reusable rule.
  3. If a new reliable rule or fallback was discovered, promote it into topic lessons.md immediately.
  4. Keep entries concise and deduplicated by updating prior rules instead of adding noisy repeats.

References

Load references/computer-use-techniques.md for command snippets and fallback templates. Load references/learnings/index.md to select the right topic folder. Load topic references/learnings/<topic-slug>/lessons.md first. Load topic references/learnings/<topic-slug>/experience-log.md second. Load references/learnings/general/experience-log.md only as fallback for cross-task patterns. Load references/learnings/x-posting/lessons.md for all X/Twitter/Expost publishing. Load references/learnings/linkedin-posting/lessons.md for all LinkedIn publishing. Load references/learnings/google-flow/lessons.md when automating Google Flow video creation. Load references/learnings/google-flow/experience-log.md after lessons for incremental learnings.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.5%
按下载量换算76

Claude

26.59%
按下载量换算55

Cursor

19.26%
按下载量换算40

Gemini CLI

7.89%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills