🦞郭哥 · AI Skill 精选库
返回精选库
📊 数据复盘自研已跑🔒 会员专享

skill-redundancy-auditor

扫描并审计 WorkBuddy 用户级 Skill 与自动化任务中的冗余项。 输出 Skill 功能分组、路由重叠分析、可归档清单、自动化重复项,并可选执行低风…

数据自动化
来源:郭亚军 · 目录:skill-redundancy-auditor
试试这样说

开通会员后可一键复制该技能的调用提示语。

复制提示语
安装说明

开通会员后可查看并复制完整安装步骤。

复制安装说明
一键安装包

下载该技能完整目录(含 SKILL.md 与附属文件),解压即装。

下载安装包

Skill 冗余审计员

触发场景

工作流程

1. 全量扫描

# 统计 Skill 总数(含子命令)
python3 - <<'PY'
from pathlib import Path
root = Path('~/.workbuddy/skills')
files = [f for f in root.rglob('SKILL.md') if 'node_modules' not in f.parts]
print(len(files))
PY
# 提取每个 SKILL.md 的标题、摘要、触发词(需要 PyYAML)
~/.workbuddy/binaries/python/envs/default/bin/python - <<'PY'
import re, yaml, json
from pathlib import Path
root = Path('~/.workbuddy/skills')
records = []
for f in sorted(root.rglob('SKILL.md')):
    if 'node_modules' in f.parts:
        continue
    text = f.read_text(encoding='utf-8', errors='ignore')
    m = re.match(r'^---\s*\n(.*?)\n---\s*\n', text, re.DOTALL)
    meta, body = {}, text
    if m:
        try:
            meta = yaml.safe_load(m.group(1)) or {}
        except Exception:
            pass
        body = text[m.end():]
    title = meta.get('title') or meta.get('name') or ''
    if not title:
        hm = re.search(r'^#\s+(.*)', body, re.MULTILINE)
        title = hm.group(1).strip() if hm else f.parent.name
    triggers = [l.strip() for l in body.splitlines()[:80] if '触发' in l or '关键词' in l or '当用户' in l]
    summary = ''
    for line in body.splitlines():
        line = line.strip()
        if line and not line.startswith('#') and not line.startswith('---'):

剩余内容仅限会员查看

skill-redundancy-auditor」的完整方法论、话术模板与执行步骤都在下半部分。 开通会员即可解锁全部技能,并下载安装包直接接入 WorkBuddy。

  • 全部技能完整正文
  • 复制提示语
  • 下载 .zip 安装包
  • 新技能自动解锁
开通会员 · 年卡低至 ¥67/月
已有卡密?点此激活

同类技能 · 数据复盘