RealEZ Notes

Phase 1 · applies to both scenarios

Dependencies

What engineering is blocked on from other cofounders, and what blocks what internally. The build can be fully ready and still stuck on an external box below.

flowchart TB
    subgraph EXT["Owned by other cofounders"]
        direction TB
        state["Pilot state confirmed"]
        vendor["E-sig vendor selected + contracted"]
        brokerage["Pilot brokerage identified + contracted"]
    end

    subgraph FOUND["Engineering foundations (required week 1, both scenarios)"]
        direction TB
        cicd["CI/CD + IaC + security baseline"]
    end

    subgraph BUILD["Core build"]
        direction TB
        rules["Jurisdiction rules engine"]
        esig["E-sig integration"]
        td["Transitional Document"]
        mi["Merchant Integration"]
        mobile["Native mobile, all 5 portals"]
    end

    subgraph VERIFY["Verification"]
        direction TB
        qa["QA test pyramid"]
        pen["Security review / pen test"]
    end

    subgraph LAUNCH["Pilot"]
        onboarding["Onboarding design"]
        golive["Go / no-go"]
    end

    state --> rules
    vendor --> esig
    brokerage --> onboarding

    cicd --> rules
    cicd --> esig
    cicd --> td
    cicd --> mi
    cicd --> mobile

    td --> mi
    rules --> td
    esig --> td

    td --> qa
    mi --> qa
    mobile --> qa
    esig --> qa

    qa --> pen
    pen --> golive
    onboarding --> golive

    style EXT fill:#FFEBD3,stroke:#FFD199
    style FOUND fill:#ECEFF2,stroke:#DCE1E6
    

Reading it