Agent Skills
› udecode/plate
› agent-browser-issue
agent-browser-issue
GitHub用于识别并报告可复用的浏览器自动化工具缺陷。当点击、下拉等常见操作受阻时,收集最小化复现步骤并在 GitHub 创建 Issue,以推动工具侧修复。
Trigger Scenarios
浏览器自动化因工具侧问题被阻断
发现可复用的点击或交互失败
Install
npx skills add udecode/plate --skill agent-browser-issue -g -y
SKILL.md
Frontmatter
{
"name": "agent-browser-issue",
"metadata": {
"skiller": {
"source": ".agents\/rules\/agent-browser-issue.mdc"
}
},
"description": "Open a concise GitHub follow-up for reusable browser-use limitations. Use when browser automation is blocked by a likely tool-side issue that is worth fixing separately, especially for clicks, dropdowns, file inputs, focus traps, or other repeatable agent\/browser failures.",
"argument-hint": "[browser block summary]",
"disable-model-invocation": true
}
Agent Browser Issue
Handle $ARGUMENTS.
Use this only for likely reusable agent/browser tooling bugs. Do not use it for:
- auth or SSO gates
- manual human gates
- product bugs on the site itself
- one-off flaky noise with no minimal repro
Collect
Capture only the minimum:
- page or URL
- action attempted
- exact block
- expected vs actual
- minimal repro
- screenshot only if it adds signal
Issue
Open a GitHub issue with:
- a short title focused on the browser/tool failure
- label
agent:browser - concise body
Body shape:
## URL
<url>
## Action
<what the agent tried>
## Block
<what failed>
## Expected
<what should have happened>
## Actual
<what happened instead>
## Repro
1. ...
2. ...
3. ...
After
- if the browser/tool failure exposes a user-action parity gap, load
agent-native-reviewerand note that gap in the issue - link the issue in the task caveat or handoff
- keep moving if the product task is still otherwise fixable
Version History
- af5e430 Current 2026-08-20 19:25


