fix(docs): correct zh-CN prune frontmatter

This commit is contained in:
Affaan Mustafa
2026-03-28 23:23:51 -04:00
parent 6af7ca1afc
commit 1e3572becf

View File

@@ -1,4 +1,5 @@
--- ---
name: prune
description: 删除超过 30 天且从未被提升的待处理本能 description: 删除超过 30 天且从未被提升的待处理本能
command: true command: true
--- ---
@@ -9,13 +10,13 @@ command: true
## 实现 ## 实现
使用插件根目录路径运行 instinct CLI 使用插件根目录路径运行本能 CLI
```bash ```bash
python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" prune python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" prune
``` ```
或者 `CLAUDE_PLUGIN_ROOT` 未设置(手动安装): 或者如果 `CLAUDE_PLUGIN_ROOT` 未设置(手动安装):
```bash ```bash
python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py prune python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py prune
@@ -28,8 +29,3 @@ python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py prune
/prune --max-age 60 # 自定义年龄阈值(天) /prune --max-age 60 # 自定义年龄阈值(天)
/prune --dry-run # 仅预览,不实际删除 /prune --dry-run # 仅预览,不实际删除
``` ```
---
name: prune
description: 删除超过 30 天且从未被提升的待处理本能
command: true
---