// Seed onboarding screen — two-column layout: emerging-seed rail (left) + Socrates conversation (right). // Ported from docs/design-source/socrata/project/seed-screen.jsx. import { Sigil } from "../socrates/Sigil"; interface SeedField { key: string; label: string; value: string; inferred?: boolean; } interface ThreadTurn { who: "socrates" | "user"; text: string; } const fields: SeedField[] = [ { key: "problem", label: "Problem", value: "First-year STEM students disengage in the long tail between lectures and office hours; a self-efficacy gap forms quickly.", }, { key: "user", label: "Target user", value: "Undergraduates at large public universities, weeks 3–10 of an intro course.", }, { key: "outcome", label: "Desired outcome", value: "Students re-engage with material via a low-stakes thinking partner — without producing solutions.", }, { key: "hypothesis", label: "Initial hypothesis", value: "Students will adopt a tool that explicitly refuses to solve their homework.", inferred: true, }, { key: "constraint", label: "Constraint", value: "FERPA tenancy, P50 < 1.2s.", inferred: true, }, ]; const thread: ThreadTurn[] = [ { who: "socrates", text: "Welcome. I'm Socrates. Before we model anything, let me understand what you're really proposing. In one sentence — what is the smallest, most honest version of the problem?", }, { who: "user", text: "Students disengage between lectures because they have nobody to think with at 11pm.", }, { who: "socrates", text: "Good. Two follow-ups. First, who specifically — and why now? Second, when you say 'think with', do you mean a tutor that explains, or a partner that asks? These are quite different products.", }, { who: "user", text: "Public-university undergrads, weeks 3–10. A partner that asks. The market is saturated with explainers.", }, { who: "socrates", text: "Then the central tension is restraint: a tool that holds its tongue. Most LLM products are rewarded for being helpful. Yours will be rewarded for being patient. Should I draft this as a Constraint on the model — refusal_policy : single-valued — and surface it for your review?", }, ]; export function SeedScreen() { return (
Socrata · Seed · forming
Interview Form
{/* Left: emerging seed */}
Emerging seed
{fields.map(f => (
{f.label} {f.inferred && inferred · 0.74}
{f.value}
))}
Initial model · drafting
«block» Student self_efficacy
«block» Aristotle refusal_policy interaction_style
«constraint» FERPA boundary
Model confidence 0.62
Three more clarifying questions should bring this above 0.80.
{/* Right: Socrates conversation */}
{thread.map((m, i) => (
{m.who === "socrates" && (
)}
{m.who === "socrates" ? "Socrates" : "You"}
{m.text}
))}
Socrates
drafting next question
Public-university undergrads, weeks 3–10. A partner that asks. The market is saturated with explainers.
); }