Member Junction
    Preparing search index...

    How long a command typically runs, so an AI agent wrapping mj in a shell timeout can budget correctly rather than killing a healthy long-running command midway (plan §1d / D12).

    interface RuntimeHint {
        class: "fast" | "moderate" | "slow" | "variable";
        note?: string;
        typicalSeconds?: number;
    }
    Index

    Properties

    class: "fast" | "moderate" | "slow" | "variable"
    • fast: <5s (no start advisory emitted).
    • moderate: 5–60s.
    • slow: >60s.
    • variable: depends on scope — see RuntimeHint.note.
    note?: string

    e.g. 'scales with entity count', 'full migration ≫ incremental'.

    typicalSeconds?: number

    Best-guess midpoint (seconds) an agent can use to set a timeout.