#!/bin/bash # V89 Skill-to-Agent POC - Opus WIRE 19-avr doctrine 95 # Skill: git-diff-stat # Description: Recent git changes # Whitelist-safe: no sudo, no destructive ops, timeout-protected set -e timeout 8 bash -c 'cd /var/www/html && git diff --stat HEAD~5..HEAD 2>/dev/null | tail -5' 2>&1 || echo "{\"skill\":\"git-diff-stat\",\"error\":\"timeout_or_error\"}"