taxonomy-manager
Installation
SKILL.md
Taxonomy Manager Skill
Instructions
This skill audits and maintains blog taxonomy on Hugo-based sites using the Scan-Analyze-Report-Act workflow. Apply this skill when users ask to audit tags, fix inconsistencies, or consolidate taxonomy terms.
Phase 1: SCAN - Collect Taxonomy Data
Goal: Build a complete index of all taxonomy terms and their usage.
Step 1: Identify all content files
Locate every Markdown file in the Hugo content directory (because Hugo requires explicit file discovery to avoid missing nested structures).
find /path/to/content -name "*.md" -type f | sort
Step 2: Extract front matter from each post