Files
Socrates/apps/web/prisma/schema.prisma
dtoro 4e725c0b2b MVP M8: background detection — assumptions, risks, inconsistencies
The editor now runs Socrates' three Phase-0-validated detection prompts
against the live model, persists the findings, and surfaces them in a
new FindingsPanel beside the IssuesPanel. Click any finding to focus its
linked element across rail + diagram. Re-detect after model edits to
refresh against the new state.

apps/web/lib/llm/prompts/socrates
- detect-assumptions.md / detect-risks.md / detect-inconsistencies.md
  promoted verbatim from phase-0 (Phase 0 corpus validated them 10/10).

apps/web/lib/llm/detect.ts
- Three sequential detection passes (parallel was OOM-prone on 4B local
  models — Phase 0 lesson). Each pass uses the Phase 0 JSON schema with
  jsonObjectMode fallback + chatJSON repair-retry. Fail-soft per pass:
  one busted pass returns [] rather than blowing up the whole detect.
- post-validate strips hallucinated element refs (drops findings whose
  refs ALL fail to resolve; keeps findings with zero refs since some
  inconsistencies are genuinely about absences).

apps/web/prisma/schema.prisma
- Finding table: kind / text / linkedElementIds (JSON) / confidence /
  severity / validationCode / status / modelVersion / provider / model.
- ResearchFinding table reserved for the Tavily integration that comes
  next — schema in place so we don't have to migrate again.

apps/web/lib/db/repo.ts
- listOpenFindings(projectId), replaceFindings(...) — replaceFindings
  wipes prior open findings in a transaction and writes the new set so
  re-detect doesn't accumulate stale findings.

apps/web/app/api/projects/[projectId]/findings/route.ts
- GET returns persisted open findings.
- POST runs detect, persists, returns findings + meta (provider, model,
  durationMs, strippedRefs, droppedFindings).

apps/web/components/editor/FindingsPanel.tsx
- New panel, anchored bottom-right just left of IssuesPanel. Shows
  count summary (asm / risk / inc), detect / re-detect button, list
  grouped by kind (inconsistencies first, then risks, then assumptions),
  per-finding glyph + tag + severity + confidence + linked refs.
- Click a finding row → focus its first linked element via the same
  setFocusBlockId path the rail and IssuesPanel already use.
- "stale" indicator when the model version has advanced past the one the
  findings were detected against.

EditorShell wires version + projectId through to FindingsPanel.

Smoke-tested end-to-end: 12 findings returned (5 asm / 4 risk / 3 inc),
0 hallucinated refs stripped, ~37s on local gemma-4-e4b. Sample
assumption "students are willing to engage with an AI tutor that is
programmed to refuse providing complete solutions" — specific to
Aristotle's refusal_policy, not a generic startup truism.

Deferred to follow-ups: inline rail/diagram badges from findings,
auto-detect-on-save, Tavily research, experiment modal.
2026-04-30 00:43:27 +02:00

143 lines
4.4 KiB
Plaintext

// SQLite-backed dev persistence (M5.9). The model is stored as a JSON snapshot
// per project + a changelog of applied ops. This is the smallest shape that
// gives us "refresh persists state" without committing to the full
// event-sourced architecture in docs/sync.md (that lands later).
//
// Switch `provider` to "postgresql" + set DATABASE_URL=postgres://… to move
// to a real DB later — schema is portable.
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
url = "file:./dev.db"
}
model Project {
id String @id
name String
scope String
tagline String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
snapshots ModelSnapshot[]
changes ChangelogEntry[]
threads SocratesThread[]
findings Finding[]
}
model ModelSnapshot {
id String @id @default(cuid())
projectId String
version Int
json String // serialized SysMLModel
createdAt DateTime @default(now())
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
@@unique([projectId, version])
@@index([projectId, version])
}
model ChangelogEntry {
id String @id @default(cuid())
projectId String
version Int // resulting model version after these ops landed
ops String // JSON-encoded ModelOp[]
reason String? // optional human/Socrates-supplied rationale
createdAt DateTime @default(now())
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
@@index([projectId, version])
}
model SocratesThread {
id String @id @default(cuid())
projectId String
/// Model element this thread is anchored to, if any (block id, req id, …).
anchorElementId String?
status String @default("open") // open | archived | resolved
title String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
messages SocratesMessage[]
@@index([projectId])
}
model SocratesMessage {
id String @id @default(cuid())
threadId String
role String // "user" | "assistant"
/// JSON: { text, options?: [{n,label,sub?}] }
content String
/// Provider + model that produced this turn (assistant turns only).
provider String?
model String?
inputTokens Int?
outputTokens Int?
createdAt DateTime @default(now())
thread SocratesThread @relation(fields: [threadId], references: [id], onDelete: Cascade)
@@index([threadId, createdAt])
}
/// Background-detected finding (assumption / risk / inconsistency).
/// Findings are scoped to the model version that produced them; on every
/// detection run we delete the project's previous open findings and write
/// the new set so we don't accumulate stale ones across model edits.
model Finding {
id String @id @default(cuid())
projectId String
/// "assumption" | "risk" | "inconsistency"
kind String
text String
/// JSON-encoded string[] of element ids this finding references.
linkedElementIds String
confidence Float
/// Risks only: "low" | "medium" | "high"
severity String?
/// Inconsistencies only: optional structural-rule code (S1, M2, T1, …)
validationCode String?
/// Lifecycle: "open" | "dismissed" | "resolved"
status String @default("open")
/// Model version this finding was detected against.
modelVersion Int
/// Provider + model that emitted the finding.
provider String?
llmModel String?
createdAt DateTime @default(now())
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
research ResearchFinding[]
@@index([projectId, status])
@@index([projectId, kind])
}
/// Web research results from validating a finding via Tavily / similar.
/// Deferred to a follow-up commit; schema is here so we don't have to
/// migrate again later.
model ResearchFinding {
id String @id @default(cuid())
findingId String
query String
url String
title String?
snippet String?
/// "supports" | "contradicts" | "neutral"
stance String @default("neutral")
createdAt DateTime @default(now())
finding Finding @relation(fields: [findingId], references: [id], onDelete: Cascade)
@@index([findingId])
}