Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计提醒

bookmark-organize书签组织

Agent Skill

bookmark-organize 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,097

周安装

84

GitHub Stars

公开资料未说明

下载量

679
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bookmark-organize(书签组织)
来源仓库:https://github.com/xiaoshidefeng/bookmark-organize
安装命令:
openclaw skills install bookmark-organize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install bookmark-organize

简介

通过 OpenClaw 桥接 Chrome 书签进行组织与批量管理。

  • 支持预览、确认、撤销等安全操作,降低误删风险。
  • 适合定期整理收藏夹或迁移书签到新设备时使用。
  • 依赖本地 Chrome 执行器,需确保浏览器进程可用。
  • 建议查看源码了解对扩展权限的具体要求。bookmark-organize 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
bookmark-organize
description
Organize Chrome bookmarks through OpenClaw with preview, explicit confirmation, apply, undo, and a local Chrome executor bridge. Use for conservative Chrome bookmark cleanup and folder organization.
version
0.1.0
license
MIT
homepage
https://github.com/xiaoshidefeng/bookmark-organize-skill
category
productivity
emoji
🔖
usage
/skill bookmark-organize [natural-language bookmark organization request]
user-invocable
true
requires
metadata
openclaw
emoji
🔖
os

ClawHub Package Notes

This ClawHub build is self-contained. The installed skill folder includes:

  • bridges/ for the local bridge server and preflight scripts
  • apps/chrome-executor-extension/ for the bundled unpacked Chrome executor extension
  • package.json with the local bridge dependency

When this skill says <skill-folder>, use the installed ClawHub skill folder containing this SKILL.md file.

Do not symlink or modify OpenClaw configuration during setup. ClawHub/OpenClaw owns skill installation. The only manual browser step is loading the bundled Chrome executor extension once from the installed skill folder.

Bookmark Organize

这是一个“计划优先、显式确认、桥接执行”的技能,不是普通聊天提示。

Host Workflow

The host should treat this skill as an operational workflow, not just extra prose.

Invocation:

  • Preferred generic command: /skill bookmark-organize [自然语言整理需求]
  • If OpenClaw exposes a direct skill command, use /bookmark_organize ...; skill command names are sanitized, so /bookmark-organize ... may not exist.

User-facing modes:

  • setup or doctor: run the setup/doctor flow, open Chrome extension settings if needed, and report the next single user action
  • organize or any natural-language cleanup request: run doctor/preflight first, then preview a plan
  • apply: run bridge:ensure-live, validate the latest plan, then apply only after explicit confirmation
  • undo: run bridge:ensure-live, call POST /undo, and report the bridge result

Shortest safe path:

  1. run the local preflight wrapper from this skill folder
  2. fetch live bookmark context from POST /context
  3. generate a conservative preview
  4. wait for explicit confirmation
  5. run bridge:ensure-live again before any apply or undo
  6. call POST /validate
  7. call POST /apply or POST /undo
  8. report only bridge-verified results

Portable preflight command:

node <skill-folder>/scripts/run-repo-script.mjs bridge:preflight

Portable first-run setup command:

node <skill-folder>/scripts/run-repo-script.mjs setup

When installed from ClawHub, <skill-folder> is the installed skill folder containing this SKILL.md file.

For local end-to-end verification, prefer:

node <skill-folder>/scripts/run-repo-script.mjs test:e2e

Purpose

Help the user organize Chrome bookmarks through natural language.

The host AI should:

  1. talk to the user in natural language
  2. ask the Chrome executor extension for bookmark context
  3. produce a structured action plan
  4. preview the plan before any mutation
  5. ask for explicit confirmation
  6. apply the plan through the Chrome bridge
  7. offer undo after a successful apply

Important Rules

  • Never mutate bookmarks on the first planning response
  • Always present a preview before apply
  • Keep actions limited to the supported schema
  • Surface low-confidence or ambiguous cases in warnings
  • If Chrome is not connected, distinguish first-run install from an already-installed but sleeping/disconnected extension
  • Never claim that bookmarks were changed unless you have verified success through the local bridge
  • Never invent folder counts, bookmark counts, or apply results
  • Never tell the user to restart Chrome unless a verified tool result requires it
  • If bridge verification fails, explicitly say the task is not yet executed
  • Do not use direct filesystem reads or writes of Chrome bookmark files as a substitute for execution
  • The only supported execution path is the local bridge plus Chrome executor extension
  • Do not rely on stale bridge health alone; require a live context check before planning or apply

Mandatory Preflight

Before planning, validation, apply, or undo, the host AI should run a local preflight.

Preferred command:

node <skill-folder>/scripts/run-repo-script.mjs bridge:preflight

The preflight is responsible for:

  1. starting the local bridge server if it is not running
  2. refreshing the unpacked Chrome extension when needed
  3. verifying that live bookmark context can be fetched

If preflight fails, stop and explain that execution has not happened yet.

Preflight is not optional even if a previous turn said the bridge looked healthy.

Before POST /validate, POST /apply, or POST /undo, prefer the stronger live gate:

node <skill-folder>/scripts/run-repo-script.mjs bridge:ensure-live

If this command succeeds, continue the current operation. If it fails, stop and tell the user no mutation happened.

If this is the user's first run, or if preflight says needsManualInstall: true, run:

node <skill-folder>/scripts/run-repo-script.mjs setup

Then tell the user to load the unpacked Chrome extension folder printed by the setup command and reply 好了.

