ajhahn.de
← eeco
plain text 20 lines
#!/bin/sh
# Workflow: __NAME__
#
# Runs with the repository root as the working directory. Available
# environment: EECO_REPO_ROOT, EECO_WORKSPACE, EECO_PROFILE, EECO_AI.
#
# Contract — exit with one of:
#   0  clean
#   1  finding / failure
#   2  blocked (a required tool is missing)
#   3  AI pass deferred (EECO_AI=false and an AI pass was wanted)
#
# Write nothing outside "$EECO_WORKSPACE". Use the queue for decisions.

set -eu

# TODO: implement the check. Placeholder passes clean.
echo "__NAME__: not yet implemented — passing clean"
exit 0