Add enterprise-grade standards to scripts

- Add copyright headers to all validation scripts
- Add usage/help functions to user-facing scripts
- Enhance common.sh with dependency checking and timestamps
- Add ENTERPRISE.md with comprehensive standards documentation
- Update scripts/README.md with enterprise features section
- Improve error messages and exit code handling

Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-03 23:08:55 +00:00
parent 0f15207d49
commit f2b8bc9003
16 changed files with 1063 additions and 6 deletions

View File

@@ -136,3 +136,37 @@ PY
fail_if_root() {
[ "$(id -u)" -eq 0 ] && die "Script must not run as root"
}
# ----------------------------------------------------------------------------
# Enterprise features
# ----------------------------------------------------------------------------
# Check for required dependencies at script start
check_dependencies() {
local missing=0
for cmd in "$@"; do
if ! command -v "$cmd" >/dev/null 2>&1; then
log_error "Required command not found: $cmd"
missing=$((missing + 1))
fi
done
[ "$missing" -eq 0 ] || die "Missing $missing required command(s)"
}
# Timeout wrapper for long-running commands
run_with_timeout() {
local timeout="$1"
shift
if command -v timeout >/dev/null 2>&1; then
timeout "$timeout" "$@"
else
"$@"
fi
}
# Add script execution timestamp
log_timestamp() {
if command -v date >/dev/null 2>&1; then
printf '%s\n' "$(date -u '+%Y-%m-%d %H:%M:%S UTC')"
fi
}