dsh-math-modeling-agent 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -93,9 +93,9 @@ research/ walls/ # 文献检索 / 突破备忘录
|
|
|
93
93
|
reproducibility.json final-report.md
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
每个会改变模型结构的决策在对话中交互确认并写入 ledger(D0 重述/D1 路由/D2 子问题假设/
|
|
97
|
+
D3 方向/D4 裁决),`run-state.mjs gate` 在每次状态转移前强制校验;终态前强制鲁棒性
|
|
98
|
+
敏感度分析;失败尝试按类归档到独立目录。
|
|
99
99
|
|
|
100
100
|
崩溃恢复:跨进程互斥锁 + stale 锁与 reclaim guard 回收 + Windows 共享冲突重试;已完成且输入未变的工作不重跑;任何失败都保留最佳候选与原始产物。
|
|
101
101
|
|
|
@@ -108,7 +108,7 @@ D2 子问题假设/D3 方向/D4 裁决),`run-state.mjs gate` 在每次状态
|
|
|
108
108
|
安装:
|
|
109
109
|
|
|
110
110
|
```bash
|
|
111
|
-
dsh plugin --profile web add github:yohanchen1/MathModelingAgent#v0.2.
|
|
111
|
+
dsh plugin --profile web add github:yohanchen1/MathModelingAgent#v0.2.4
|
|
112
112
|
dsh --profile web --dump-config # 检查组合层(应看到 dsh-math-modeling-agent-skills 行)
|
|
113
113
|
dsh web # 重启以加载插件
|
|
114
114
|
```
|
|
@@ -117,7 +117,7 @@ dsh web # 重启以加载插件
|
|
|
117
117
|
如本机配置了镜像源且同步滞后,可显式走官方源:
|
|
118
118
|
`dsh plugin --profile web add dsh-math-modeling-agent --registry=https://registry.npmjs.org/`)
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
开始建模——直接描述任务即可。每个会改变模型结构的决策都会在对话中交互确认
|
|
121
121
|
(任务路由、各子问题假设、候选方向、每轮裁决),每轮在对话直接输出 runlog 式摘要
|
|
122
122
|
(问题重述/分析/假设/建模求解/验证/鲁棒性/评价改进/参考文献),失败尝试按类归档到独立目录,
|
|
123
123
|
终态前强制鲁棒性敏感度分析:
|