The Blue Team detector evaluates links across six criteria to identify unnatural promotion, contrasting commercial money links aimed at boosting brand authority against reputable filler citations used to make articles appear natural.

flowchart TD
    In[Article Markdown & Target Base URL] --> ML[Money Link Check]
    In --> FL[Filler Link Check]

    subgraph Rubric [Evaluation Rubric]
        ML --> ML1[Commercial intent & forced fit]
        ML --> ML2[Small/medium brand & simpler URLs]
        FL --> FL1[Authoritative & reputable sources]
        FL --> FL2[Deep/long URLs & high volume]
    end

    ML1 --> Core{"Who wanted the link on this page?"}
    ML2 --> Core
    FL1 --> Core
    FL2 --> Core

    Core --> Out[Output JSON Schema]

    subgraph Output [Structured Result]
        Out --> Res1[money_link: anchor, href, sentence, reason]
        Out --> Res2[other_links: list of benign citations]
    end