okstra 0.45.0 → 0.45.1
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/package.json
CHANGED
package/runtime/BUILD.json
CHANGED
|
@@ -229,11 +229,11 @@
|
|
|
229
229
|
}
|
|
230
230
|
},
|
|
231
231
|
"defaults_or_custom": {
|
|
232
|
-
"label": "
|
|
232
|
+
"label": "역할별로 어떤 모델을 쓸지 정하는 단계입니다 (참여 워커 구성을 바꾸는 게 아닙니다).\n· 기본값으로 진행 — lead·실행자/워커·report-writer 를 모두 추천 모델로 두고 바로 진행합니다.\n· 커스터마이즈 — 역할별 모델을 직접 고르고, 추가 directive·관련 task 도 지정합니다.",
|
|
233
233
|
"echo_template": "customize: {value}",
|
|
234
234
|
"options": {
|
|
235
|
-
"defaults": "
|
|
236
|
-
"customize": "
|
|
235
|
+
"defaults": "기본값으로 진행 (역할별 추천 모델 그대로)",
|
|
236
|
+
"customize": "커스터마이즈 (역할별 모델 직접 선택)"
|
|
237
237
|
}
|
|
238
238
|
},
|
|
239
239
|
"workers_override": {
|
|
@@ -1068,23 +1068,22 @@ def _list_implementation_planning_reports(
|
|
|
1068
1068
|
"""
|
|
1069
1069
|
if not state.task_group or not state.task_id or not state.project_root:
|
|
1070
1070
|
return []
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1071
|
+
# Run seq lives in the filename, not a per-run subdirectory: every
|
|
1072
|
+
# implementation-planning run writes into the same flat `reports/`
|
|
1073
|
+
# dir (see paths.py — `run_reports = runs/<task-type>/reports`).
|
|
1074
|
+
reports_dir = (tasks_root(state.project_root)
|
|
1075
|
+
/ slugify_task_segment(state.task_group)
|
|
1076
|
+
/ slugify_task_segment(state.task_id)
|
|
1077
|
+
/ "runs" / "implementation-planning" / "reports")
|
|
1078
|
+
if not reports_dir.is_dir():
|
|
1076
1079
|
return []
|
|
1077
1080
|
pat = re.compile(r"^final-report-implementation-planning-(\d+)\.md$")
|
|
1078
1081
|
found: list[tuple[int, Path]] = []
|
|
1079
|
-
for
|
|
1080
|
-
|
|
1081
|
-
if not
|
|
1082
|
+
for child in reports_dir.iterdir():
|
|
1083
|
+
m = pat.match(child.name)
|
|
1084
|
+
if not m:
|
|
1082
1085
|
continue
|
|
1083
|
-
|
|
1084
|
-
m = pat.match(child.name)
|
|
1085
|
-
if not m:
|
|
1086
|
-
continue
|
|
1087
|
-
found.append((int(m.group(1)), child))
|
|
1086
|
+
found.append((int(m.group(1)), child))
|
|
1088
1087
|
found.sort(key=lambda x: -x[0])
|
|
1089
1088
|
out: list[Path] = []
|
|
1090
1089
|
for _, p in found[:limit]:
|