Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计未展示

brewdoc%3aauto-syncbrewdoc 3aauto sync 搜索

Agent Skill

brewdoc%3aauto-sync 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

346

周安装

14

GitHub Stars

24

下载量

109
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:brewdoc%3aauto-sync(brewdoc 3aauto sync 搜索)
来源仓库:https://github.com/kochetkov-ma/claude-brewcode
仓库路径:skills/brewdoc%3Aauto-sync
安装命令:
npx skills add https://github.com/kochetkov-ma/claude-brewcode --skill brewdoc:auto-sync
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kochetkov-ma/claude-brewcode --skill brewdoc:auto-sync

简介

brewdoc%3aauto-sync 实现文档的自动状态检测与索引更新机制。

  • 适用于定时同步全局或项目级 Markdown 文件至本地缓存数据库。
  • 支持 status/init/global/project/file/folder 多种触发模式。
  • 排除 rules/ 等受控目录,仅对显式指定路径生效以保证安全性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Auto-Sync

Mode Detection

EXECUTE using Bash tool (args: $ARGUMENTS):

bash "${CLAUDE_SKILL_DIR}/scripts/detect-mode.sh" $ARGUMENTS

Parse output: MODE|ARG|FLAGS. If exit code non-zero → report error, EXIT.

ModeTriggerScope
STATUSstatusReport INDEX state → EXIT
INITinit <path>Tag file + add to INDEX → EXIT
GLOBALglobal~/.claude/** (excludes managed dirs)
PROJECTempty.claude/** (excludes managed dirs)
FILEfile pathSingle file
FOLDERfolder pathAll.md in folder

Managed directories (excluded from auto-scan, explicit path required):

  • rules/ — sync via /brewdoc:auto-sync.claude/rules
  • agents/ — sync via /brewdoc:auto-sync.claude/agents
  • skills/ — sync via /brewdoc:auto-sync.claude/skills

INDEX Format

{"p":"skills/auth/SKILL.md","t":"skill","u":"2026-02-05","pr":"default"}
FieldDescription
pRelative path
tType: skill/agent/rule/config/doc
uLast sync date (YYYY-MM-DD)
prProtocol: default/override

Paths: Project .claude/auto-sync/INDEX.jsonl | Global ~/.claude/auto-sync/INDEX.jsonl

Frontmatter Fields

Required (3):

auto-sync: enabled
auto-sync-date: 2026-02-05
auto-sync-type: skill

Optional override (multiline YAML):

auto-sync-override: |
  sources: src/**/*.ts, .claude/agents/*.md
  focus: API endpoints, error handling
  preserve: ## User Notes, ## Custom Config

Override Field

When auto-sync-override: present in frontmatter → INDEX gets pr: "override".

Stored in frontmatter only — never in document body.

  1. Read INDEX.jsonl, verify indexed files exist
  2. Find all .md files in scope
  3. Compare indexed vs found → identify non-indexed
  4. Detect type for non-indexed (discover.sh typed) — output: TYPE|PATH per line
  5. Output report: Indexed (path, type, protocol, last sync, stale), Non-Indexed (path, detected type, reason), Summary (counts)
  6. EXIT

Input: init <path>

  1. Read <path> — if NOT found → error, EXIT
  2. If has auto-sync: enabled → "Already tagged", EXIT
  3. Detect type via discover.sh
  4. Add frontmatter: auto-sync: enabled, auto-sync-date: {today}, auto-sync-type: {type}
  5. Check frontmatter auto-sync-override: → set pr: override|default
  6. Add to INDEX.jsonl
  7. Output: path, type, protocol; EXIT

Sync Mode (PROJECT/GLOBAL/FILE/FOLDER)

Phase 1: Setup INDEX

EXECUTE using Bash tool:

SCOPE="project"  # or "global"
INDEX_DIR=".claude/auto-sync"
[ "$SCOPE" = "global" ] && INDEX_DIR="$HOME/.claude/auto-sync"
mkdir -p "$INDEX_DIR" && INDEX_FILE="$INDEX_DIR/INDEX.jsonl" && touch "$INDEX_FILE"
echo "INDEX=$INDEX_FILE"

Phase 2: Discover + Queue (load config: INTERVAL_DAYS, PARALLEL_AGENTS from .claude/tasks/cfg/brewdoc.config.json)

  1. Find tagged files — EXECUTE using Bash tool:
bash "${CLAUDE_SKILL_DIR}/scripts/discover.sh" "$SCOPE_PATH" typed

Output: TYPE|PATH per line (types: skill, agent, rule, config, doc). Capped at MAX_FILES (default 50).

  1. For each file not in INDEX → auto-add:

- Read file, use type from discover output - If no frontmatter → add auto-sync: enabled, auto-sync-date, auto-sync-type - Check <auto-sync-override> → set pr - Add to INDEX (index-ops.sh add)

  1. Find stale entries — EXECUTE using Bash tool:
bash "${CLAUDE_SKILL_DIR}/scripts/index-ops.sh" stale "$INDEX_FILE" "$INTERVAL_DAYS"
  1. Queue: new + stale files

Phase 3: Process + Report

  1. Launch bd-auto-sync-processor agents (max PARALLEL_AGENTS batches, model="sonnet"): Task(subagent_type="brewdoc:bd-auto-sync-processor", prompt="PATH: {path} | TYPE: {type} | FLAGS: {flags}") Context: BD_PLUGIN_ROOT is injected into agent prompt by pre-task.mjs hook.
  2. For each result:

- If status = updated or unchanged → update INDEX u to today (index-ops.sh update) - If status = error → log to Errors table, do NOT update INDEX (file remains stale for retry)

  1. Output report:
## Auto-Sync Complete

| Metric | Count |
|--------|-------|
| Discovered | {N} |
| Queued (stale/new) | {N} |
| Updated | {N} |
| Unchanged | {N} |
| Errors | {N} |

### Updated
| Path | Type | Changes |
|------|------|---------|

### Errors
| Path | Error |
|------|-------|

Error Handling

ErrorAction
INDEX corruptRebuild from discovery
File not foundSkip, add to errors
Agent timeoutRetry once
No tagged filesReport "0 found"
/brewdoc:doc called"Use /brewdoc:auto-sync"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

33.31%
按下载量换算36

Claude

31.58%
按下载量换算34

Cursor

17.99%
按下载量换算20

Gemini CLI

9.54%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills