ソース情報
- リポジトリ
- ddalcu/agent-orcha
- ソースの最終更新活動
- 2026年3月1日 22:06
- 検出された SKILL.md の言語
- 英語
- スター
- 20
- フォーク
- 5
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/ddalcu/agent-orcha --skill web-pilotコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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