$npx -y skills add jimliu/baoyu-skills --skill baoyu-wechat-summarySummarizes WeChat group chat highlights into a structured digest using the local wx-cli binary (https://github.com/jackwener/wx-cli). Generates a normal digest by default; a roast (毒舌) version is opt-in. Maintains per-group history (history.json + history-digests.jsonl), per-user
| 1 | # WeChat Group Summary |
| 2 | |
| 3 | 群聊精华提取专家。把零散的微信群聊记录提炼成结构化、可读性强的简报,并维护跨次运行的群聊历史与群友画像。底层依赖外部 [wx-cli](https://github.com/jackwener/wx-cli) 二进制(`wx` 命令),不打包脚本。 |
| 4 | |
| 5 | > **⚠️ Sandbox restriction** |
| 6 | > |
| 7 | > wx-cli reads from `~/.wx-cli/` (config, cache, daemon socket) and from WeChat's data directory (`~/Library/Containers/com.tencent.xinWeChat/` on macOS). Both paths are outside Claude Code's default sandbox. Every `wx` command in this skill needs to run with `dangerouslyDisableSandbox: true` from the start — don't waste a sandbox attempt first. The user can use `/sandbox` to view/edit restrictions. |
| 8 | |
| 9 | ## References(按需加载) |
| 10 | |
| 11 | 本文件只保留工作流骨架;细节拆在 `references/` 下,**执行到对应步骤时再读,不要一开始全部读入**: |
| 12 | |
| 13 | | 参考文件 | 内容 | 何时读 | |
| 14 | |---------|------|-------| |
| 15 | | [references/setup.md](references/setup.md) | 环境检查(wx-cli 安装/权限/初始化)、wx-cli 命令速查、排障手册 | 新环境首次运行,或任何 `wx` 命令失败时 | |
| 16 | | [references/output-formats.md](references/output-formats.md) | 两版摘要的 Section 顺序、格式与内容规范、输出骨架、自检清单 | Round 2 动笔前 | |
| 17 | | [references/profiles.md](references/profiles.md) | 画像文件格式、更新规则、隐私红线、回溯流程 | Step 3.7 / 8.5 / Step 9 | |
| 18 | | [references/group-memory.md](references/group-memory.md) | 群级事实记忆的写入门槛、防注入、格式 | Step 8.6 | |
| 19 | |
| 20 | ## User Input Tools |
| 21 | |
| 22 | When this skill prompts the user, follow this tool-selection rule (priority order): |
| 23 | |
| 24 | 1. **Prefer built-in user-input tools** exposed by the current agent runtime — e.g., `AskUserQuestion`, `request_user_input`, `clarify`, `ask_user`, or any equivalent. |
| 25 | 2. **Fallback**: if no such tool exists, emit a numbered plain-text message and ask the user to reply with the chosen number/answer for each question. |
| 26 | 3. **Batching**: if the tool supports multiple questions per call, combine all applicable questions into a single call; if only single-question, ask them one at a time in priority order. |
| 27 | |
| 28 | Concrete `AskUserQuestion` references below are examples — substitute the local equivalent in other runtimes. |
| 29 | |
| 30 | ## Prerequisites |
| 31 | |
| 32 | 快速验证环境:`wx --version` 有输出且 `wx sessions` 返回数据即可继续。任何一步失败,或是首次在新环境运行 → 读 [references/setup.md](references/setup.md)(完整环境检查、wx-cli 命令速查、排障手册),停在第一个失败项并给用户确切的修复命令。**绝不自动安装、绝不替用户跑 `sudo`。** |
| 33 | |
| 34 | ## Preferences (EXTEND.md) |
| 35 | |
| 36 | Check EXTEND.md in priority order — the first one found wins: |
| 37 | |
| 38 | | Priority | Path | Scope | |
| 39 | |----------|------|-------| |
| 40 | | 1 | `.baoyu-skills/baoyu-wechat-summary/EXTEND.md` (relative to project root) | Project | |
| 41 | | 2 | `${XDG_CONFIG_HOME:-$HOME/.config}/baoyu-skills/baoyu-wechat-summary/EXTEND.md` | XDG | |
| 42 | | 3 | `$HOME/.baoyu-skills/baoyu-wechat-summary/EXTEND.md` | User home | |
| 43 | |
| 44 | | Result | Action | |
| 45 | |--------|--------| |
| 46 | | Found | Read, parse, apply. On first use in session, briefly remind: "Using preferences from [path]. Edit it to change defaults." | |
| 47 | | Not found | **MUST** run first-time setup (BLOCKING) before generating any digest — do NOT silently use defaults. | |
| 48 | |
| 49 | ### Supported keys |
| 50 | |
| 51 | EXTEND.md is plain text with `key: value` or `key=value` lines, `#` for comments, case-insensitive keys. |
| 52 | |
| 53 | | Key | Type | Default | Purpose | |
| 54 | |-----|------|---------|---------| |
| 55 | | `self_wxid` | string | (required) | The owning account's wxid. Messages whose `from_wxid` matches this are attributed to the user. | |
| 56 | | `self_display` | string | (required) | Display name to substitute for the user's own messages in digest text. | |
| 57 | | `default_version` | `normal` / `roast` / `both` | `normal` | Which version(s) to generate when the user doesn't say otherwise. | |
| 58 | | `default_time_range` | string (e.g. `7d`, `24h`, `1d`) | (none) | Default range when the user omits time and there's no incremental anchor. | |
| 59 | | `data_root` | path | `{project_root}/wechat` | Override where digest folders live. | |
| 60 | | `bot_aliases` | comma-separated strings | `bot, 精华bot` | Names that trigger the 「@bot 答疑」 section. A message containing `@<alias>` (case-insensitive) is treated as a question/request aimed at the digest bot. Pick names that do NOT match any real group member or existing bot, to avoid ambiguity. | |
| 61 | |
| 62 | A starter template lives at [EXTEND.md.example](EXTEND.md.example). |
| 63 | |
| 64 | ### First-Time Setup (BLOCKING) |
| 65 | |
| 66 | If no EXTEND.md is found, do NOT silently proceed. |
| 67 | |
| 68 | **Step A — Try to auto-discover `self_wxid` and `self_display` first.** Ru |