chore: release v1.18.1

This commit is contained in:
Jim Liu 宝玉 2026-01-23 14:59:23 -06:00
parent f454257b5c
commit fcd49cd5ea
4 changed files with 22 additions and 3 deletions

View File

@ -6,7 +6,7 @@
},
"metadata": {
"description": "Skills shared by Baoyu for improving daily work efficiency",
"version": "1.18.0"
"version": "1.18.1"
},
"plugins": [
{

View File

@ -2,6 +2,11 @@
English | [中文](./CHANGELOG.zh.md)
## 1.18.1 - 2026-01-23
### Documentation
- `baoyu-slide-deck`: adds detailed sub-steps (1.1-1.3) to progress checklist, marks Step 1.3 as required with explicit Bash check command for existing directory detection.
## 1.18.0 - 2026-01-23
### Features

View File

@ -2,6 +2,11 @@
[English](./CHANGELOG.md) | 中文
## 1.18.1 - 2026-01-23
### 文档
- `baoyu-slide-deck`进度清单新增详细子步骤1.1-1.3),标记 Step 1.3 为必须步骤并提供明确的 Bash 检查命令用于检测已存在目录。
## 1.18.0 - 2026-01-23
### 新功能

View File

@ -166,6 +166,9 @@ Copy this checklist and check off items as you complete them:
```
Slide Deck Progress:
- [ ] Step 1: Setup & Analyze
- [ ] 1.1 Load preferences
- [ ] 1.2 Analyze content
- [ ] 1.3 Check existing ⚠️ REQUIRED
- [ ] Step 2: Confirmation ⚠️ REQUIRED (Round 1, optional Round 2)
- [ ] Step 3: Generate outline
- [ ] Step 4: Review outline (conditional)
@ -229,9 +232,15 @@ Schema: `references/config/preferences-schema.md`
5. Determine recommended slide count
6. Generate topic slug from content
**1.3 Check Existing Content**
**1.3 Check Existing Content** ⚠️ REQUIRED
Check if `slide-deck/{topic-slug}/` directory already exists.
**MUST execute before proceeding to Step 2.**
Use Bash to check if output directory exists:
```bash
test -d "slide-deck/{topic-slug}" && echo "exists"
```
**If directory exists**, use AskUserQuestion: