@ranger1/dx 0.1.68 → 0.1.69
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.
|
@@ -18,17 +18,17 @@
|
|
|
18
18
|
"model": "openai/gpt-5.3-codex"
|
|
19
19
|
},
|
|
20
20
|
"explore": {
|
|
21
|
-
"model": "openai/gpt-5.
|
|
21
|
+
"model": "openai/gpt-5.3-codex"
|
|
22
22
|
},
|
|
23
23
|
"multimodal-looker": {
|
|
24
24
|
"model": "openai/gpt-5.3-codex"
|
|
25
25
|
},
|
|
26
26
|
"prometheus": {
|
|
27
|
-
"model": "
|
|
27
|
+
"model": "gpt-5.3-codex",
|
|
28
28
|
"variant": "max"
|
|
29
29
|
},
|
|
30
30
|
"metis": {
|
|
31
|
-
"model": "
|
|
31
|
+
"model": "gpt-5.3-codex",
|
|
32
32
|
"variant": "max"
|
|
33
33
|
},
|
|
34
34
|
"momus": {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"model": "openai/gpt-5.1-codex-min"
|
|
76
76
|
},
|
|
77
77
|
"middle": {
|
|
78
|
-
"model": "openai/gpt-5.
|
|
78
|
+
"model": "openai/gpt-5.3-codex"
|
|
79
79
|
},
|
|
80
80
|
"unspecified-low": {
|
|
81
81
|
"model": "openai/gpt-5.1-codex-min",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"variant": "medium"
|
|
87
87
|
},
|
|
88
88
|
"writing": {
|
|
89
|
-
"model": "openai/gpt-5.
|
|
89
|
+
"model": "openai/gpt-5.3-codex"
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
allowed-tools: [Bash, Read, Glob, TodoWrite, Edit, Grep, Task]
|
|
3
3
|
description: '循环审核修复'
|
|
4
|
-
agent: sisyphus
|
|
5
4
|
---
|
|
6
5
|
|
|
7
6
|
# PR Review Loop
|
|
@@ -151,14 +150,14 @@ agent: sisyphus
|
|
|
151
150
|
gh auth status
|
|
152
151
|
|
|
153
152
|
# 1) precheck(round 1)
|
|
154
|
-
python3 "
|
|
153
|
+
python3 "~/.opencode/agents/pr_precheck.py" --pr <PR_NUMBER> --round 1
|
|
155
154
|
|
|
156
155
|
# 2) context(round 1)
|
|
157
|
-
python3 "
|
|
156
|
+
python3 "~/.opencode/agents/pr_context.py" --pr <PR_NUMBER> --round 1
|
|
158
157
|
|
|
159
158
|
# 3) 校验:两者都必须输出单行 JSON,且 runId 必须一致
|
|
160
|
-
python3 "
|
|
161
|
-
python3 "
|
|
159
|
+
python3 "~/.opencode/agents/pr_precheck.py" --pr <PR_NUMBER> --round 1 > ./.cache/_precheck.json
|
|
160
|
+
python3 "~/.opencode/agents/pr_context.py" --pr <PR_NUMBER> --round 1 > ./.cache/_context.json
|
|
162
161
|
python3 - <<'PY'
|
|
163
162
|
import json
|
|
164
163
|
p=json.load(open('./.cache/_precheck.json'))
|
|
@@ -168,7 +167,7 @@ print('OK', p.get('runId'))
|
|
|
168
167
|
PY
|
|
169
168
|
|
|
170
169
|
# 4) 运行脚本相关测试(注意:pytest 把 @ 当作 argfile;必须加 ./ 并加引号)
|
|
171
|
-
python3 -m pytest -q "
|
|
170
|
+
python3 -m pytest -q "~/.opencode/agents/test_pr_review_aggregate.py"
|
|
172
171
|
```
|
|
173
172
|
|
|
174
173
|
## 终止与收尾(强制)
|