# Workspace Components Tests that the expert emits structured UI components (cards, lists, tables) instead of dumping text or raw SQL. The workspace should show domain-aware displays. ## Setup - clear history ## Steps ### 1. Detail card for a single entity - send: zeig mir Details zu Kunde 2 - expect_trace: has tool_call - expect_actions: has card - expect_response: not contains "SELECT" or "JOIN" - expect_response: length > 10 ### 2. List of items with navigation - send: zeig mir alle Objekte von Kunde 2 - expect_trace: has tool_call - expect_actions: has card or has table - expect_response: length > 10 ### 3. Table for tabular data - send: zeig mir die Geraete von Objekt 4 - expect_trace: has tool_call - expect_actions: has table - expect_response: length > 10 ### 4. Card with actions (drill-down buttons) - send: zeig mir Auftrag 21479 - expect_trace: has tool_call - expect_actions: length >= 1 - expect_response: length > 10 ### 5. Summary card with key metrics - send: gib mir eine Zusammenfassung von Objekt 4 - expect_trace: has tool_call - expect_actions: has card - expect_response: length > 20