← スキル一覧に戻る

browsing-web
by Git-Fg
⭐ 1🍴 0📅 2026年1月18日
SKILL.md
name: browsing-web description: "Interactive browser automation using agent-browser. Use when navigating dynamic sites, authentication, clicking, typing, and complex state navigation. Do NOT use for simple read-only text extraction." allowed-tools: [Bash]
Browser Interaction Protocol
Core Loop (The Ref Pattern)
You interact with the browser using References (@refs) derived from snapshots, not CSS selectors.
- Navigate:
agent-browser open "url" - Snapshot:
agent-browser snapshot -i(Gets accessibility tree with@erefs) - Interact:
agent-browser click @e1(Uses ref from snapshot)
Critical Constraints
- Never Guess Selectors: You cannot guess
@e1. You MUST runsnapshotto see current refs. - Interactive Only: Always use
snapshot -ito filter non-interactive elements (saves tokens). - Stateful: The browser persists between commands. You do not need to re-open.
Common Patterns
Navigation & extraction
agent-browser open "https://google.com"
agent-browser snapshot -i
# Output shows: [ref=e4] button "Search"
agent-browser fill @e2 "Claude Code"
agent-browser click @e4
agent-browser wait --load networkidle
Visual Verification
Only if structure is confusing:
agent-browser screenshot page.png
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です