Do not show the first-run install instructions merely because executorConnected is false.

Use /health and preflight output to choose the recovery message:

  • If /health has executor.extensionVersion or executor.lastSeenAt, the extension is already installed or has checked in before. Treat this as a sleeping/disconnected MV3 worker. Run bridge:ensure-live or bridge:preflight; if recovery still fails, ask the user to reload the existing Bookmark Organize Executor card on chrome://extensions, not to click 加载已解压的扩展程序 again.
  • If /health does not have executor.extensionVersion and does not have executor.lastSeenAt, or preflight says needsManualInstall: true, treat it as first-run install and use the manual install prompt below.

Use this user-facing wording only when the extension is not installed:

我需要你完成唯一一步浏览器授权操作:
1. 在已打开的 chrome://extensions 页面开启「开发者模式」
2. 点击「加载已解压的扩展程序」
3. 选择 setup 输出的 Chrome executor extension 文件夹

加载完成后回复「好了」,我会自动继续检查连接并读取书签。

Use this user-facing wording when the extension was seen before but is currently disconnected:

Chrome executor 扩展已经安装过,但当前后台连接休眠/断开了。我会先自动唤醒并重连。
如果自动恢复仍失败,请在 chrome://extensions 里找到 `Bookmark Organize Executor`,点击该扩展卡片右下角的重新加载按钮,然后回复「好了」。
我还没有实际修改你的书签。

Mandatory Execution Guardrails

Before claiming any of the following:

  • "已整理完成"
  • "已创建文件夹"
  • "已移动书签"
  • "已重命名"
  • "已撤销"

you must first verify with the local bridge.

Required bridge checks:

  1. Run node <skill-folder>/scripts/run-repo-script.mjs bridge:ensure-live
  2. Check http://127.0.0.1:8787/health
  3. Ensure executorConnected is true
  4. Fetch live context from POST /context
  5. Use bridge endpoints to validate actions, apply actions, or undo actions
  6. Report only the results returned by the bridge

If the bridge is unavailable, say that execution has not happened yet.

Local Bridge

Preferred local bridge:

  • HTTP base URL: http://127.0.0.1:8787
  • Health endpoint: GET /health
  • Context endpoint: POST /context
  • Validate endpoint: POST /validate
  • Apply endpoint: POST /apply
  • Undo endpoint: POST /undo

The Chrome executor extension folder is:

  • <repo-root>/apps/chrome-executor-extension

The local bridge server can be started from:

  • <repo-root>

with:

npm run bridge:server

Preferred recovery command:

npm run bridge:preflight

Supported Actions

  • create_folder
  • move_bookmark
  • rename_bookmark
  • rename_folder

Planning Guidance

When generating a plan:

  • prefer conservative actions
  • avoid renaming when confidence is low
  • create folders before moving bookmarks into them
  • never emit deletion actions
  • never emit move-folder actions
  • if doing an E2E test, put create_folder, move_bookmark, and rename_bookmark in one single action list and one single POST /apply; do not split the test into multiple apply calls because only the latest apply has an undo token
  • for moves into a folder created earlier in the same plan, use targetPath with the newly-created folder path instead of waiting for a folder id

When the user asks to organize bookmarks:

  1. run preflight
  2. if preflight fails, guide setup and stop
  3. fetch live bookmark context
  4. generate a conservative structured plan
  5. preview the plan
  6. wait for explicit confirmation
  7. run bridge:ensure-live again before apply
  8. apply only after confirmation
  9. summarize actual bridge results

Confirmation Flow

After previewing a plan, allow the user to respond with short commands such as:

  • apply
  • apply moves only
  • exclude renames
  • regenerate more conservatively
  • undo last apply

Setup Guidance

If the Chrome executor extension is unavailable, first check whether it was seen before:

  • If /health includes executor.extensionVersion or executor.lastSeenAt, do not run first-run setup unless the user explicitly asks. Run bridge:ensure-live; if it still fails, ask the user to reload the existing extension card.
  • If /health has neither executor.extensionVersion nor executor.lastSeenAt, guide the user with first-run setup:
  1. run node <skill-folder>/scripts/run-repo-script.mjs setup
  2. tell the user to open the extension page if it did not open automatically
  3. tell the user to enable Developer Mode
  4. tell the user to choose Load unpacked
  5. tell the user to select the extension folder printed by setup
  6. ask the user to reply 好了
  7. after the user replies, run node <skill-folder>/scripts/run-repo-script.mjs bridge:preflight

Then ask the user to reply with 已安装 or installed.

Verification Commands

Use these commands when you need to verify the environment instead of guessing:

node <skill-folder>/scripts/run-repo-script.mjs bridge:preflight
node <skill-folder>/scripts/run-repo-script.mjs bridge:ensure-live
node <skill-folder>/scripts/run-repo-script.mjs bridge:smoke
node <skill-folder>/scripts/run-repo-script.mjs test:local
node <skill-folder>/scripts/run-repo-script.mjs test:e2e

Output Contract

The host AI should generate a structured plan with:

  • summary
  • warnings
  • actions

Each action must include an actionId.

Response Style

  • Be explicit about whether you are previewing or executing
  • Use phrases like 我准备这样整理 before apply
  • Use phrases like 我已经通过本地桥接执行完成 only after verified bridge success
  • If execution has not happened, say 我还没有实际修改你的书签

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.89%
按下载量换算536

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills