From 2a9035ce200e38255390db77447f8ecd15d1a616 Mon Sep 17 00:00:00 2001 From: kdletters Date: Wed, 16 Sep 2026 00:20:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E9=BD=90=20Direct=20Codex=20=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 发送直接回合时携带 manifest projectId,匹配 Rust 契约与测试断言 --- apps/ai-game-creator-shell/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/ai-game-creator-shell/src/App.tsx b/apps/ai-game-creator-shell/src/App.tsx index 7d0e734d6..9a92bbdfe 100644 --- a/apps/ai-game-creator-shell/src/App.tsx +++ b/apps/ai-game-creator-shell/src/App.tsx @@ -6669,6 +6669,7 @@ export function App({ setProjectSupervisorRuntimeError(''); try { const directTurnInput: { + projectId: string; projectPath: string; prompt: string; clientTurnId: string; @@ -6676,6 +6677,7 @@ export function App({ attachments?: DirectCodexTurnAttachment[]; userItem: ReturnType; } = { + projectId: localProject.manifest.projectId, projectPath: directProjectPath, prompt, clientTurnId,