P11-D chore(ci): _test_helpers.mbt 哈希校验脚本 + pre-commit 挂接

scripts/ci-check-test-helpers.ps1 (新): 用 SHA256 校验
  tests/core/_test_helpers.mbt == tests/corpus/_test_helpers.mbt
  强制相等；feature 是子集不强制相等但提示手动验证。
  退出码 0=通过 / 1=漂移（提示同步）/ 2=文件缺失。

.githooks/pre-commit 末尾追加 ci-check 阶段：
  moon check + moon test --target wasm-gc 通过后，pwsh 调用校验脚本。
  缺 pwsh 时 WARN 跳过（不阻断 commit，但提示安装 PowerShell）。

tests/{core,corpus,feature}/_test_helpers.mbt 头部加注释提醒：
  哪些 sub-package 必须同步、CI 校验原理（MoonBit 跨包 import 限制
  导致 helper 必须 inline 复制）。

本 commit 顺手修了一个真实漂移：core 在 ] 与 // 8 个真实项目主题 之间有
空行，corpus 没有；core 在 ] 与 // @json.parse 段间有空行，corpus 没有。
CI 校验脚本在本次提交前 exit 1，修复后 exit 0。

验证：pwsh -File scripts/ci-check-test-helpers.ps1 exit 0；漂移模拟（手动
改 core）后 exit 1 阻断 commit；moon test --target wasm-gc 175/175 全绿。

Refs: docs/plans/2026-08-26-p11-architecture-review.md Finding 4.
