Claude-skill-registry design-update
Update specific design document with new content or metadata. Use when modifying design docs, updating status/completeness, or syncing after code changes.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/design-update" ~/.claude/skills/majiayu000-claude-skill-registry-design-update && rm -rf "$T"
manifest:
skills/data/design-update/SKILL.mdsource content
Design Document Update
Updates design documentation files with new content, metadata changes, or structural improvements.
Overview
This skill updates design documents by:
- Reading the current design doc
- Understanding the requested changes
- Validating changes against schema
- Updating frontmatter metadata
- Modifying content sections
- Running validation checks
- Confirming changes applied correctly
Quick Start
Update status:
/design-update effect-type-registry cache-optimization.md --status=draft
Update completeness:
/design-update effect-type-registry observability.md --completeness=80
Mark as synced:
/design-update effect-type-registry cache-optimization.md --sync
Update section:
/design-update rspress-plugin-api-extractor type-loading.md --section=Overview
Bulk update:
/design-update effect-type-registry observability.md \ --status=current --completeness=90 --sync
Parameters
Required
- Module namemodule
- Document filename (without path)doc
Optional
- New status (stub, draft, current, needs-review, archived)status
- New completeness (0-100)completeness
- Specific section to updatesection
- New content to add/replacecontent
- Mark as synced (sets last-synced to current date)sync
- Add cross-reference to related docadd-related
- Add dependency referenceadd-dependency
Workflow Overview
- Parse Parameters - Extract module, doc, and change parameters
- Load Configuration - Read config, verify module exists
- Read Document - Parse current frontmatter and content
- Apply Updates - Frontmatter or content changes
- Validate Changes - Check alignment and correctness
- Smart Recommendations - Suggest related updates
- Report Changes - Summary with validation results
Supporting Documentation
For Update Operations
See update-operations.md for:
- All supported update operations (frontmatter fields, content sections)
- Validation rules for each operation
- Bulk update operations
- Output format templates
Load when: Performing specific updates or need validation rules
For Smart Completeness
See completeness-estimation.md for:
- Completeness estimation algorithm
- Section analysis scoring
- Placeholder detection
- Content depth assessment
- Smart suggestion logic
Load when: Estimating completeness or validating declared values
For Usage Examples
See examples.md for:
- Complete update scenarios (status, completeness, sections)
- Bulk updates
- Cross-reference management
- Smart estimation examples
- Common update patterns
Load when: User needs concrete examples or clarification
Status-Completeness Matrix
Quick reference for alignment:
| Completeness | Expected Status |
|---|---|
| 0-20 | stub |
| 21-60 | draft |
| 61-90 | current, needs-review |
| 91-100 | current |
Integration
Use this skill with:
- Validate after updates/design-validate
- Sync with codebase before updating/design-sync
- Review to identify needed updates/design-review
- Create before updating/design-init
Success Criteria
A successful update:
- ✅ Changes applied correctly
- ✅ Frontmatter valid and consistent
- ✅ Status-completeness aligned
- ✅ All validations pass
- ✅ User receives clear summary
- ✅ Recommendations provided