---
title: "Documentation Sync"
description: "Check if documentation matches the current code state."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/docs-sync
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:19:57.519Z
license: CC-BY-4.0
attribution: "Documentation Sync — Claudary (https://claudary.paisolsolutions.com/skills/docs-sync)"
---

# Documentation Sync
Check if documentation matches the current code state.

## Overview

---
description: Check if documentation is in sync with code
allowed-tools: Read, Glob, Grep, Bash(git:*)
---

# Documentation Sync

Check if documentation matches the current code state.

## Instructions

1. **Find recent code changes**:
   ```bash
   git log --since="30 days ago" --name-only --pretty=format: -- "*.ts" "*.tsx" | sort -u
   ```

2. **Find related documentation**:
   - Search `/docs/` for files mentioning changed code
   - Check README files near changed code
   - Look for TSDoc comments in changed files

3. **Verify documentation accuracy**:
   - Do code examples still work?
   - Are API signatures correct?
   - Are prop types up to date?

4. **Report only actual problems**:
   - Documentation is a living document
   - Only flag things that are WRONG, not missing
   - Don't suggest documentation for documentation's sake

5. **Output a checklist** of documentation that needs updating

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/docs-sync) · https://claudary.paisolsolutions.com
