#!/usr/bin/env python3 """Generate MkDocs documentation pages from SKILL.md files, agents, and commands.""" import os import re import shutil REPO_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) DOCS_DIR = os.path.join(REPO_ROOT, "docs") # Domain mapping: directory prefix -> (section name, sort order, icon, plugin_name) DOMAINS = { "engineering-team": ("Engineering - Core", 1, ":material-code-braces:", "engineering-skills"), "engineering": ("Engineering - POWERFUL", 2, ":material-rocket-launch:", "engineering-advanced-skills"), "product-team": ("Product", 3, ":material-lightbulb-outline:", "product-skills"), "marketing-skill": ("Marketing", 4, ":material-bullhorn-outline:", "marketing-skills"), "project-management": ("Project Management", 5, ":material-clipboard-check-outline:", "pm-skills"), "c-level-advisor": ("C-Level Advisory", 6, ":material-account-tie:", "c-level-skills"), "ra-qm-team": ("Regulatory & Quality", 7, ":material-shield-check-outline:", "ra-qm-skills"), "business-growth": ("Business & Growth", 8, ":material-trending-up:", "business-growth-skills"), "finance": ("Finance", 9, ":material-calculator-variant:", "finance-skills"), } # Skills to skip (nested assets, samples, etc.) SKIP_PATTERNS = [ "assets/sample-skill", "medium-content-pro 2", # duplicate with space ] def find_skill_files(): """Walk the repo and find all SKILL.md files, grouped by domain.""" skills = {} for root, dirs, files in os.walk(REPO_ROOT): if "SKILL.md" not in files: continue rel_path = os.path.relpath(root, REPO_ROOT) if any(skip in rel_path for skip in SKIP_PATTERNS): continue # Determine domain parts = rel_path.split(os.sep) domain_key = parts[0] if domain_key not in DOMAINS: continue skill_name = parts[-1] # last directory component skill_path = os.path.join(root, "SKILL.md") # Determine nesting (e.g., playwright-pro/skills/generate) is_sub_skill = len(parts) > 2 parent = parts[1] if len(parts) > 2 else None if domain_key not in skills: skills[domain_key] = [] skills[domain_key].append({ "name": skill_name, "path": skill_path, "rel_path": rel_path, "is_sub_skill": is_sub_skill, "parent": parent, }) return skills def extract_title(filepath): """Extract the first H1 heading from a SKILL.md file.""" try: with open(filepath, "r", encoding="utf-8") as f: for line in f: line = line.strip() # Skip YAML frontmatter if line == "---": in_frontmatter = True for line2 in f: if line2.strip() == "---": break continue if line.startswith("# "): return line[2:].strip() except Exception: pass return None def extract_subtitle(filepath): """Extract the first non-empty line after the first H1 heading.""" try: with open(filepath, "r", encoding="utf-8") as f: found_h1 = False in_frontmatter = False for line in f: stripped = line.strip() if stripped == "---" and not in_frontmatter: in_frontmatter = True for line2 in f: if line2.strip() == "---": break continue if stripped.startswith("# ") and not found_h1: found_h1 = True continue if found_h1 and stripped and not stripped.startswith("#"): return stripped except Exception: pass return None def extract_description_from_frontmatter(filepath): """Extract the description field from YAML frontmatter.""" try: with open(filepath, "r", encoding="utf-8") as f: content = f.read() match = re.match(r"^---\n(.*?)---\n", content, re.DOTALL) if match: fm = match.group(1) desc_match = re.search(r'description:\s*["\']?(.*?)["\']?\s*$', fm, re.MULTILINE) if desc_match: return desc_match.group(1).strip() except Exception: pass return None def slugify(name): """Convert a skill name to a URL-friendly slug.""" return re.sub(r"[^a-z0-9-]", "-", name.lower()).strip("-") def prettify(name): """Convert kebab-case to Title Case.""" return name.replace("-", " ").title() def strip_content(content): """Strip frontmatter and first H1 from content, handling edge cases.""" # Strip YAML frontmatter content = re.sub(r"^---\n.*?---\n", "", content, flags=re.DOTALL) # Strip leading whitespace content = content.lstrip() # Remove the first H1 if it exists (avoid duplicate) content = re.sub(r"^#\s+.+\n", "", content, count=1) # Remove leading hr after title content = re.sub(r"^\s*---\s*\n", "", content) return content def generate_skill_page(skill, domain_key): """Generate a docs page for a single skill.""" skill_md_path = skill["path"] with open(skill_md_path, "r", encoding="utf-8") as f: content = f.read() # Extract title or generate one title = extract_title(skill_md_path) or prettify(skill["name"]) # Clean title of markdown artifacts title = re.sub(r"[*_`]", "", title) domain_name, _, domain_icon, plugin_name = DOMAINS[domain_key] description = f"{title} - Claude Code skill from the {domain_name} domain." subtitle = extract_subtitle(skill_md_path) or "" # Clean subtitle of markdown artifacts for the intro subtitle_clean = re.sub(r"[*_`\[\]]", "", subtitle) # Build the page with design system page = f'''--- title: "{title}" description: "{description}" --- # {title}
''' # Add install banner page += f''' ''' content_clean = strip_content(content) page += content_clean return page def generate_nav_entry(skills_by_domain): """Generate the nav section for mkdocs.yml.""" nav_lines = [] sorted_domains = sorted(skills_by_domain.items(), key=lambda x: DOMAINS[x[0]][1]) for domain_key, skills in sorted_domains: domain_name = DOMAINS[domain_key][0] # Group sub-skills under their parent top_level = [s for s in skills if not s["is_sub_skill"]] sub_skills = [s for s in skills if s["is_sub_skill"]] top_level.sort(key=lambda s: s["name"]) nav_lines.append(f" - {domain_name}:") for skill in top_level: slug = slugify(skill["name"]) page_path = f"skills/{domain_key}/{slug}.md" title = extract_title(skill["path"]) or prettify(skill["name"]) title = re.sub(r"[*_`]", "", title) nav_lines.append(f" - \"{title}\": {page_path}") # Add sub-skills under parent children = [s for s in sub_skills if s["parent"] == skill["name"]] children.sort(key=lambda s: s["name"]) for child in children: child_slug = slugify(child["name"]) child_path = f"skills/{domain_key}/{slug}-{child_slug}.md" child_title = extract_title(child["path"]) or prettify(child["name"]) child_title = re.sub(r"[*_`]", "", child_title) nav_lines.append(f" - \"{child_title}\": {child_path}") return "\n".join(nav_lines) def main(): skills_by_domain = find_skill_files() # Create docs/skills/ directories for domain_key in skills_by_domain: os.makedirs(os.path.join(DOCS_DIR, "skills", domain_key), exist_ok=True) total = 0 # Generate individual skill pages for domain_key, skills in skills_by_domain.items(): top_level = [s for s in skills if not s["is_sub_skill"]] sub_skills = [s for s in skills if s["is_sub_skill"]] for skill in top_level: slug = slugify(skill["name"]) page_content = generate_skill_page(skill, domain_key) page_path = os.path.join(DOCS_DIR, "skills", domain_key, f"{slug}.md") with open(page_path, "w", encoding="utf-8") as f: f.write(page_content) total += 1 # Generate sub-skill pages children = [s for s in sub_skills if s["parent"] == skill["name"]] for child in children: child_slug = slugify(child["name"]) child_content = generate_skill_page(child, domain_key) child_path = os.path.join(DOCS_DIR, "skills", domain_key, f"{slug}-{child_slug}.md") with open(child_path, "w", encoding="utf-8") as f: f.write(child_content) total += 1 # Generate domain index pages sorted_domains = sorted(skills_by_domain.items(), key=lambda x: DOMAINS[x[0]][1]) for domain_key, skills in sorted_domains: domain_name, _, domain_icon, plugin_name = DOMAINS[domain_key] top_level = sorted([s for s in skills if not s["is_sub_skill"]], key=lambda s: s["name"]) sub_skills = [s for s in skills if s["is_sub_skill"]] skill_count = len(skills) # Build grid cards for skills cards = "" for skill in top_level: slug = slugify(skill["name"]) title = extract_title(skill["path"]) or prettify(skill["name"]) title = re.sub(r"[*_`]", "", title) subtitle = extract_subtitle(skill["path"]) or f"`{skill['name']}`" subtitle = re.sub(r"[*_`\[\]]", "", subtitle) # Truncate long subtitles if len(subtitle) > 120: subtitle = subtitle[:117] + "..." children = sorted([s for s in sub_skills if s["parent"] == skill["name"]], key=lambda s: s["name"]) sub_count = len(children) sub_text = f" + {sub_count} sub-skills" if sub_count > 0 else "" cards += f""" - **[{title}]({slug}.md)**{sub_text} --- {subtitle} """ index_content = f'''--- title: "{domain_name} Skills" description: "All {skill_count} {domain_name} skills for Claude Code, Codex CLI, Gemini CLI, and OpenClaw." ---{skill_count} skills in this domain
{agent_count} agents that orchestrate skills across domains
{cmd_count} commands for quick access to common operations