- validate_file_docstrings.sh: per-file MCRF_* compliance check (PASS/FAIL), the completion signal for one-agent-per-file docstring conversion. - check_frozen_docstrings.sh: strict gate over the frozen (non-3D) binding surface; locks F15 against regression (mirrors the API-surface snapshot test). Both wrap tools/audit_pymethoddef.py (tree-sitter, .venv-audit). Refs #314 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
42 lines
1.5 KiB
Bash
Executable file
42 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
# check_frozen_docstrings.sh - strict MCRF_* docstring-macro gate over the FROZEN
|
|
# (1.0) Python-binding surface.
|
|
#
|
|
# Part of #314 F15. Mirrors the role of tests/unit/api_surface_snapshot_test.py:
|
|
# once the frozen binding files are converted to MCRF_METHOD/MCRF_PROPERTY, this
|
|
# gate prevents regression to raw docstrings. Experimental 3D/Voxel bindings
|
|
# (src/3d/) are exempt from the 1.0 freeze and intentionally excluded.
|
|
#
|
|
# Usage:
|
|
# tools/check_frozen_docstrings.sh
|
|
#
|
|
# Exit codes:
|
|
# 0 PASS - all frozen binding files are 100% MCRF_* compliant
|
|
# 1 FAIL - one or more raw/missing doc slots remain in a frozen file
|
|
# 2 ERROR - missing tooling
|
|
set -u
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
PY="$ROOT/.venv-audit/bin/python3"
|
|
AUDIT="$ROOT/tools/audit_pymethoddef.py"
|
|
|
|
if [ ! -x "$PY" ]; then
|
|
echo "ERROR: $PY not found (need .venv-audit with tree-sitter + tree-sitter-cpp)" >&2
|
|
exit 2
|
|
fi
|
|
|
|
# Frozen surface = all binding sources EXCEPT experimental 3D/Voxel (src/3d/).
|
|
mapfile -t FILES < <(find "$ROOT/src" -name '*.cpp' -not -path '*/3d/*' | sort)
|
|
if [ "${#FILES[@]}" -eq 0 ]; then
|
|
echo "ERROR: no source files found under $ROOT/src" >&2
|
|
exit 2
|
|
fi
|
|
|
|
"$PY" "$AUDIT" --strict --quiet --paths "${FILES[@]}"
|
|
RC=$?
|
|
if [ "$RC" -eq 0 ]; then
|
|
echo "FROZEN DOCSTRING GATE: PASS (frozen binding surface is 100% MCRF_* compliant)"
|
|
else
|
|
echo "FROZEN DOCSTRING GATE: FAIL (raw/missing docstrings remain in frozen files; src/3d/ is exempt)"
|
|
fi
|
|
exit $RC
|