AI SummaryThis booster helps developers keep project documentation synchronized with code changes by providing documentation file mappings and drift-checking procedures. It benefits teams maintaining `.org`-format documentation alongside evolving codebases.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Check Provider interface" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (15 files) mkdir -p .claude/skills/commands && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/SKILL.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/docs.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/build.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/build.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/changelog.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/changelog.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/debug.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/debug.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/health.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/health.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/lint.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/lint.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/mpv-test.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/mpv-test.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/proto.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/proto.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/provider.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/provider.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/refactor.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/refactor.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/review.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/review.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/scaffold.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/scaffold.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/setup.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/setup.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/test.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/test.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/commands/todo.md "https://raw.githubusercontent.com/justchokingaround/greg/main/.claude/commands/todo.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Update and synchronize project documentation
3. Verify Code Examples
Ensure all code snippets in docs compile: `bash
New Features
Search for recent additions: `bash git log --oneline -20 git diff HEAD~10 --name-only | grep -E '\.(go|org|md)$' `
Documentation Files
All documentation uses .org format (Emacs org-mode): | File | Purpose | |------|---------| | README.org | User documentation, features, installation | | docs/dev/ARCHITECTURE.org | System design, interfaces, data flow | | docs/dev/CONTRIBUTING.org | Development guidelines | | docs/PROVIDERS.org | Provider implementation guide | | docs/CONFIG.org | Configuration reference | | docs/COMMANDS.org | CLI command reference | | CLAUDE.md | AI assistant guidance | | AGENTS.md | AI agent descriptions |
1. Check for Documentation Drift
Compare code with docs: `bash
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster