Skip to main content

organize-tabs

Analyze open tabs, group related ones by topic, close duplicates, and clean up tab clutter. Use when the user asks to organize, clean up, sort, or manage their tabs.

跳到安装

来源信息

仓库
browseros-ai/BrowserOS-agent
最近来源活动
2026年3月11日 20:05
检测到的 SKILL.md 语言
英语
星标
51
分支
40

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
organize-tabs
description
Analyze open tabs, group related ones by topic, close duplicates, and clean up tab clutter. Use when the user asks to organize, clean up, sort, or manage their tabs.
metadata
{"display-name":"Organize Tabs","enabled":"true","version":"1.0"}
# Organize Tabs ## When to Use Activate when the user asks to organize tabs, clean up tab clutter, group related tabs, close duplicates, or manage their open browser tabs. ## Steps 1. **List all open tabs** using `list_pages` to get the full inventory of open pages with their titles and URLs. 2. **Analyze and categorize.** Group tabs by: - **Domain** — Same website tabs together - **Topic** — Related content across domains (e.g., all "travel planning" tabs) - **Activity** — Shopping, research, social media, work, entertainment 3. **Identify issues:** - **Duplicates** — Same URL open in multiple tabs - **Dead tabs** — Error pages, "page not found", crashed tabs - **Stale tabs** — Tabs that are likely no longer needed 4. **Present a plan to the user:** ``` ## Tab Analysis **Total tabs:** [N] ### Groups Found - Work: [list of tabs] - Research: [list of tabs] - Shopping: [list of tabs] - Uncategorized: [list of tabs] ### Issues - Duplicates: [N] tabs (will close extras) - Dead/Error pages: [N] tabs (will close) ### Proposed Actions 1. Group [N] tabs into [M] tab groups 2. Close [N] duplicate tabs 3. Close [N] dead tabs ``` 5. **Execute with user confirmation:** - Use `group_tabs` to create named tab groups for each category - Use `close_page` to close duplicates (keep the first instance) - Use `close_page` to close dead/error tabs 6. **Offer to bookmark** stale tabs before closing using `create_bookmark`. ## Tips - Always ask before closing tabs — users may have unsaved work. - Keep at least one tab open at all times. - For duplicate detection, compare URLs after removing query parameters and fragments. - If the user has 50+ tabs, prioritize grouping over individual analysis.
在 GitHub 查看