zcf-update-docs
FeaturedAutomatically check code changes since last tag and update documentation in docs/ directory (en, zh-CN, ja-JP) and CLAUDE.md to ensure consistency with actual code implementation
AI & Automation 6,083 stars
421 forks Updated 1 weeks ago MIT
Install
Quality Score: 92/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# ZCF Update Docs - Documentation Synchronization
Automatically check code changes since last tag and update documentation in `docs/` directory (multilingual: en, zh-CN, ja-JP) and CLAUDE.md to ensure consistency with actual code implementation.
## Usage
```bash
/zcf-update-docs [--check-only]
```
## Parameters
- `--check-only`: Only check for inconsistencies without making updates (dry run)
## Context
- Analyze all code changes since the last Git tag
- Check if documentation needs updates in docs/ directory structure
- Ensure CLI commands, features, and workflows documentation match actual code
- Maintain multilingual documentation consistency across en, zh-CN, ja-JP
- Update CLAUDE.md for development-related changes
## Your Role
You are a professional documentation maintainer responsible for:
1. Analyzing code changes and their impact on documentation
2. Identifying documentation sections that need updates
3. Ensuring documentation accuracy and consistency
4. Maintaining multilingual synchronization
## Execution Flow
Parse arguments: $ARGUMENTS
### 1. Parameter Parsing
```bash
CHECK_ONLY=false # Default to update mode
case "$ARGUMENTS" in
--check-only)
CHECK_ONLY=true
echo "๐ Running in check-only mode (no files will be modified)"
;;
"")
CHECK_ONLY=false
echo "โ๏ธ Running in update mode"
;;
*)
echo "Unknown parameter: $ARGUMENTS"
echo "Usage: /zcf-update-docs [--check-only]"
exit 1
;;
esac
```
### 2. Get Changes...
Details
- Author
- UfoMiao
- Repository
- UfoMiao/zcf
- Created
- 1 years ago
- Last Updated
- 1 weeks ago
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content โ not just same category
AI & Automation Listed
update-docs
USER-INVOKABLE ONLY. Do NOT trigger automatically. Only invoke when the user explicitly types /update-docs or asks to update documentation. Audits and updates all relevant project documentation โ CLAUDE.md, README, docs/, handoff.xml, MEMORY.md โ based on what happened in this session.
1 Updated 1 weeks ago
TomasLicek Data & Documents Listed
docs-update-target
{{ ฦฦฦ }} Update an existing documentation file to reflect recent code changes
5 Updated 2 days ago
JasonWarrenUK AI & Automation Listed
update-docs
Update documentation to reflect recent work. Use for /update-docs requests.
2 Updated 3 days ago
amurshak