dsh-math-modeling-agent 0.2.2 → 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 +11 -8
- 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,14 +108,16 @@ 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.
|
|
112
|
-
dsh --profile web --dump-config #
|
|
113
|
-
dsh web #
|
|
111
|
+
dsh plugin --profile web add github:yohanchen1/MathModelingAgent#v0.2.4
|
|
112
|
+
dsh --profile web --dump-config # 检查组合层(应看到 dsh-math-modeling-agent-skills 行)
|
|
113
|
+
dsh web # 重启以加载插件
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
-
(npm
|
|
116
|
+
(npm 通道装最新版:`dsh plugin --profile web add dsh-math-modeling-agent`;
|
|
117
|
+
如本机配置了镜像源且同步滞后,可显式走官方源:
|
|
118
|
+
`dsh plugin --profile web add dsh-math-modeling-agent --registry=https://registry.npmjs.org/`)
|
|
117
119
|
|
|
118
|
-
|
|
120
|
+
开始建模——直接描述任务即可。每个会改变模型结构的决策都会在对话中交互确认
|
|
119
121
|
(任务路由、各子问题假设、候选方向、每轮裁决),每轮在对话直接输出 runlog 式摘要
|
|
120
122
|
(问题重述/分析/假设/建模求解/验证/鲁棒性/评价改进/参考文献),失败尝试按类归档到独立目录,
|
|
121
123
|
终态前强制鲁棒性敏感度分析:
|
|
@@ -137,6 +139,7 @@ dsh web # 然后重启
|
|
|
137
139
|
skills/
|
|
138
140
|
├── math-modeling-agent/ # 建模、执行、修正、生成证据
|
|
139
141
|
└── math-modeling-audit/ # 独立复算、反例攻击、证据审查、MCM/ICM 终审
|
|
142
|
+
assets/ # README 工作流总览图
|
|
140
143
|
tests/ # 状态机、锁与恢复、验证协议、打包完整性、MCM 评分
|
|
141
144
|
cordis.patch.yml package.json README.md LICENSE
|
|
142
145
|
```
|