feat: 新增 account 和 plan 目录

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 16:26:22 +08:00
parent 243a190124
commit 0cab33b16b
694 changed files with 161549 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{
"zh": {
"name": "打开浏览器",
"description": "启动浏览器或检查其状态返回当前状态信息是否打开、URL、标题、标签数。"
}
}

View File

@@ -0,0 +1,40 @@
---
name: browser-open
description: Launch browser or check its status. Returns current state (is_open, url, title, tab_count). If already running, returns status without restarting. Auto-handles everything - no need to call browser_status first.
system: true
handler: browser
tool-name: browser_open
category: Browser
---
# Browser Open
启动浏览器。
## Parameters
| 参数 | 类型 | 必填 | 说明 |
|-----|------|-----|------|
| visible | boolean | 否 | True=显示窗口, False=后台运行,默认 True |
| ask_user | boolean | 否 | 是否先询问用户偏好,默认 False |
## Notes
- 如果浏览器已在运行,直接返回当前状态,不会重复启动
- 服务重启后浏览器会关闭,调用此工具会自动重新启动
- 无需先调用 `browser_status`,本工具已包含状态检查
## Related Skills
- `browser-status`: 检查状态
- `browser-navigate`: 导航到页面
## 推荐
对于多步骤的浏览器任务,建议优先使用 `browser_task` 工具。它可以自动规划和执行复杂的浏览器操作,无需手动逐步调用各个工具。
示例:
```python
browser_task(task="打开百度搜索福建福州并截图")
```