一键导入
update-docs
Use when code changes have been made and documentation may need updating. Checks all READMEs and CLAUDE.md against changes since the last release tag.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when code changes have been made and documentation may need updating. Checks all READMEs and CLAUDE.md against changes since the last release tag.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | update-docs |
| description | Use when code changes have been made and documentation may need updating. Checks all READMEs and CLAUDE.md against changes since the last release tag. |
| user_invocable | true |
Check and update project documentation to reflect code changes since the last release.
Find the last release tag and list all changed files:
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD)
git diff --name-only "$LAST_TAG"..HEAD
From the changed files, identify which packages were modified:
packages/core/ → @vimee/corepackages/react/ → @vimee/reactpackages/plugin-textarea/ → @vimee/plugin-textareapackages/shiki-editor/ → @vimee/shiki-editorpackages/testkit/ → @vimee/testkitFor each affected package, read its README and compare against changes:
| Document | Check for |
|---|---|
README.md (root) | Package table, monorepo structure, feature list, quick start examples |
packages/*/README.md | API changes, new exports, removed exports, usage examples |
CLAUDE.md | Package list, commands, conventions |
Also check:
package.json? → Update CLAUDE.md commands sectionindex.ts? → Update that package's READMEFor each document that needs changes:
Summarize what was updated:
Documents checked:
- README.md — updated (added @vimee/testkit to package table)
- packages/core/README.md — no changes needed
- CLAUDE.md — no changes needed
Documents not checked (no related code changes):
- packages/react/README.md
If nothing needs updating, say so: "All documentation is up to date."
Commit with: docs: update documentation for recent changes
packages/core/README.md.