What problem does it solve? Team members in the PI-Guard capstone project may accidentally commit files outside their assigned workspace directories or modify protected files, breaking repository governance rules. This Skill automates the detection and prevention of such violations across commits, staging areas, and pull requests. ## Core Features & Use Cases - Boundary Auditing: Verifies that each member (ducnq, vietpmh, phuongddd) only modifies files inside their own workspaces/<name>/ directory, flagging violations as WORKSPACE_BOUNDARY_VIOLATION. - Immutable File Protection: Blocks any edits to CAPSTONE PROJECT REGISTER.md and docs/fpt_capstone_guide/ at CRITICAL severity, even for the team leader. - Pre-Commit Automation: Installs a Git pre-commit hook via validate_local.py --install-hook that aborts non-compliant commits automatically. - Use Case: Before merging a pull request from a teammate, run the audit script with --commit-range origin/main..HEAD --author <name> to confirm every changed file stays within that member's workspace. ## Quick Start Ask the AI to audit the current staged changes for workspace boundary violations by running the audit script in staged mode.