Timestamp when the event was created.
ISO 8601 formatted date-time string indicating when this event was emitted by the system. This timestamp is crucial for event ordering, performance analysis, and debugging the agent workflow execution timeline.
Format: "YYYY-MM-DDTHH:mm:ss.sssZ" (e.g., "2024-01-15T14:30:45.123Z")
Optional design-theme instruction the operator passed in.
Forwarded to the product-plan and render phases verbatim. Leave empty for
the default prototype-first look documented in frontend/CLAUDE.md.
A unique identifier for the event.
Human-readable reason the run was triggered.
SDK source the run is built against.
"interface" — the AutoBE-generated SDK in the current session."shopping" — the bundled @samchon/shopping-api reference.Step counter of the interface phase this AutoView run is based on.
Mirrors AutoBeInterfaceHistory.step so the UI can detect stale runs when
the interface is regenerated mid-run. 0 for shopping runs.
Unique identifier for the event type.
A literal string that discriminates between different event types in the AutoBE system. This field enables TypeScript's discriminated union feature, allowing type-safe event handling through switch statements or conditional checks.
Examples: "analyzeWrite", "databaseSchema", "interfaceOperation", "testScenario"
Event fired when the AutoView agent begins a new run.
AutoView builds a Next.js + shadcn/ui frontend on top of either the SDK AutoBE just generated (
source: "interface") or the bundled@samchon/shopping-apireference SDK (source: "shopping").Five phases run after this event:
autoViewSdkStudy— read the SDK end-to-end and produce a domain map.autoViewProductPlan— turn the domain map into an information architecture (pages, navigation, intentional omissions).autoViewScaffold— copy the deterministic shadcn/ui base, wire the SDK adapter, ship the Sandbox Dockerfile + health route.autoViewRenderPage— generate one TSX page per planned screen, with a TypeScript-parser-driven self-correct loop.autoViewReview— Playwright screenshots + LLM-driven anomaly detection feeding back into phase 4 retries when broken.Author
Samchon