project-docs-sync

Installation
SKILL.md

Project Documentation Sync Skill

Purpose: Keep project documentation consistent without manual syncing overhead.

Trigger: Auto-invoked by PostToolUse hook when files in project-management/ are edited.


Decision Logic: Should We Sync?

def should_sync(change: dict) -> tuple[bool, str]:
    """Conservative sync decision - only on big changes."""

    # Track last sync state
    last_sync = load_last_sync()  # from .meta/last-sync.json
Installs
1
GitHub Stars
2
First Seen
Apr 18, 2026
project-docs-sync — macroman5/claude-code-workflow-plugins