Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

organizing-edge-bookmarks整理边缘书签

Agent Skill

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

总安装

4,375

周安装

177

GitHub Stars

公开资料未说明

下载量

1,374
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install organizing-edge-bookmarks

简介

organizing-edge-bookmarks 管理浏览器书签层级结构与分类权重排序。

  • 适用于高频资源快速定位与投资社交等多类目书签体系维护。
  • 支持持久化存储与跨会话同步确保关键链接不丢失。
  • 自定义排序规则需人工预先定义否则默认按添加时间排列。
  • 批量导入导出功能依赖本地文件系统访问权限配置。

SKILL.md

name
organizing-edge-bookmarks
description
Use when organizing Microsoft Edge bookmarks or favorites when persistence matters, when folder priorities like AI/investing/social are important, or when previous bookmark edits were reverted after restart or sync.
version
1.0.2
license
MIT
homepage
https://github.com/XenoExia/edge-bookmarks-skills
metadata
{ "openclaw": { "emoji": "📚", "os": ["darwin"] } }

Organizing Edge Bookmarks

Treat the live browser bookmark model as the source of truth. The raw Bookmarks file is a fallback artifact, not the preferred write path.

When to Use

USE this skill when:

  • The user wants Microsoft Edge bookmarks/favorites reorganized
  • The result must survive reload or restart
  • Previous bookmark edits were reverted, appended, or emptied after restart/sync
  • The user wants priority folders such as AI, Investing, Social, Tools, Resources, or Archive

DON'T use this skill when:

  • The task is generic browser automation unrelated to bookmarks
  • The user wants a plugin/extension instead of direct bookmark organization
  • The target browser is not Microsoft Edge

Core Principle

If a live-profile path exists, use it.

Avoid raw Bookmarks JSON edits by default because Edge can rebuild the visible tree from its live model and sync state.

This skill is for local, same-machine execution only. If the agent is not running on the same Mac as the target Edge profile, stop and switch to a manual checklist instead of inventing a remote control path.

Runtime Preconditions

  • Validated target: local macOS host with Microsoft Edge installed
  • Use this skill only when an approved local control path has already been proven in the current session
  • Acceptable proven control paths include:

- a live browser bookmark API already verified against the visible tree - a local browser automation tool already present and authorized - a browser-native scripting path already demonstrated to work in this session

  • If the control path is not already proven, do not infer one from this skill
  • If the task would require undefined remote access, stop and switch to manual operator instructions

Required Workflow

  1. Identify the exact target

- Confirm the exact Edge profile by name/path. - Confirm whether the scope is the bookmarks bar, other bookmarks, or both. - Confirm whether nested folders are in scope. - If profile or root scope is ambiguous, ask before moving anything.

  1. Turn the request into explicit buckets

- Convert vague priorities into named folders such as AI, Investing, Social, Tools, Resources, Archive. - Default assumption: AI, Investing, and Social are top-level priority folders unless the user says otherwise. - Use deterministic tie-breaks for multi-category bookmarks: primary purpose first, current user priority second, otherwise move to Archive or Review.

  1. Create a rollback point before mutation

- Capture a baseline snapshot/export of the live bookmark tree. - Record total bookmark count and target root counts. - Record a dry-run move plan or mutation ledger before the first write. - If a safe baseline cannot be captured, stop.

  1. Require explicit consent for intrusive actions

- Before quitting Edge, relaunching a profile, attaching to a live page, or running in-browser bookmark mutations, confirm the user explicitly approved those intrusive steps. - If the user did not approve browser restart or live profile control, downgrade to manual instructions.

  1. Do not start with raw file edits

- Do not use Bookmarks JSON as the primary path. - Do not mix file edits and UI/model edits in one pass. - If a prior file edit already rolled back, treat that as proof the path is unsafe.

  1. Prefer the live browser model

- Operate inside the real Edge profile if possible. - Enforce a single-writer rule: fully close other Edge instances/background writers before a controlled relaunch of the same profile. - If needed, capture current tabs, relaunch the same real profile in a controllable mode, and attach to it. - Prefer browser-native bookmark APIs such as chrome.bookmarks. - Select and move bookmarks by stable node IDs plus parent/root context, not by titles alone. - If the browser-native API is unavailable or does not match the visible bookmark state, stop treating it as authoritative.

  1. Use UI automation only as fallback

- edge://favorites/ may expose weak accessibility structure. - If the UI is not semantically controllable, stop instead of guessing with destructive clicks. - If UI automation is used, reconcile the result against the live bookmark tree afterward.

  1. Verify persistence

- Inspect sync state before mutation; if sync state is unclear or the tree is still changing, wait or stop. - Re-read the live bookmark tree immediately after applying moves. - Compare the intended structure against the actual structure, not just counts. - Reload the favorites page and verify again. - Restart Edge normally, reopen the same profile, and verify again. - If sync is enabled, allow one sync reconciliation cycle and verify once more.

Safety Rules

  • Never delete on the first pass unless the user explicitly asks.
  • Never assume browser restart or profile takeover permission just because the user asked for bookmark organization; intrusive control needs explicit approval.
  • Prefer Archive or Review for uncertain items.
  • Preserve counts unless deduplication is explicitly requested.
  • Do not deduplicate, merge, or remove duplicates on the first pass.
  • Do not rename bookmarks or folders on the first pass unless explicitly requested.
  • Do not assume Apple Events JavaScript support is working just because a menu item exists.
  • Do not assume a valid Bookmarks checksum means persistence is safe.
  • Stop immediately on profile mismatch, unreadable bookmark tree, structural diff mismatch after apply, count mismatch after apply, or sync reversion.

Credentials and Dependencies

  • This skill does not require external API tokens or cloud credentials.
  • It assumes access only to the user-approved local Edge profile and already-approved local automation tooling.
  • If your intended path depends on a binary, extension, debugger port, or automation runtime that is not already present and verified, stop and document that dependency explicitly before proceeding.

Common Mistakes

Editing Bookmarks directly first

Why it fails:

  • Edge may rebuild the visible tree from live model state or sync metadata.

Better:

  • Use the live browser bookmark model first.

Trusting edge://favorites/ accessibility blindly

Why it fails:

  • The page may not expose stable drag-and-drop controls.

Better:

  • Probe control surfaces first and downgrade to manual instructions if the page is opaque.

Treating sync as an afterthought

Why it fails:

  • Correct in-session state can still be overwritten by restart or sync reconciliation.

Better:

  • Inspect sync before mutation and verify again after restart and sync settlement.

Moving by visible title only

Why it fails:

  • Duplicate titles and repeated folder names can send items to the wrong place while counts still look correct.

Better:

  • Move by bookmark node ID with root/path context and verify with an exact structural diff.

Assuming an undefined automation toolchain

Why it fails:

  • High-impact browser actions become unsafe when the skill implies capabilities that have not been proven on the current machine.

Better:

  • Prove the local automation path first. If you cannot prove it in the current session, stop and fall back to manual operator instructions.

Quick Reference

  • Persistent bookmark reorganization → inspect profile/sync state, then prefer live bookmark model
  • Prior file edit rolled back → do not retry raw file editing as the primary path
  • Category cleanup → define deterministic top-level buckets first
  • Uncertain bookmark → archive/review, do not delete
  • Existing folders already exist → reuse or merge deliberately, do not create blind parallel folders

Reference

  • references/edge-bookmarks-workflow.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.54%
按下载量换算1,162

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills