Commit cfdd1765 cfdd176585b1d785a0f32f4e14e95741a713c01f by cnb.bofCdSsphPA

Synchronize the shortest runnable restart command into agent memory

Constraint: Limit this checkpoint to memory and handoff documentation only
Rejected: Keep the restart command only in README | New sessions should see the first verification command directly in AGENT memory too
Confidence: high
Scope-risk: narrow
Directive: Keep AGENT memory focused on restart-critical commands and avoid duplicating full workflow specs there
Tested: Rechecked 174 relative links across AGENT, changelog, and handoff docs
Not-tested: No code or training path executed in this memory-only checkpoint
1 parent 74313c01
...@@ -90,3 +90,16 @@ ...@@ -90,3 +90,16 @@
90 - `docs/session-handoff.md` 90 - `docs/session-handoff.md`
91 - `docs/CHANGELOG.md` 91 - `docs/CHANGELOG.md`
92 92
93 ## 7.5 新 session 最短可跑命令
94
95 ```bash
96 cd /workspace/acr-engine
97 /usr/local/miniconda3/bin/python scripts/business_export_offline_smoke.py \
98 --output-root /tmp/business_export_offline_smoke
99 ```
100
101 预期:
102 - 业务导出离线链跑通
103 - 生成项目 manifests
104 - `train.py --dry-run` 通过
105
......
1 ## 2026-06-02 AGENT 记忆同步最短可跑命令 checkpoint
2
3 完成项:
4 - 已把 `business_export_offline_smoke.py` 的最短可跑命令同步到 `AGENT.md`
5 - 已让 README 与 AGENT 的重启入口保持一致。
6
7 结论:
8 - 下次新 session 启动时,不仅 docs 能找到最短验证命令,AGENT 记忆里也能直接看到。
9
1 ## 2026-06-02 总览页补齐最短可跑命令 checkpoint 10 ## 2026-06-02 总览页补齐最短可跑命令 checkpoint
2 11
3 完成项: 12 完成项:
......
...@@ -257,6 +257,7 @@ ...@@ -257,6 +257,7 @@
257 - `docs/README.md` 已补齐业务数据接入导航与最短链说明。 257 - `docs/README.md` 已补齐业务数据接入导航与最短链说明。
258 - `docs/README.md` 已新增“新 session 最短阅读顺序”。 258 - `docs/README.md` 已新增“新 session 最短阅读顺序”。
259 - `docs/README.md` 已新增“新 session 最短可跑命令”。 259 - `docs/README.md` 已新增“新 session 最短可跑命令”。
260 - `AGENT.md` 已同步最短可跑命令。
260 261
261 ### 最优先待办 262 ### 最优先待办
262 1. 把已完成的 toy bucket baseline 升级为语义 bucket(风格 / 结构 / hard-case)。 263 1. 把已完成的 toy bucket baseline 升级为语义 bucket(风格 / 结构 / hard-case)。
......