一键导入
update-resources
Update CQA reference materials (SSG, peer review guide, modular docs, Vale styles). Use before starting a CQA audit or when resources may be stale.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update CQA reference materials (SSG, peer review guide, modular docs, Vale styles). Use before starting a CQA audit or when resources may be stale.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | update-resources |
| description | Update CQA reference materials (SSG, peer review guide, modular docs, Vale styles). Use before starting a CQA audit or when resources may be stale. |
Purpose: Update all CQA reference materials and style guides to ensure current documentation standards.
Update frequency: Weekly minimum (7 days), daily maximum (1 day) for each resource
Resources:
Update all resources (recommended):
./build/scripts/update-cqa-resources.sh
The script automatically:
Check resource ages manually:
for file in .claude/resources/red-hat-{ssg,peer-review,modular-docs}.md; do
[ -f "$file" ] && echo "$file: $(( ($(date +%s) - $(stat -c %Y "$file")) / 86400 )) days old" || echo "$file: MISSING"
done
[ -f .claude/.vale-sync-timestamp ] && echo "Vale: synced $(( ($(date +%s) - $(cat .claude/.vale-sync-timestamp)) / 86400 )) days ago" || echo "Vale: NEVER SYNCED"
| Resource | Location | Update Logic |
|---|---|---|
| SSG | .claude/resources/red-hat-ssg.md | Skip if < 1 day, update if >= 7 days |
| Peer Review | .claude/resources/red-hat-peer-review.md | Skip if < 1 day, update if >= 7 days |
| Modular Docs | .claude/resources/red-hat-modular-docs.md | Skip if < 1 day, update if >= 7 days |
| Vale | .claude/.vale-sync-timestamp | Skip if < 1 day, sync if >= 7 days |
Update logic:
Automatic:
Manual:
Phase 0 uses this skill to ensure all resources are current before starting CQA 2.1 compliance assessment. See cqa-main-workflow.md Phase 0.
Populate JTBD navigation map files with actual include directives from Jira tickets or category/job/topic names. Use when mapping content for a JTBD job, populating nav files, or connecting existing modules to the JTBD structure.
Finds orphaned .adoc and image files not referenced by any include or image directive. Use when cleaning up unused files or after restructuring content.
Validates directory naming conventions for titles, assemblies, and modules. Use when restructuring content or adding new directories.
Runs Vale DITA compliance checks using .vale-dita-only.ini. Use when validating AsciiDoc DITA standards compliance.
Validates assembly files follow the modular docs template structure. Use when creating or restructuring assemblies.
Validates modular docs metadata, prefix conventions, and list formatting in .adoc files. Use when creating or editing modules.