plantuml-validate
Validate that all PlantUML diagram URLs in markdown files match their source blocks. Reports missing or stale URLs and offers auto-fix.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Validate that all PlantUML diagram URLs in markdown files match their source blocks. Reports missing or stale URLs and offers auto-fix.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Configure the minimal single-line compact Claude Code statusline (repo, worktree, branch, model, effort, context window, context %, and session cost). Detects and resolves conflicts with an existing statusline before switching.
Show the full Claude Code session context assembled in load order. Outputs all CLAUDE.md files, auto-memory, SessionStart hook output, and skill listings in one document with source separators. Prints a summary table to stderr with scope, type, source, status, lines, tokens, and context% per source. Keywords: session context, what is loaded, show context, debug context, rules, hooks, skills.
Interactive setup wizard for git branch naming conventions. Creates or updates .claude-plugin/git-branch-naming.json with project-specific rules. Run this command to configure prefixes, ticket patterns, enforcement levels, and protected branches. Keywords: setup branch naming, configure conventions, branch config, git naming setup.
Analyze documentation health: run structural checks (broken links, orphans, duplicates, CLAUDE.md overflow, mandatory docs), then semantic analysis (README compliance, terminology, ADR completeness, content actuality). Create GitHub epic with linked issues for findings. Keywords: documentation audit, kb grooming, doc health, knowledge base.
Interactive setup wizard for fast-changing technology watchlist. Creates or updates ~/.claude/fresh-guides.json or .claude-plugin/fresh-guides.json. Run this command to configure which technologies require doc verification. Keywords: fresh-guides setup, configure watchlist, fast-changing technology, doc verification.
Display current fresh-guides watchlist configuration. Shows all watched technologies and their doc URLs. Keywords: show watchlist, fresh-guides config, current technologies.
基于 SOC 职业分类
| name | plantuml-validate |
| description | Validate that all PlantUML diagram URLs in markdown files match their source blocks. Reports missing or stale URLs and offers auto-fix. |
| compatibility | Requires Python 3.x |
Validate that all PlantUML diagram URLs in markdown files are in sync with their source blocks.
Find all .md files in the project that contain PlantUML code blocks:
grep -rl '```plantuml' . --include='*.md'
Run the validation check on all found files:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/plantuml-encode.py" --check <files>
CLAUDE_PLUGIN_ROOT is set automatically by Claude Code when running plugin commands.
Report results to the user:
--sync on affected filesIf the user confirms auto-fix, run:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/plantuml-encode.py" --sync <affected-files>