Feature/product platform foundation v0.62 #1

Merged
robbond merged 683 commits from feature/product-platform-foundation-v0.62 into feature/emergent-unknowns-v0.5 2026-09-09 07:58:20 +01:00
Showing only changes of commit 91bc3f1445 - Show all commits
+7 -7
View File
@@ -479,13 +479,7 @@ export default function ReasoningWorkspace({
{/* ── 2. Post-update acknowledgement ─────────────── */} {/* ── 2. Post-update acknowledgement ─────────────── */}
{updateStatus === "success" && canAnswer && <UpdateAcknowledgement updateResult={result} />} {updateStatus === "success" && canAnswer && <UpdateAcknowledgement updateResult={result} />}
{/* ── 3. Current understanding ───────────────────── */} {/* ── 3. Response form ───────────────────────────── */}
{canAnswer && graph && <CurrentUnderstandingCard currentSummary={graph.currentSummary} />}
{/* ── 4. Investigation history ───────────────────── */}
<InvestigationHistory turns={investigationHistory} />
{/* ── 5. Response form (immediately after Current investigation) ─ */}
{canAnswer && ( {canAnswer && (
<form onSubmit={handleUpdateCaptureAndSubmit} className="space-y-4 rounded-lg border border-gray-200 bg-white p-5"> <form onSubmit={handleUpdateCaptureAndSubmit} className="space-y-4 rounded-lg border border-gray-200 bg-white p-5">
<div> <div>
@@ -517,6 +511,12 @@ export default function ReasoningWorkspace({
</form> </form>
)} )}
{/* ── 4. Current understanding ───────────────────── */}
{canAnswer && graph && <CurrentUnderstandingCard currentSummary={graph.currentSummary} />}
{/* ── 5. Investigation history ───────────────────── */}
<InvestigationHistory turns={investigationHistory} />
{/* ── 6. Original situation (collapsed by default) ─ */} {/* ── 6. Original situation (collapsed by default) ─ */}
<OriginalSituation scenario={scenario} centralStatement={graph?.centralStatement} /> <OriginalSituation scenario={scenario} centralStatement={graph?.centralStatement} />