You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add guided research brief interview functionality with multi-language support
- Implemented guided brief interview questions and responses in multiple languages (English, Korean, Japanese, Chinese, Spanish, French, German, Portuguese, Russian).
- Added a new utility to detect preflight-only metrics in experiments.
- Enhanced tests for paper analysis and research brief file generation to cover new features and edge cases.
- Updated terminal app to handle guided brief interviews and startup automation commands.
"The previous Codex filesystem/tooling blocker has already been detected and handled by AutoLabOS.",
1773
+
"Do NOT repeat the blocker narrative, sandbox explanation, or any request to retry Codex filesystem actions.",
1774
+
"Treat this as a fresh staged_llm implementation task and return ONLY one JSON object.",
1775
+
"A valid response MUST include non-empty file_edits for every created or modified text artifact needed for the runnable experiment bundle.",
1776
+
"At minimum, emit file_edits for the runnable script and any required config or README referenced by your commands.",
1777
+
"If inspection is incomplete, synthesize the smallest bounded implementation that satisfies the locked task spec, branch focus, and localization hints.",
1778
+
"Task spec:",
1779
+
JSON.stringify(promptTaskSpec,null,2),
1780
+
"",
1781
+
"Search-backed localization hints:",
1782
+
JSON.stringify(promptSearchLocalization,null,2),
1783
+
"",
1784
+
"Branch focus:",
1785
+
JSON.stringify(promptBranchPlan,null,2),
1786
+
"",
1787
+
"Output contract reminder:",
1788
+
"- Return ONLY one JSON object with keys: summary, experiment_mode, run_command, test_command, working_dir, changed_files, artifacts, public_dir, public_artifacts, script_path, metrics_path, localization, assumptions, file_edits.",
1789
+
"- file_edits must contain full UTF-8 contents for each referenced file.",
1790
+
"- Responses that only describe the blocker or omit file_edits are invalid."
1791
+
].join("\n");
1792
+
}
1793
+
1720
1794
privateasynccompleteStagedLlmRequest(input: {
1721
1795
prompt: string;
1722
1796
systemPrompt: string;
@@ -3582,6 +3656,30 @@ function isDeferredExecutionArtifactPath(filePath: string): boolean {
"- A previous Codex workspace filesystem/tooling blocker has already been detected and handled by AutoLabOS.",
3674
+
"- Do NOT repeat the blocker narrative, sandbox failure explanation, or any request to retry Codex filesystem actions.",
3675
+
"- In this staged_llm mode, you must synthesize the implementation directly as structured file_edits.",
3676
+
"- A valid response must include file_edits for each created or modified text artifact needed for the runnable experiment bundle.",
3677
+
"- At minimum, emit file_edits for the runnable script and any required config or README referenced by your commands.",
3678
+
"- If prior attempts failed before materializing files, treat that as resolved context rather than the answer.",
3679
+
"- If inspection is incomplete, generate the smallest bounded implementation that satisfies the task spec, localization hints, and verification command."
0 commit comments