# π Mission Control β Bouwplan Swift v3.0
π‘ **Transformatie:** Van Command Center naar Medical Scribe Chatbot Interface
---
**Projectnaam:** Swift Medical Scribe v3.0
**Versie:** v3.0
**Datum:** 27-12-2024
**Auteur:** Colin Lit
---
## 1. Doel en context
π― **Doel:** Swift transformeren van een command-line style interface naar een conversational medical scribe chatbot met split-screen layout (chat links, artifacts rechts).
π **Context:**
De huidige Swift v2.1 werkt met een command-line paradigma waar gebruikers kort commando's typen ("notitie jan medicatie"). Dit werkt goed, maar voelt transactioneel aan. Gebruikers willen doorvragen, context behouden, en natuurlijker interacteren met het systeem.
**De transformatie:**
- **Van:** Command-line input β Centered blocks β Recent strip
- **Naar:** Chat conversation β Split-screen (40/60) β Artifacts rechts
**Waarom deze verandering:**
1. **Natuurlijkere interactie** β Voelt als praten met collega i.p.v. commando's typen
2. **Context behoud** β Conversatiegeschiedenis blijft zichtbaar
3. **Follow-up mogelijk** β Gebruiker kan doorvragen zonder opnieuw te beginnen
4. **Bekende UX** β Lijkt op ChatGPT Canvas / Claude Artifacts (bekend voor gebruikers)
**Referenties:**
- **FO v3.0:** `fo-swift-medical-scribe-v3.md` β Functioneel ontwerp medical scribe
- **Haalbaarheid:** `haalbaarheidsanalyse-v3.md` β Feasibility analysis (6-8 weken, haalbaar)
- **UX Analyse:** `v3-redesign-met-huidige-styling.md` β Wat blijft vs. wijzigt
- **UX v2.1:** `archive/swift-ux-v2.1.md` β Huidige UX/styling
---
## 2. Uitgangspunten
### 2.1 Technische Stack
**Frontend:**
- Next.js 14 (App Router) β
Bestaand
- React 18 met TypeScript β
Bestaand
- Tailwind CSS + shadcn/ui β
Bestaand
- Lucide Icons β
Bestaand
- Zustand (state management) β
Bestaand
**Backend & Database:**
- Supabase (PostgreSQL + Auth) β
Bestaand
- FHIR-inspired datamodel β
Bestaand
- Row Level Security (RLS) β
Bestaand
**AI/ML Services:**
- Anthropic Claude API (Sonnet 4.5) β
Bestaand
- Deepgram (speech-to-text) β
Bestaand
- Streaming API responses (SSE) π Nieuw patroon voor chat
**Hosting & Deploy:**
- Vercel (production deployment) β
Bestaand
- Environment variables via `.env.local` β
Bestaand
**Nieuwe Dependencies:**
- Geen nieuwe externe libraries nodig
- Hergebruik van bestaande `/api/docs/chat` streaming pattern
### 2.2 Projectkaders
**Tijd:**
- **Totaal:** 6-8 weken bouwtijd
- **Fase 1 (Foundation):** Week 1-2
- **Fase 2 (Chat API):** Week 3-4
- **Fase 3 (Artifacts & Polish):** Week 5-6
- **Fase 4 (Testing):** Week 7-8
**Team:**
- 1 developer (full-time)
- AI assistant (Claude Code) voor development support
**Scope:**
- **In scope:** Alle P1 intents (dagnotitie, zoeken, overdracht, patient context)
- **Out of scope:** P2/P3 intents blijven werken maar geen redesign
- **Feature flag:** v3.0 achter feature flag zodat v2.1 beschikbaar blijft
**Data:**
- Alle bestaande Supabase data blijft werken
- Geen database migraties nodig
- Alleen nieuwe API endpoints + frontend components
**Risicomanagement:**
- Incremental rollout via feature flag
- v2.1 blijft beschikbaar als fallback
- A/B testing mogelijk voor user feedback
### 2.3 Programmeer Uitgangspunten
**Code Quality Principles:**
- **DRY (Don't Repeat Yourself)**
- Herbruikbare chat components (`ChatMessage`, `ChatBubble`)
- Centrale config voor message types
- Shared utilities voor streaming responses
- **KISS (Keep It Simple, Stupid)**
- Geen overengineering van chat state
- Eenvoudige Zustand store uitbreiding
- Geen nieuwe frameworks/libraries indien niet nodig
- **SOC (Separation of Concerns)**
- Chat UI gescheiden van artifact logic
- Message rendering gescheiden van streaming logic
- API calls in dedicated `/lib/swift/chat-api.ts`
- **YAGNI (You Aren't Gonna Need It)**
- Bouw alleen conversation features die in FO staan
- Geen "nice to have" features (bijv. message editing, reactions)
- Start met max 3 artifacts, niet meer
**Development Practices:**
- **Code Organization**
```
components/swift/
βββ chat/ # π Nieuwe chat components
β βββ chat-panel.tsx
β βββ chat-message.tsx
β βββ chat-input.tsx
β βββ streaming-indicator.tsx
βββ artifacts/ # π Nieuwe artifact wrapper
β βββ artifact-container.tsx
β βββ artifact-tab.tsx
βββ blocks/ # β
Bestaand, blijft werken
β βββ dagnotitie-block.tsx
β βββ zoeken-block.tsx
β βββ overdracht-block.tsx
βββ command-center/ # π Wijzigt naar split-screen
βββ command-center.tsx
βββ context-bar.tsx # β
Blijft ongewijzigd
βββ offline-banner.tsx # β
Blijft ongewijzigd
```
- **Error Handling**
- Hergebruik bestaande `lib/swift/error-handler.ts`
- Chat-specific error states (connection lost, stream interrupted)
- User-friendly foutmeldingen in chat ("Er ging iets mis, probeer opnieuw")
- **Security**
- API keys blijven server-side (Claude API key)
- Chat messages niet persistent opgeslagen (alleen in session state)
- RLS rules blijven gelden voor artifacts
- **Performance**
- Virtual scrolling voor lange chat histories (>100 messages)
- Debounce op typing indicator (300ms)
- Lazy load artifacts (alleen renderen wanneer actief)
- Streaming responses via SSE (Server-Sent Events)
- **Testing**
- Manual smoke tests voor alle chat flows
- Integration tests voor `/api/swift/chat` endpoint
- Edge case testing (stream interruption, long messages, etc.)
**Voorbeeld implementatie:**
```typescript
// β
DRY - Herbruikbare message component
interface ChatMessageProps {
type: 'user' | 'assistant' | 'system' | 'error';
content: string;
timestamp?: Date;
}
export function ChatMessage({ type, content, timestamp }: ChatMessageProps) {
const styles = MESSAGE_STYLES[type]; // Centrale config
return (
{/* ... */}
);
}
// β
SOC - API logic gescheiden
// In /lib/swift/chat-api.ts
export async function sendChatMessage(
message: string,
history: ChatMessage[]
): Promise {
const response = await fetch('/api/swift/chat', {
method: 'POST',
body: JSON.stringify({ message, history }),
});
return response.body!;
}
// β
KISS - Simpele state management
interface ChatState {
messages: ChatMessage[];
isStreaming: boolean;
addMessage: (msg: ChatMessage) => void;
}
const useChatStore = create((set) => ({
messages: [],
isStreaming: false,
addMessage: (msg) => set((s) => ({
messages: [...s.messages, msg]
})),
}));
```
---
## 3. Epics & Stories Overzicht
π― **Doel:** De bouw opdelen in 6 logische epics met concrete deliverables.
**Epic Structuur:**
| Epic ID | Titel | Doel | Status | Stories | Story Points | Opmerkingen |
|---------|-------|------|--------|---------|--------------|-------------|
| E0 | Pre-work & Planning | Design tokens, component audit, system prompt | β
**Compleet** | 3/3 | 5 SP | Docs aangemaakt |
| E1 | Foundation - Split-screen | Layout naar 40/60 split | β
**Compleet** | 3/3 | 12 SP | E1.S1 geskipt (geen feature flag) |
| E2 | Chat Panel & Messages | Chat UI zonder AI | β
**Compleet** | 5/5 | 13 SP | Scrolling, input, shortcuts |
| E3 | Chat API & Medical Scribe | AI conversatie werkend | β³ In Progress | 4/6 | 21 SP | Intent detection parsing |
| E4 | Artifact Area & Tabs | Meerdere artifacts mogelijk | β³ To Do | 0/4 | 13 SP | Week 5 |
| E5 | AI-Filtering & Polish | Psychiater filtering, polish | β³ To Do | 0/5 | 13 SP | Week 6 |
| E6 | Testing & Refinement | QA, bugs, performance | β³ To Do | 0/4 | 8 SP | Week 7-8 |
**Totaal:** 31 stories, **85 Story Points** (~7 weken Γ 12 SP/week)
**Voortgang:** β
15/31 stories compleet (46 SP / 85 SP = **54%**)
**Belangrijk:**
- β οΈ Voer niet in 1x het volledige plan uit. Bouw per epic en per story.
- β οΈ Dependencies/migraties moeten eerst aan Colin worden gemeld.
- Feature flag vanaf E1: `FEATURE_FLAG_SWIFT_V3=true` in `.env.local`
---
## 4. Epics & Stories (Uitwerking)
### Epic 0 β Pre-work & Planning β
**COMPLEET**
**Epic Doel:** Voorbereiding werk voordat development start. Design tokens verificatie, component audit, medical scribe system prompt.
| Story ID | Beschrijving | Acceptatiecriteria | Status | Afhankelijkheden | Story Points |
|----------|--------------|---------------------|--------|------------------|--------------|
| E0.S1 | Design tokens audit | Alle kleuren/spacing/typography gedocumenteerd in v3 doc | β
**Compleet** | β | 1 |
| E0.S2 | Component inventory | Lijst van alle blocks die herbruikbaar zijn | β
**Compleet** | β | 2 |
| E0.S3 | Medical scribe system prompt | Eerste versie prompt voor `/api/swift/chat`, getest met Claude | β
**Compleet** | β | 2 |
**Technical Notes:**
- E0.S1: Check of alle tokens uit v2.1 nog kloppen voor v3.0 β
- E0.S2: Maak lijst van blocks die NIET wijzigen vs. die WEL wijzigen β
- E0.S3: Prompt moet Nederlands zijn, vriendelijk maar professioneel, intent detection β
**Deliverables:**
- β
`docs/swift/e0-design-tokens-and-components.md` β Design tokens audit + component inventory
- β
`docs/swift/e0-medical-scribe-system-prompt.md` β Medical scribe prompt v1.0
---
### Epic 1 β Foundation - Split-screen Layout β
**COMPLEET**
**Epic Doel:** CommandCenter omzetten naar split-screen layout (40% chat, 60% artifacts).
| Story ID | Beschrijving | Acceptatiecriteria | Status | Afhankelijkheden | Story Points |
|----------|--------------|---------------------|--------|------------------|--------------|
| ~~E1.S1~~ | ~~Feature flag setup~~ | ~~`FEATURE_FLAG_SWIFT_V3` in `.env` + conditional rendering~~ | β **GESKIPT** | β | ~~1~~ |
| E1.S2 | CommandCenter layout wijzigen | Split-screen grid (40/60), context bar blijft | β
**Compleet** | E0.S2 | 5 |
| E1.S3 | Placeholder componenten | ChatPanel (welcome msg), ArtifactArea (placeholder) | β
**Compleet** | E1.S2 | 2 |
| E1.S4 | Responsive breakpoints | Desktop/tablet/mobile toggle tussen chat/artifact | β
**Compleet** | E1.S3 | 5 |
**Technical Notes:**
```tsx
// E1.S2 - Layout structuur
{/* Blijft ongewijzigd */}
{/* Chat Panel - 40% */}
{/* Placeholder in E1.S3 */}
{/* Artifact Area - 60% */}
{/* Placeholder in E1.S3 */}
```
**Responsive breakpoints (E1.S4):**
- Desktop (>1200px): 40/60 split zichtbaar
- Tablet (768-1200px): 45/55 split
- Mobile (<768px): Toggle tussen chat en artifact (full screen)
**Deliverables:**
- β
`components/swift/chat/chat-panel.tsx` β Chat placeholder met welcome message
- β
`components/swift/artifacts/artifact-area.tsx` β Artifact placeholder met voorbeelden
- β
`components/swift/command-center/command-center.tsx` β Gerefactored naar split-screen (40/60)
- β
Responsive breakpoints: `lg:w-[40%]` en `lg:w-[60%]` (desktop), `w-full` (mobile)
- β
Build succesvol zonder errors
**Note:** E1.S1 (Feature flag) geskipt β we werken op separate branch `swift` i.p.v. feature flag
---
### Epic 2 β Chat Panel & Messages β
**COMPLEET**
**Epic Doel:** Chat UI werkend krijgen zonder AI (gebruikers kunnen typen en zien messages verschijnen).
| Story ID | Beschrijving | Acceptatiecriteria | Status | Afhankelijkheden | Story Points |
|----------|--------------|---------------------|--------|------------------|--------------|
| E2.S1 | Store uitbreiding | `chatMessages`, `isStreaming` in swift-store.ts | β
**Compleet** | E1.S4 | 2 |
| E2.S2 | ChatMessage component | User/assistant/system/error message types met styling | β
**Compleet** | E2.S1 | 3 |
| E2.S3 | ChatPanel component | Scrollable message list, auto-scroll, scroll-lock | β
**Compleet** | E2.S2 | 5 |
| E2.S4 | ChatInput component | Tekst input onderaan chat (40% width), enter to send | β
**Compleet** | E2.S3 | 2 |
| E2.S5 | Keyboard shortcuts | βK focus, Escape clear, Enter submit | β
**Compleet** | E2.S4 | 1 |
**Technical Notes:**
**E2.S1 - Store uitbreiding:**
```typescript
// stores/swift-store.ts
interface SwiftStore {
// Bestaand
activePatient: Patient | null;
activeBlock: BlockType | null;
shift: ShiftType;
// Nieuw voor chat
chatMessages: ChatMessage[];
isStreaming: boolean;
pendingAction: Action | null;
// Actions
addChatMessage: (message: ChatMessage) => void;
clearChat: () => void;
setStreaming: (streaming: boolean) => void;
}
```
**E2.S2 - Message styling:**
```tsx
// components/swift/chat/chat-message.tsx
const MESSAGE_STYLES = {
user: {
container: 'self-end bg-amber-50 border-amber-200',
borderRadius: 'rounded-2xl rounded-tr-sm',
},
assistant: {
container: 'self-start bg-slate-100 border-slate-200',
borderRadius: 'rounded-2xl rounded-tl-sm',
},
system: {
container: 'self-center bg-transparent text-slate-500 text-sm',
borderRadius: '',
},
error: {
container: 'self-start bg-red-50 border-red-200',
borderRadius: 'rounded-2xl',
},
};
```
**E2.S3 - Auto-scroll gedrag:**
- Auto-scroll naar laatste message bij nieuwe message
- Scroll-lock wanneer user omhoog scrollt (detecteer scroll position)
- "β Scroll to bottom" knop verschijnt bij nieuwe messages tijdens scroll-lock
**E2.S4 - Chat input:**
- Onderaan chat panel (40% width)
- Multi-line support (Shift+Enter voor new line)
- Enter submit (tenzij Shift pressed)
- Placeholder: "Typ of spreek..."
**E2.S5 - Keyboard shortcuts:**
- βK / Ctrl+K: Focus chat input (global)
- Escape: Clear input (local)
- Enter: Submit message
- Shift+Enter: New line
**Deliverables:**
- β
`stores/swift-store.ts` (+87 regels) β Chat state: chatMessages[], isStreaming, pendingAction, actions
- β
`components/swift/chat/chat-message.tsx` (76 regels) β Message component met 4 types (user/assistant/system/error)
- β
`components/swift/chat/chat-panel.tsx` (148 regels) β Scrollable message list, auto-scroll, scroll-lock, keyboard shortcuts
- β
`components/swift/chat/chat-input.tsx` (184 regels) β Multi-line input, Enter submit, Shift+Enter new line, forwardRef
- β
Keyboard shortcuts: βK focus, Escape clear, Enter submit, Shift+Enter new line
- β
Auto-scroll met scroll-lock detection (100px threshold)
- β
"Scroll naar beneden" button bij scroll-lock
- β
Cross-platform support (macOS + Windows/Linux)
- β
Build succesvol zonder errors
**Git Commits:**
- `e3ff72c` β E2.S1 & E2.S2 (Store uitbreiding + ChatMessage component)
- `b5e245e` β E2.S3 (ChatPanel scrolling functionaliteit)
- `8f6f24f` β E2.S4 (ChatInput component met keyboard shortcuts)
- `d2931a3` β E2.S5 (Global keyboard shortcuts βK focus)
---
### Epic 3 β Chat API & Medical Scribe β³ **IN PROGRESS**
**Epic Doel:** AI conversatie werkend krijgen met intent detection en artifact opening.
| Story ID | Beschrijving | Acceptatiecriteria | Status | Afhankelijkheden | Story Points |
|----------|--------------|---------------------|--------|------------------|--------------|
| E3.S1 | Chat API endpoint skeleton | `/api/swift/chat` route met SSE setup | β
**Compleet** | E2.S5 | 3 |
| E3.S2 | Streaming response logic | Claude API streaming werkt, chunks naar frontend | β
**Compleet** | E3.S1 | 5 |
| E3.S3 | Medical scribe system prompt | Prompt met role, intents, examples, Nederlands | β
**Compleet** | E3.S2 | 3 |
| E3.S4 | Intent detection in response | AI genereert action objects (intent + entities) | β
**Compleet** | E3.S3 | 5 |
| E3.S5 | Frontend streaming handling | useChatStream hook, message chunks renderen | β³ | E3.S4 | 3 |
| E3.S6 | Artifact opening from chat | Action object opent juiste block met prefill | β³ | E3.S5 | 2 |
**Technical Notes:**
**E3.S1 - API Route:**
```typescript
// app/api/swift/chat/route.ts
export async function POST(req: Request) {
const { message, messages, context } = await req.json();
// Streaming response
const encoder = new TextEncoder();
const stream = new ReadableStream({
async start(controller) {
// Claude API streaming logic
},
});
return new Response(stream, {
headers: {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
},
});
}
```
**E3.S3 - System Prompt (samenvatting):**
```
Je bent een medische assistent (medical scribe) voor Swift, een Nederlands GGZ EPD.
Je rol:
- Help zorgmedewerkers met documentatie en administratie
- Voer natuurlijke gesprekken in het Nederlands
- Herken intents en voer acties uit wanneer nodig
- Stel verduidelijkingsvragen bij onduidelijkheid
- Wees vriendelijk maar professioneel
Intents die je herkent:
- dagnotitie: notitie maken voor patiΓ«nt
- zoeken: patiΓ«nt zoeken
- rapportage: behandelrapportage schrijven
- overdracht: dienst overdracht maken
Wanneer je een intent herkent, voeg een JSON action object toe:
{
"type": "action",
"intent": "dagnotitie",
"entities": { "patient": "Jan de Vries", "category": "medicatie" },
"confidence": 0.95
}
Context:
- Actieve patiΓ«nt: {{activePatient}}
- Dienst: {{shift}}
- Recente acties: {{recentActions}}
```
**E3.S4 - Action object format:**
```typescript
interface Action {
type: 'action';
intent: IntentType;
entities: {
patient?: string;
patientId?: string;
category?: VerpleegkundigCategory;
content?: string;
};
confidence: number;
artifact?: {
type: BlockType;
prefill: BlockPrefillData;
};
}
```
**E3.S5 - Frontend streaming:**
```typescript
// lib/swift/use-chat-stream.ts
export function useChatStream() {
const addMessage = useSwiftStore((s) => s.addChatMessage);
const setStreaming = useSwiftStore((s) => s.setStreaming);
const sendMessage = async (message: string) => {
setStreaming(true);
const response = await fetch('/api/swift/chat', {
method: 'POST',
body: JSON.stringify({ message, messages: /* ... */ }),
});
const reader = response.body!.getReader();
let accumulatedText = '';
while (true) {
const { done, value } = await reader.read();
if (done) break;
const chunk = new TextDecoder().decode(value);
accumulatedText += chunk;
// Update message in UI
addMessage({ type: 'assistant', content: accumulatedText });
}
setStreaming(false);
};
return { sendMessage };
}
```
**E3.S6 - Artifact opening:**
- Parse action object uit AI response
- Open juiste block via `openBlock(artifact.type, artifact.prefill)`
- Block verschijnt rechts in artifact area
**Deliverables (E3.S1 & E3.S2 compleet):**
- β
`app/api/swift/chat/route.ts` (307 regels) β SSE API endpoint met Claude streaming
- β
`lib/swift/chat-api.ts` (109 regels) β Client helper voor streaming
- β
`components/swift/chat/chat-panel.tsx` (updated) β Streaming integration
- β
Claude API integration (Sonnet 4, 2048 tokens, temp 0.7)
- β
Real-time streaming via Server-Sent Events
- β
Event parsing (content_block_delta, message_stop, error)
- β
Simple system prompt met context (patiΓ«nt + dienst)
- β
Rate limiting (20 req/min per user)
- β
Authentication + error handling
- β
Conversation history (max 20 messages)
**Deliverables (E3.S3 compleet):**
- β
`buildMedicalScribePrompt()` functie (243 regels) β Volledige medical scribe prompt v1.0
- β
Intent detection instructies: dagnotitie, zoeken, overdracht, rapportage
- β
P1 & P2 intents met triggers en entities
- β
Confidence thresholds (>0.9, 0.7-0.9, 0.5-0.7, <0.5)
- β
JSON action object format met examples
- β
Context injection (activePatient, shift)
- β
Verduidelijkingsvragen en error handling
- β
Nederlands tone of voice (vriendelijk, professioneel, to-the-point)
- β
4 voorbeelden: dagnotitie, zoeken, verduidelijking, onduidelijke intent
- β
Build succesvol zonder type errors
**Deliverables (E3.S4 compleet):**
- β
`lib/swift/action-parser.ts` (149 regels) β JSON action parser met Zod validatie
- β
`parseActionFromResponse()` β Extract JSON from ```json code blocks
- β
`extractJsonBlock()` β Markdown code block regex matching
- β
`removeJsonBlocks()` β Clean text content zonder JSON
- β
`shouldOpenArtifact()` β Confidence threshold check (β₯0.7)
- β
`getConfidenceLabel()` β User-friendly labels (Zeer zeker, Redelijk zeker, etc.)
- β
`validateArtifactType()` β Intent/artifact type matching validation
- β
ChatPanel: Action parsing in onDone callback
- β
ChatPanel: setPendingAction voor artifact opening (E3.S6)
- β
ChatMessage: Action badge met intent + confidence indicator
- β
Store: updateLastMessage met optional action parameter
- β
Action schema validation: intent, entities, confidence, artifact
- β
Visual feedback: Sparkles icon, CheckCircle voor high confidence
- β
Console logging voor debugging action detection
- β
Build succesvol zonder type errors
**Git Commits:**
- `a51acf6` β E3.S1 & E3.S2 (Chat API + Claude streaming)
- `8efac84` β E3.S3 (Medical scribe system prompt v1.0)
- (to be committed) β E3.S4 (Intent detection in response)
**Remaining:** E3.S5-E3.S6 voor frontend streaming polish en artifact opening
---
### Epic 4 β Artifact Area & Tabs
**Epic Doel:** Meerdere artifacts tegelijk mogelijk met tabs, slide-in animaties.
| Story ID | Beschrijving | Acceptatiecriteria | Status | Afhankelijkheden | Story Points |
|----------|--------------|---------------------|--------|------------------|--------------|
| E4.S1 | ArtifactContainer component | Wrapper met tabs bovenaan, max 3 artifacts | β³ | E3.S6 | 5 |
| E4.S2 | Artifact lifecycle management | Open/close/switch tussen artifacts in store | β³ | E4.S1 | 3 |
| E4.S3 | Slide-in animatie | Artifact slide-in van rechts (200ms ease-out) | β³ | E4.S2 | 2 |
| E4.S4 | Placeholder state | "Artifacts verschijnen hier" met voorbeelden | β³ | E4.S3 | 3 |
**Technical Notes:**
**E4.S1 - ArtifactContainer:**
```tsx
// components/swift/artifacts/artifact-container.tsx
interface Artifact {
id: string;
type: BlockType;
prefill: BlockPrefillData;
title: string;
}
export function ArtifactContainer() {
const { openArtifacts, activeArtifactId } = useSwiftStore();
if (openArtifacts.length === 0) {
return ;
}
return (
{/* Tabs - alleen tonen bij >1 artifact */}
{openArtifacts.length > 1 && (
{openArtifacts.map((artifact) => (
))}
)}
{/* Active artifact */}
{renderArtifact(activeArtifact)}
);
}
```
**E4.S2 - Store uitbreiding:**
```typescript
interface SwiftStore {
// ... bestaand
// Artifact state
openArtifacts: Artifact[]; // Max 3
activeArtifactId: string | null;
// Actions
openArtifact: (artifact: Artifact) => void;
closeArtifact: (id: string) => void;
switchArtifact: (id: string) => void;
}
// Logic: max 3 artifacts, oudste wordt gesloten bij 4e
const openArtifact = (artifact: Artifact) => {
set((state) => {
let artifacts = [...state.openArtifacts];
if (artifacts.length >= 3) {
artifacts = artifacts.slice(1); // Remove oldest
}
return {
openArtifacts: [...artifacts, artifact],
activeArtifactId: artifact.id,
};
});
};
```
**E4.S3 - Animatie:**
```css
/* globals.css */
@keyframes artifact-enter {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.artifact-enter {
animation: artifact-enter 200ms ease-out;
}
```
**E4.S4 - Placeholder:**
```tsx
function ArtifactPlaceholder() {
return (
π¬
Artifacts verschijnen hier
Vraag me iets, bijvoorbeeld:
- β’ "Notitie voor Jan: medicatie gegeven"
- β’ "Zoek Marie van den Berg"
- β’ "Maak overdracht voor deze dienst"
);
}
```
**Deliverable:** Meerdere artifacts mogelijk, smooth transitions, placeholder state
---
### Epic 5 β AI-Filtering & Polish
**Epic Doel:** AI-filtering voor psychiater overdracht, linked evidence, final polish.
| Story ID | Beschrijving | Acceptatiecriteria | Status | Afhankelijkheden | Story Points |
|----------|--------------|---------------------|--------|------------------|--------------|
| E5.S1 | AI-filtering psychiater | `/api/overdracht/generate` filtert op behandelrelevantie | β³ | E4.S4 | 5 |
| E5.S2 | Linked evidence UI | Bronnotitie links in OverdrachtBlock, hover preview | β³ | E5.S1 | 3 |
| E5.S3 | Voice input integratie | Bestaande Deepgram blijft werken in chat input | β³ | E2.S4 | 2 |
| E5.S4 | Error states & offline | Chat error messages, offline banner margin fix | β³ | E3.S2 | 2 |
| E5.S5 | Polish & animations | Smooth transitions, loading states, toast confirmations | β³ | E5.S4 | 1 |
**Technical Notes:**
**E5.S1 - AI-filtering:**
```typescript
// app/api/overdracht/generate/route.ts
// Uitbreiden met filtering parameter
interface GenerateOverdrachtRequest {
shift: ShiftType;
filterForRole?: 'psychiater' | 'verpleegkundige';
}
// AI prompt voor filtering
const FILTER_PROMPT = `
Analyseer deze verpleegkundige notities en selecteer ALLEEN behandelrelevante informatie voor de psychiater:
WEL relevant:
- Medicatie-issues (weigering, bijwerkingen)
- Stemming/gedrag veranderingen
- Risico-signalen (suΓ―cidale uitingen, agressie)
- Psychotische symptomen
NIET relevant:
- Routine medicatie ("volgens schema")
- ADL activiteiten ("gedoucht", "ontbijt")
- Standaard observaties ("rustige dag")
`;
```
**E5.S2 - Linked evidence:**
```tsx
// components/swift/shared/linked-evidence.tsx
interface LinkedEvidenceProps {
sourceNotes: Report[];
highlightedText: string;
}
export function LinkedEvidence({ sourceNotes, highlightedText }: LinkedEvidenceProps) {
return (
{highlightedText}
{sourceNotes.map((note) => (
{note.author} - {note.timestamp}
{note.content}
))}
);
}
```
**E5.S3 - Voice input:**
- Bestaande `use-swift-voice.ts` hook blijft werken
- Integreren in ChatInput component
- Mic icon rechts van input field
- Live transcript verschijnt in input tijdens recording
**E5.S4 - Error states:**
```tsx
// Error message types in chat
const ERROR_MESSAGES = {
network: "Er ging iets mis met de verbinding. Probeer het opnieuw.",
stream_interrupted: "De verbinding werd onderbroken. Probeer je bericht opnieuw te versturen.",
rate_limit: "Even geduld, er zijn te veel aanvragen. Wacht 30 seconden.",
unknown: "Er is een fout opgetreden. Probeer het later opnieuw.",
};
```
**Deliverable:** AI-filtering werkt, linked evidence klikbaar, voice input geΓ―ntegreerd
---
### Epic 6 β Testing & Refinement
**Epic Doel:** Volledige QA, bug fixes, performance tuning, documentatie.
| Story ID | Beschrijving | Acceptatiecriteria | Status | Afhankelijkheden | Story Points |
|----------|--------------|---------------------|--------|------------------|--------------|
| E6.S1 | Manual smoke tests | Alle P1 flows werken zonder crashes (checklist) | β³ | E5.S5 | 3 |
| E6.S2 | Performance optimalisatie | Chat scroll performance, virtual scrolling >100 msgs | β³ | E6.S1 | 3 |
| E6.S3 | Bug fixes | Alle gemelde bugs opgelost, edge cases getest | β³ | E6.S2 | 1 |
| E6.S4 | Documentatie update | README, CLAUDE.md, migration guide | β³ | E6.S3 | 1 |
**Technical Notes:**
**E6.S1 - Test checklist:**
```markdown
### P1 Flow Tests
**Dagnotitie via conversatie:**
- [ ] User typt "Ik heb medicatie gegeven aan Jan"
- [ ] AI herkent intent (dagnotitie) en patient (Jan)
- [ ] DagnotatieBlock opent met prefill
- [ ] User kan opslaan β Toast confirmation
- [ ] Chat toont "β Notitie opgeslagen"
**PatiΓ«nt zoeken:**
- [ ] User typt "Zoek Marie van den Berg"
- [ ] ZoekenBlock opent rechts
- [ ] Patient search werkt
- [ ] Selecteren patient β PatientContextCard opent
**Overdracht maken:**
- [ ] User typt "Maak overdracht"
- [ ] OverdrachtBlock opent
- [ ] AI genereert samenvattingen
- [ ] Psychiater ziet alleen behandelrelevante info
- [ ] Linked evidence klikbaar
**Follow-up conversatie:**
- [ ] User typt "Voeg toe: goed geslapen"
- [ ] AI begrijpt context (laatste artifact = dagnotitie)
- [ ] Tekst wordt toegevoegd aan artifact
**Meerdere artifacts:**
- [ ] User opent 3 artifacts achter elkaar
- [ ] Tabs verschijnen bovenaan
- [ ] Switching tussen artifacts werkt
- [ ] 4e artifact openen β oudste sluit automatisch
**Voice input:**
- [ ] Mic icon werkt
- [ ] Deepgram transcriptie verschijnt live
- [ ] Pauze detectie β auto-submit
- [ ] Voice message wordt verwerkt zoals typed message
**Error handling:**
- [ ] Offline β banner verschijnt
- [ ] Stream interrupted β error message in chat
- [ ] Rate limit β friendly message + retry suggestion
- [ ] Network error β retry button
```
**E6.S2 - Performance:**
- Virtual scrolling met `react-window` of `@tanstack/react-virtual` (>100 messages)
- Debounce typing indicator (300ms)
- Memoize message components (`React.memo`)
- Lazy load artifacts (niet renderen tot actief)
**E6.S3 - Edge cases:**
- Zeer lange messages (>1000 chars)
- Special characters in patient names
- Concurrent artifact opening
- Browser back/forward navigation
- Tab close tijdens streaming
**E6.S4 - Documentatie:**
- Update `CLAUDE.md` met v3.0 architecture
- Migration guide voor users (v2.1 β v3.0)
- Developer README met chat API docs
- Prompt versioning doc
**Deliverable:** Production-ready v3.0, alle tests passed, gedocumenteerd
---
## 5. Kwaliteit & Testplan
π― **Doel:** Borgen kwaliteit van v3.0 via gestructureerd testplan.
### Test Types
| Test Type | Scope | Tools | Verantwoordelijke |
|-----------|-------|-------|-------------------|
| **Manual Smoke Tests** | Alle P1 flows + edge cases | Checklist (zie E6.S1) | Developer |
| **Integration Tests** | `/api/swift/chat` endpoint | Playwright / Jest | Developer |
| **Performance Tests** | Chat scroll, streaming latency | Chrome DevTools, Lighthouse | Developer |
| **User Acceptance** | Real-world flows met zorgmedewerkers | User feedback sessie | PM + Developer |
| **Security Tests** | API keys, RLS, XSS in chat | Manual audit | Developer |
### Test Coverage Targets
- **Manual smoke tests:** 100% van P1 flows (dagnotitie, zoeken, overdracht, patient context)
- **Integration tests:** `/api/swift/chat` endpoint (streaming, action generation)
- **Performance:** Chat scroll <16ms frame time, streaming latency <500ms
### Manual Test Checklist
**Pre-deployment checklist:**
- [ ] Feature flag `FEATURE_FLAG_SWIFT_V3=true` werkt
- [ ] v2.1 nog steeds beschikbaar (fallback)
- [ ] Alle P1 flows getest (zie E6.S1)
- [ ] Edge cases getest (lange messages, concurrent actions, etc.)
- [ ] Mobile responsive (toggle tussen chat/artifact)
- [ ] Keyboard shortcuts werken (βK, Escape, Enter)
- [ ] Voice input geΓ―ntegreerd en werkend
- [ ] Error states tonen user-friendly messages
- [ ] Offline banner werkt
- [ ] Performance: scroll smooth, streaming <500ms latency
- [ ] AI-filtering psychiater werkt (alleen behandelrelevante info)
- [ ] Linked evidence klikbaar en toont bronnotities
- [ ] Toast notifications bij save/error
- [ ] Browser back/forward navigation werkt
### Acceptance Criteria (MVP)
**Minimaal werkend voor release:**
1. β
Split-screen layout werkend (desktop/tablet/mobile)
2. β
Conversatie met medical scribe voelt natuurlijk (niet robotisch)
3. β
Artifacts openen binnen 2 sec na intent detection
4. β
AI-filtering psychiater >85% accuracy (behandelrelevante info)
5. β
Voice input geΓ―ntegreerd en werkend
6. β
P1 flows (dagnotitie, zoeken, overdracht, patient context) 100% werkend
7. β
Error handling: netwerk errors, offline, stream interrupted
8. β
Performance: <500ms streaming latency, smooth scroll
---
## 6. Demo & Presentatieplan
π― **Doel:** Presenteren van v3.0 aan stakeholders en users voor feedback.
### Demo Scenario
**Duur:** 15 minuten
**Doelgroep:** Zorgmedewerkers (verpleegkundigen + psychiaters), product team
**Locatie:** Vercel staging environment (`swift-v3-staging.vercel.app`)
**Flow:**
1. **Intro (2 min):**
- Context: "We hebben Swift getransformeerd naar een conversational interface"
- Toon v2.1 vs. v3.0 screenshot (voor/na)
2. **Dagnotitie flow (3 min):**
- Typ: "Ik heb net medicatie gegeven aan Jan de Vries"
- AI herkent intent, DagnotatieBlock opent rechts met prefill
- Toon follow-up: "Voeg toe: hij voelt zich beter vandaag"
- Opslaan β Chat confirmation
3. **PatiΓ«nt zoeken + context (3 min):**
- Typ: "Wie is Marie van den Berg?"
- ZoekenBlock opent, selecteer patient
- PatientContextCard toont laatste notities, vitals, diagnose
- Chat vraag: "Wat was er gisteren met Marie?"
- AI antwoordt met context uit notities
4. **Overdracht met AI-filtering (4 min):**
- Typ: "Maak overdracht voor deze dienst"
- OverdrachtBlock opent
- Toon psychiater view: alleen behandelrelevante info
- Klik op linked evidence β bronnotitie preview
- Toon verschil tussen verpleegkundige vs. psychiater view
5. **Voice input (2 min):**
- Klik mic icon
- Spreek: "Notitie voor Jan: bloeddruk gemeten, 135 over 85"
- Live transcript verschijnt
- DagnotatieBlock opent met prefill
6. **Q&A (1 min):**
- Vragen beantwoorden
- Feedback verzamelen
**Backup Plan:**
- Lokale versie klaar bij internet/API issues
- Pre-recorded video als complete fallback
- Screenshots voor elk stap
---
## 7. Risico's & Mitigatie
π― **Doel:** Risico's vroeg signaleren en mitigeren.
| Risico | Kans | Impact | Mitigatie | Owner |
|--------|------|--------|-----------|-------|
| **AI prompt niet natuurlijk genoeg** | Hoog | Hoog | Iteratief testen met users, prompt versioning, A/B testing | Developer |
| **Streaming latency >1s** | Middel | Hoog | Claude Haiku model overwegen (sneller), caching, local patterns voor snelle acties | Developer |
| **Performance bij >100 messages** | Middel | Middel | Virtual scrolling, pagination, max 100 messages in view | Developer |
| **Chat state memory leak** | Middel | Middel | Proper cleanup in useEffect, memory profiling | Developer |
| **AI kosten te hoog** | Middel | Middel | Rate limiting, local pattern matching eerst, cache responses | PM |
| **Mobile UX awkward** | Hoog | Middel | Extensive mobile testing, toggle UX refinement | Developer |
| **v2.1 users niet willen switchen** | Hoog | Laag | Feature flag (optioneel), user onboarding, feedback loop | PM |
| **Intent detection accuracy <80%** | Middel | Hoog | Hybrid approach (local + AI), confidence thresholds, fallback picker | Developer |
| **Browser compatibility issues** | Laag | Middel | Test Chrome/Safari/Firefox, SSE polyfill if needed | Developer |
| **Concurrent artifact state bugs** | Middel | Middel | Thorough testing, max 3 artifacts enforced, state validation | Developer |
**Top 3 Risks & Mitigation:**
1. **AI Prompt Engineering (Kans: Hoog, Impact: Hoog)**
- **Mitigatie:** Start met simpele prompt v1 in E0.S3, iteratief verfijnen met user feedback, prompt versioning (v1, v2, v3), A/B testing tussen prompts
- **Success metric:** >80% user satisfaction "voelt natuurlijk aan"
2. **Performance - Streaming Latency (Kans: Middel, Impact: Hoog)**
- **Mitigatie:** Local patterns voor P1 intents (dagnotitie, zoeken) β <100ms, AI alleen voor complex/conversational, Claude Haiku overwegen, response caching
- **Success metric:** <500ms tot eerste AI token, <2s tot artifact open
3. **Mobile UX Toggle (Kans: Hoog, Impact: Middel)**
- **Mitigatie:** Extensive mobile testing, bottom sheet voor artifact (native feel), swipe gestures, user testing met zorgmedewerkers
- **Success metric:** >70% mobile users vindt toggle intuΓ―tief
---
## 8. Evaluatie & Lessons Learned
π― **Doel:** Reflecteren na elke epic en einde project.
**Na elke epic (weekly retro):**
- Wat ging goed deze week?
- Welke blockers hadden we?
- Welke AI-prompts werkten het beste?
- Waar liepen we vertraging op?
- Wat passen we aan voor volgende epic?
**Na project (final retro):**
**Te documenteren:**
1. **Successen:**
- Welke componenten zijn herbruikbaar voor volgende projecten?
- Welke development patterns werkten goed?
- Welke AI-prompts waren meest effectief?
2. **Uitdagingen:**
- Waar liepen we vast?
- Welke technical debt ontstond?
- Welke estimates waren te optimistisch/pessimistisch?
3. **Metrics:**
- Actual time spent vs. estimated (story points)
- User satisfaction score (survey)
- Performance metrics (latency, scroll FPS)
- AI kosten (Claude API usage)
4. **Next Steps:**
- P2/P3 features roadmap
- Technical debt payoff plan
- User feedback integration plan
**Template voor lessons learned:**
```markdown
## Epic X - Lessons Learned
### What went well
- ...
### What didn't go well
- ...
### Action items for next epic
- ...
### Reusable components/patterns
- ...
```
---
## 9. Referenties
π― **Doel:** Koppelen aan overige Mission Control-documenten.
**Mission Control Documents:**
- **PRD Ephemeral UI:** `docs/swift/archive/nextgen-epd-prd-ephemeral-ui-epd.md` β Product vision
- **FO v3.0:** `docs/swift/fo-swift-medical-scribe-v3.md` β Functioneel ontwerp medical scribe
- **Haalbaarheid:** `docs/swift/haalbaarheidsanalyse-v3.md` β Feasibility analysis
- **UX v2.1:** `docs/swift/archive/swift-ux-v2.1.md` β Huidige UX/styling
- **UX Analyse v3:** `docs/swift/v3-redesign-met-huidige-styling.md` β Wat blijft vs. wijzigt
- **Bouwplan v2:** `docs/swift/bouwplan-swift-v2.md` β Previous roadmap (v2.1)
**Technical Resources:**
- Repository: `https://github.com/[org]/mini-epd-prototype`
- Staging: `https://swift-v3-staging.vercel.app` (to be created)
- Production: `https://mini-epd.vercel.app` (existing)
- Component Library: `components/swift/` folder
- API Documentation: `/docs/api/` (to be created)
**External References:**
- [ChatGPT Canvas UX](https://altar.io/next-gen-of-human-ai-collaboration/) β Inspiration
- [Claude Artifacts](https://docs.anthropic.com) β Pattern reference
- [Abridge Linked Evidence](https://www.abridge.com/product) β Evidence linking pattern
- [Anthropic Streaming API](https://docs.anthropic.com/en/api/streaming) β SSE implementation
---
## 10. Glossary & Abbreviations
| Term | Betekenis |
|------|-----------|
| **Epic** | Grote feature of fase in development (bevat meerdere stories) |
| **Story** | Kleine, uitvoerbare taak binnen een epic |
| **Story Points** | Schatting van complexiteit (Fibonacci: 1, 2, 3, 5, 8, 13, 21) |
| **SP** | Story Points (afkorting) |
| **MVP** | Minimum Viable Product |
| **P1/P2/P3** | Priority tiers (P1 = kritiek, P2 = belangrijk, P3 = waardevol) |
| **SSE** | Server-Sent Events (streaming protocol) |
| **DRY** | Don't Repeat Yourself |
| **KISS** | Keep It Simple, Stupid |
| **SOC** | Separation of Concerns |
| **YAGNI** | You Aren't Gonna Need It |
| **RLS** | Row Level Security (Supabase) |
| **Intent** | Gebruikersintentie (dagnotitie, zoeken, overdracht, etc.) |
| **Artifact** | UI-component die verschijnt in artifact area (block) |
| **Block** | Herbruikbare UI-component (DagnotatieBlock, ZoekenBlock, etc.) |
| **Prefill** | Vooringevulde data in artifact o.b.v. AI entity extraction |
| **Medical Scribe** | AI-assistent die medische documentatie ondersteunt |
| **Linked Evidence** | Klikbare links naar bronnotities in AI-samenvatting |
---
## 11. Story Points Reference
**Fibonacci schaal voor story points:**
| Points | Complexiteit | Geschatte tijd | Voorbeelden |
|--------|--------------|----------------|-------------|
| 1 | Trivial | 1-2 uur | Feature flag setup, config wijziging |
| 2 | Simple | 2-4 uur | Component skeleton, store uitbreiding (1 field) |
| 3 | Small | 4-8 uur | Simpele component met state, basic API endpoint |
| 5 | Medium | 1-2 dagen | Complex component, API met business logic |
| 8 | Large | 2-3 dagen | Feature met meerdere componenten, integrations |
| 13 | Very Large | 3-5 dagen | Epic-level feature, major refactor |
| 21 | Extra Large | 1 week+ | Waarschijnlijk te groot, split in kleinere stories |
**Velocity tracking:**
- **Target velocity:** ~12 SP per week (1 developer)
- **Sprint length:** 1 week
- **Total project:** 86 SP β 7 weken (met buffer = 8 weken)
---
**Versiehistorie:**
| Versie | Datum | Auteur | Wijziging |
|--------|-------|--------|-----------|
| v1.0 | 27-12-2024 | Colin Lit | InitiΓ«le versie - complete bouwplan v3.0 |