resetlisted
Install: claude install-skill Lambenthan/empiricalwiki
# /reset
> 按 scope 重置 wiki 到干净 scaffold。设计目的是开发迭代和 setup 失败恢复 — 不是日常操作。
## Trigger
手动:`/reset --scope wiki` / `--scope raw` / `--scope log` / `--scope checkpoints` / `--scope all`。可用逗号组合多个 scope:`--scope wiki,log`。
## Inputs
- `--scope`(必填):取值
- `wiki` — 删除 `wiki/<entity>/` 与 `wiki/outputs/` 下所有 `*.md`,同时删除 `wiki/index.md`、`wiki/log.md` 和 `wiki/graph/` 下的文件。保留 `.gitkeep` 和 `wiki/CLAUDE.md`。
- `raw` — 删除 `raw/papers/`、`raw/discovered/`、`raw/tmp/`、`raw/notes/`、`raw/web/` 下所有条目(保留 `.gitkeep`)。
- `log` — 重置 `wiki/log.md` 为空模板。
- `checkpoints` — 通过 `research_wiki.py checkpoint-clear` 清除批处理状态。
- `all` — 以上全部。
## Outputs
- 磁盘上清空 / 重置后的文件。
- 控制台摘要:已删除文件数、已重置文件数。
## Wiki Interaction
### 读取
- 所有 `wiki/<entity>/*.md`(用于枚举删除清单)。
- `raw/<sub>/*`(用于枚举 raw 删除清单)。
### 写入
- 删除 `wiki/<entity>/*.md`(保留 `.gitkeep`)。
- 重写 `wiki/index.md`、`wiki/graph/*`,可选地重写 `wiki/log.md`。
- 删除 `raw/<sub>/*`(保留 `.gitkeep`)。
## Workflow
**前置条件**:当前目录包含 `wiki/`、`tools/`。`WIKI_ROOT=wiki/`。
### Step 1: 构造删除计划(dry-run)
```bash
python3 tools/reset_wiki.py --scope <scope>
```
该命令打印 JSON 计划,列出将要删除或重置的全部文件,**不修改任何东西**。按 scope 分组展示给用户(wiki entity 目录、raw 子目录、log、checkpoints)。
### Step 2: 与用户确认
打印计划摘要并请求显式确认:
```
About to delete N files and reset M files. Continue? [y/N]
```
用户拒绝则退出。**未经明确许可不得执行** — `/reset` 是破坏性操作,`raw/` 的删除不可恢复。
### Step 3: 执行
```bash
python3 tools/reset_wiki.py --scope <scope> --yes
```
工具打印 JSON 状态报告(`{deleted_files, reset_files}`)。
### Step 4: 记录日志(除非已重置 log)
若执行的 scope