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

    Interface FlattenSuggestion

    The dual of unflatten: a thin/redundant layer worth collapsing UP into its parent.

    interface FlattenSuggestion {
        parent: string;
        child: string;
        reason: string;
        mergedParentTokens: number;
        fitsTarget: boolean;
        savedHopOverhead: number;
    }
    Index

    Properties

    parent: string
    child: string
    reason: string
    mergedParentTokens: number

    the parent's load if the child's resident tools+instructions were inlined.

    fitsTarget: boolean
    savedHopOverhead: number

    per-hop overhead removed by collapsing (the child's framing + its dispatch tool).