#!/bin/bash # V89 Skill-to-Agent POC - Opus WIRE 19-avr doctrine 95 # Skill: crontab-list # Description: Active crons # Whitelist-safe: no sudo, no destructive ops, timeout-protected set -e timeout 8 bash -c 'crontab -l 2>/dev/null | grep -v '^#' | head -10' 2>&1 || echo "{\"skill\":\"crontab-list\",\"error\":\"timeout_or_error\"}"