A drag-and-drop, LLM-graded canvas for practicing system-design interviews. Draw the architecture, an interviewer scores it against a rubric, asks one follow-up, you revise โ up to three rounds.
Nothing reaches the LLM until the diagram survives a deterministic gate โ that's what keeps grading cheap and scores reproducible.
| # | Level | Requires | Scope |
|---|---|---|---|
| 01 | Webhook Router | API Gateway + a DB โ queue/cache/warehouse is over-engineering | v1 |
| 02 | Automated Media Processing Pipeline | Queue/Pub-Sub + Object Storage โ async decoupling | v1 |
| 03 | High-Frequency Trading Bot | In-memory cache + load balancer โ no SPOF | v1 |
| 04 | Enterprise Big Data Analytics | Data warehouse + queue/pub-sub โ ingestion pipeline | v1 |
| 05 | IoT Telemetry Platform | Queue/Pub-Sub + time-series DB โ buffered ingestion | v2 |
| 06 | Recommendation Engine | Graph DB + in-memory cache โ graph serving + cache | v2 |
| 07 | RAG-Based Search | Vector DB + object storage โ vector serving | v2 |
| 08 | Always-On Payments API | Load balancer + relational DB โ no compute SPOF, replicated DB | v2 |
| 09 | Multi-Region Disaster Recovery | Compute + data in โฅ2 regions โ regional DR | v3 |
| 10 | Globally Resilient Ledger (5 nines) | Multi-region + replicated DB + no SPOF โ consistency trade-off | v3 |