Generate architectural wikis with source code traceability. Creates comprehensive documentation including architecture overviews, module docs, data flow diagrams, and interactive static sites. Use when asked to document a codebase, generate architecture docs, create a wiki, or explain how a project is structured.
View on GitHubskills/ted-mosby/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/GhostScientist/skills/blob/main/skills/ted-mosby/SKILL.md -a claude-code --skill ted-mosbyInstallation paths:
.claude/skills/ted-mosby/# Ted Mosby - Architecture Wiki Generator Generate comprehensive architectural documentation for any codebase with source code traceability (file:line references). ## Overview Ted Mosby creates architectural wikis that help developers understand codebases. Every concept links directly to source code, so you can navigate from documentation to implementation. **Output includes:** - Architecture overview with Mermaid diagrams - Module documentation with source traceability - Data flow documentation - Getting started guides - Interactive static site with search, keyboard nav, dark mode ## When to Use This Skill Use this skill when the user wants to: - Document a codebase or project architecture - Generate a wiki or documentation site - Create architecture diagrams with source references - Understand and document how a project is structured - Produce navigable documentation with file:line traceability **Trigger phrases:** - "Generate docs for this project" - "Create architecture documentation" - "Document this codebase" - "Make a wiki for this repo" - "Help me understand this project's structure" ## Prerequisites ### Required - Node.js >= 18.0.0 - Anthropic API key (`ANTHROPIC_API_KEY` environment variable) ### Check Prerequisites ```bash # Verify Node.js version node --version # Should be >= 18.0.0 # Verify API key is set echo $ANTHROPIC_API_KEY # Should show your key ``` ### Install Ted Mosby ```bash npm install -g ted-mosby ``` ## Quick Start Commands ### Basic Wiki Generation ```bash # Generate wiki for current directory ted-mosby generate -r . # Generate wiki for a specific project ted-mosby generate -r ./my-project # Generate wiki for a GitHub repository ted-mosby generate -r https://github.com/user/repo ``` ### With Interactive Site ```bash # Generate wiki + interactive static site ted-mosby generate -r ./my-project --site # Custom title and theme ted-mosby generate -r ./my-project --site --site-title "My Project Docs" --theme dark # Generate