ワンクリックで
document-sync
确保代码变更后及时更新相关文档。当代码更新、新增、删除或项目功能变更时,必须同步更新文档。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
确保代码变更后及时更新相关文档。当代码更新、新增、删除或项目功能变更时,必须同步更新文档。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
专用于在 GitHub 上搜索现有的开源库、工具、MCP Server 或最佳实践代码。当你想在开始开发前查找是否有“现成的轮子”或参考案例时使用。
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
UI/UX 设计智能库与推荐专家。包含 67 种风格、96 种配色方案、57 种字体搭配、99 条 UX 指南,支持跨技术栈的设计系统生成。
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
| name | document-sync |
| description | 确保代码变更后及时更新相关文档。当代码更新、新增、删除或项目功能变更时,必须同步更新文档。 |
此技能确保所有代码相关的迭代都及时同步到文档中,包括:
必须在以下情况调用此技能:
# 在对应文档中添加
## 新增功能
- 功能描述
- 使用示例
- 注意事项
# 在对应文档中添加
## 已删除功能
- 功能名称
- 替代方案(如有)
- 迁移指南(如有)
# 在对应文档中添加
## 功能升级
- 升级内容
- 新特性
- 向后兼容性
- 迁移指南
# 1. 创建中间件文件
src/litefs/middleware/new_middleware.py
# 2. 更新文档
docs/middleware-guide.md # 添加新中间件章节
# 1. 重构代码
mv src/litefs/old_module.py src/litefs/new_module.py
# 2. 更新文档
docs/architecture.md # 更新代码组织结构
docs/migration-guide.md # 添加迁移指南
# 1. 删除代码
rm src/litefs/deprecated_feature.py
# 2. 更新文档
docs/deprecated-features.md # 添加已删除功能说明