用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ddalcu/agent-orcha --skill web-pilot命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
CEO skill for Claude Code — manages organizations via Agent Orcha REST APIs
Documentation for creating and modifying ORCHA resources (agents, workflows, skills, functions, knowledge stores)
CEO skill for agent-based organization leadership — ticket triage, delegation, resource creation, and work review
基于 SOC 职业分类
正在显示 SKILL.md
| name | web-pilot |
| description | Browser automation — observe-act loop with refs |
| sandbox | true |
| Tool | Purpose |
|---|---|
sandbox_browser_observe | Text snapshot: URL, title, headings, textExcerpt, elements with refs |
sandbox_browser_navigate | Go to URL, wait for ready, return snapshot with textExcerpt |
sandbox_browser_click | Click by ref (e.g. "e3") or visible text |
sandbox_browser_type | Type into input by ref (e.g. "e5") |
sandbox_browser_content | Page as markdown (optional CSS selector) |
sandbox_browser_evaluate | Run JS, reports side effects |
sandbox_browser_screenshot | PNG screenshot (expensive, last resort) |
sandbox_web_search | Search DuckDuckGo for URLs |
click({ ref: "e3" }) or type({ ref: "e5", text: "hello" })Observe output lists elements like:
- button "Submit" [ref=e1]
- textbox [ref=e2] name=email placeholder="Enter email"
- link "Home" [ref=e3]
Use refs in click/type: { "ref": "e1" }. Refs update on each observe — always use latest.
{ selector: "main" } or { selector: ".repo-list" }) to avoid huge dumps.evaluate({ expression: "..." }) with JS that returns exactly the data you need (e.g. [...document.querySelectorAll('.repo')].map(...))sandbox_web_fetch is cheaper than navigating.{ "text": "Accept cookies" } (when ref unavailable)window.scrollBy(0, 500) then observe