返回 DeepSeek-Reasonix
verify.sh
1 # Forced-delegation twin of the neutral task: identical workdir and checks,
2 # only the prompt differs, so the pair prices delegation on the same work.
3 set -e
4 # One defect hidden across 24 near-identical modules. Reading them all costs
5 # parent context; an explore sub-agent returns only the answer. The check also
6 # fails if the agent "fixed" modules that were already correct.
7 python3 check.py
8 changed=$(grep -L 'endswith' pkg/*.py | wc -l | tr -d " ")
9 test "$changed" = "0"
10
10 lines BASH