mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-19 00:49:47 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a3819b8e30 | |||
| 234c2a832b | |||
| 7943eb7b05 | |||
| 4b4a4d3863 |
@@ -6,7 +6,7 @@
|
|||||||
},
|
},
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"description": "Skills shared by Baoyu for improving daily work efficiency",
|
"description": "Skills shared by Baoyu for improving daily work efficiency",
|
||||||
"version": "1.116.0"
|
"version": "1.116.2"
|
||||||
},
|
},
|
||||||
"plugins": [
|
"plugins": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,6 +2,16 @@
|
|||||||
|
|
||||||
English | [中文](./CHANGELOG.zh.md)
|
English | [中文](./CHANGELOG.zh.md)
|
||||||
|
|
||||||
|
## 1.116.2 - 2026-05-13
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
- `baoyu-wechat-summary`: update example group name in SKILL.md
|
||||||
|
|
||||||
|
## 1.116.1 - 2026-05-13
|
||||||
|
|
||||||
|
### Features
|
||||||
|
- `baoyu-wechat-summary`: add `data_root` option to first-time setup flow, allowing users to customize the digest output directory during initialization
|
||||||
|
|
||||||
## 1.116.0 - 2026-05-13
|
## 1.116.0 - 2026-05-13
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
@@ -2,6 +2,16 @@
|
|||||||
|
|
||||||
[English](./CHANGELOG.md) | 中文
|
[English](./CHANGELOG.md) | 中文
|
||||||
|
|
||||||
|
## 1.116.2 - 2026-05-13
|
||||||
|
|
||||||
|
### 文档
|
||||||
|
- `baoyu-wechat-summary`:更新 SKILL.md 中的示例群名
|
||||||
|
|
||||||
|
## 1.116.1 - 2026-05-13
|
||||||
|
|
||||||
|
### 新功能
|
||||||
|
- `baoyu-wechat-summary`:初始化设置流程中新增 `data_root` 选项,允许用户在首次配置时自定义摘要输出目录
|
||||||
|
|
||||||
## 1.116.0 - 2026-05-13
|
## 1.116.0 - 2026-05-13
|
||||||
|
|
||||||
### 新功能
|
### 新功能
|
||||||
|
|||||||
@@ -97,9 +97,10 @@ For option 2, scan the sessions for any private/group thread the user has sent i
|
|||||||
- `self_wxid` (e.g., `wxid_abc123`) — fall-back hint: the user can find it with `wx contacts --query "<own nickname>"`, or by inspecting any of their own sent messages in `wx sessions --json`
|
- `self_wxid` (e.g., `wxid_abc123`) — fall-back hint: the user can find it with `wx contacts --query "<own nickname>"`, or by inspecting any of their own sent messages in `wx sessions --json`
|
||||||
- `self_display` (e.g., `宝玉`) — how they want their messages attributed
|
- `self_display` (e.g., `宝玉`) — how they want their messages attributed
|
||||||
- `default_version` — pick one of `normal` / `roast` / `both`
|
- `default_version` — pick one of `normal` / `roast` / `both`
|
||||||
|
- `data_root` — where digest folders live. Default: `{project_root}/wechat`. Enter a custom absolute path (e.g. `~/Documents/wechat-digests`) or leave blank for default.
|
||||||
- Save location — pick one of project / XDG / home
|
- Save location — pick one of project / XDG / home
|
||||||
|
|
||||||
Write EXTEND.md to the chosen path, confirm "Preferences saved to [path]. Edit it any time to change defaults.", then continue with the digest workflow.
|
Write EXTEND.md to the chosen path. If the user provided a non-default `data_root`, include it as an uncommented line; otherwise omit it (the default applies automatically). Confirm "Preferences saved to [path]. Edit it any time to change defaults.", then continue with the digest workflow.
|
||||||
|
|
||||||
## Workflow
|
## Workflow
|
||||||
|
|
||||||
@@ -324,8 +325,8 @@ Always reflects only the most recent normal digest. Overwrite on each run when `
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"group_id": "12345678901@chatroom",
|
"group_id": "12345678901@chatroom",
|
||||||
"group_name": "消失的大叔",
|
"group_name": "相亲相爱一家人",
|
||||||
"folder": "12345678901@chatroom-消失的大叔",
|
"folder": "12345678901@chatroom-相亲相爱一家人",
|
||||||
"last_digest": {
|
"last_digest": {
|
||||||
"file": "2026-03-12.md",
|
"file": "2026-03-12.md",
|
||||||
"date_range": "2026-03-12",
|
"date_range": "2026-03-12",
|
||||||
@@ -392,7 +393,7 @@ Full procedure in [references/profiles.md](references/profiles.md).
|
|||||||
|
|
||||||
```
|
```
|
||||||
{data_root}/ # default: {project_root}/wechat/
|
{data_root}/ # default: {project_root}/wechat/
|
||||||
└── {group_id}-{group_name}/ # e.g. 12345678901@chatroom-消失的大叔/
|
└── {group_id}-{group_name}/ # e.g. 12345678901@chatroom-相亲相爱一家人/
|
||||||
├── history.json # last digest pointer (fast)
|
├── history.json # last digest pointer (fast)
|
||||||
├── history-digests.jsonl # append-only archive
|
├── history-digests.jsonl # append-only archive
|
||||||
├── 2026-03-12.md # normal digest, single date
|
├── 2026-03-12.md # normal digest, single date
|
||||||
|
|||||||
Reference in New Issue
Block a user