Commit 8659ce9e 8659ce9e244a88f920a8f68deaf14f1a22dbc5b5 by cnb.bofCdSsphPA

Keep every primary handoff entry aligned on the first runnable verification command

Constraint: Restrict this checkpoint to handoff documentation consistency only
Rejected: Leave delivery handoff behind the newer restart guidance | All primary restart entrypoints should expose the same first verification command
Confidence: high
Scope-risk: narrow
Directive: Keep the first runnable command identical across AGENT, README, session handoff, and delivery handoff
Tested: Rechecked relative links in the updated delivery handoff and changelog docs
Not-tested: No code or training path executed in this handoff-consistency checkpoint
1 parent cfdd1765
1 ## 2026-06-02 delivery handoff 同步最短可跑命令 checkpoint
2
3 完成项:
4 - 已把最短可跑命令同步到 `docs/delivery-handoff-2026-06-02.md`
5 - 现在 AGENT / README / session-handoff / delivery-handoff 四处入口已一致。
6
7 结论:
8 - 新 session 无论先看哪个主要交接入口,都能立刻拿到第一条验证命令。
9
1 ## 2026-06-02 AGENT 记忆同步最短可跑命令 checkpoint 10 ## 2026-06-02 AGENT 记忆同步最短可跑命令 checkpoint
2 11
3 完成项: 12 完成项:
......
...@@ -87,3 +87,18 @@ test -f /tmp/ab_smoke_seg_cap48_top2_seed999/report.json && cat /tmp/ab_smoke_se ...@@ -87,3 +87,18 @@ test -f /tmp/ab_smoke_seg_cap48_top2_seed999/report.json && cat /tmp/ab_smoke_se
87 - `test_queries=1` 87 - `test_queries=1`
88 - `val_queries=0` 88 - `val_queries=0`
89 - `dry_run_passed=true` 89 - `dry_run_passed=true`
90
91
92 ## 最短可跑命令
93
94 重启后如果你只想先确认链路是否还通,直接运行:
95
96 ```bash
97 cd /workspace/acr-engine
98 /usr/local/miniconda3/bin/python scripts/business_export_offline_smoke.py --output-root /tmp/business_export_offline_smoke
99 ```
100
101 预期:
102 - 业务导出离线链跑通
103 - 项目 `catalog/train/test/val` 成功生成
104 - `train.py --dry-run` 通过
......