@suluk/agents - v0.1.6
    Preparing search index...

    Interface DiagramNode

    interface DiagramNode {
        id: string;
        label: string;
        kind: DiagramKind;
        tier?: "resident" | "cold-tail";
        badges: string[];
        note?: string;
        collapsed?: boolean;
        children?: DiagramNode[];
    }
    Index

    Properties

    id: string
    label: string
    tier?: "resident" | "cold-tail"
    badges: string[]

    short pills shown on hover (model / scope / guarantee / tier / trust / maxDepth …).

    note?: string

    a one-liner under the title (the agent description / the skill whenToUse).

    collapsed?: boolean

    start collapsed (the cold-tail does, so the default view stays high-level).

    children?: DiagramNode[]