LOCAL PREVIEW View on GitHub

MangaAssist Interview Pack - Super Hard

Level: Super Hard
What this tests: Multi-domain synthesis, platform thinking, long-horizon design choices, and the ability to reason about what is not yet fully specified in the project.

Platform Evolution Map

graph LR
    A[Single Storefront Assistant] --> B[Reusable Orchestration Core]
    B --> C[Shared Safety Layer]
    B --> D[Store-Specific Knowledge]
    B --> E[Store-Specific Integrations]
    C --> F[Central Policy Engine]
    D --> G[Per-domain RAG Indexes]
    E --> H[Capability Registry]
    H --> I[Multi-tenant Retail Assistant Platform]

Interview Questions

Distinguished Engineer

  1. If this project becomes the template for all retail assistants, what would you extract into a platform layer and what would remain domain-specific to manga?
  2. What is the strongest argument against using a pure agentic framework here, and what is the strongest argument in favor of it?
  3. How would you design a capability registry so the orchestrator knows which intents, APIs, and safety rules exist per storefront?

Applied Scientist

  1. The project documents intent classification, RAG, and recommendation separately. Where do you expect the highest interaction effects between these systems, and how would you evaluate them jointly?
  2. How would you detect when the chatbot is technically accurate but still not useful enough to change user behavior?

Security and Privacy Lead

  1. How would multi-region expansion change your privacy, retention, and deletion design, especially for conversation data and analytics?
  2. What is your strategy for proving to leadership that personalization remains privacy-first rather than becoming scope creep?

Data Platform Lead

  1. How would you attribute revenue impact fairly when the user interacts with search, recommendations, and the chatbot in the same session?
  2. How would you separate signal from noise in thumbs-up, thumbs-down, add-to-cart, and escalation data when using them for product improvement?

VP of Engineering

  1. If you had to choose between improving conversion, reducing support cost, or improving customer trust first, which would you optimize for in year one and why?

Interaction Surface Recall

graph TD
    A[Customer Intent] --> B[Search / Browse]
    A --> C[Chatbot]
    A --> D[Support Flows]
    B --> E[Shared Catalog]
    C --> E
    D --> F[Order / Returns Systems]
    C --> F
    C --> G[Reco + RAG + LLM]
    G --> H[Metrics + Feedback]
    H --> I[Model / Prompt / UX Improvement Loop]