返回 DeepSeek-Reasonix
1 # Forced-delegation twin: identical workdir and checks, only the prompt differs.
2 set -e
3 # 36 files across three non-overlapping packages, each needing a real read
4 # before any edit. This is the branch size where delegation could pay: the
5 # neutral prompt never mentions sub-agents, so an arm that does the work
6 # itself is only penalised by the clock.
7 python3 check.py
8 test -z "$(grep -rn 'fmt_amount([a-z_]*)' pkgs/ || true)"
9
9 lines BASH