@karmaniverous/stan-cli
    Preparing search index...

    Type Alias RunBehavior

    Behavior flags controlling archive/combine/keep semantics:

    • archive: create archive.tar and archive.diff.tar.
    • combine: include script outputs inside archives and remove them on disk.
    • keep: do not clear the output directory before running.
    • plan: when false, suppress printing the run plan before execution.
    type RunBehavior = {
        archive?: boolean;
        combine?: boolean;
        hangKill?: number;
        hangKillGrace?: number;
        hangWarn?: number;
        keep?: boolean;
        live?: boolean;
        plan?: boolean;
        prompt?: string;
    }
    Index

    Properties

    archive?: boolean

    Create archive.tar and archive.diff.tar.

    combine?: boolean

    Include script outputs inside archives and remove them from disk afterward.

    hangKill?: number

    Seconds of inactivity before terminating the process tree (TTY only).

    hangKillGrace?: number

    Seconds to wait after SIGTERM before SIGKILL (TTY only).

    hangWarn?: number

    Seconds of inactivity before warning/stalled labeling (TTY only).

    keep?: boolean

    Keep (do not clear) the output directory before running.

    live?: boolean

    Enable the live TTY UI when available.

    plan?: boolean

    When false, suppress printing the plan header before execution.

    prompt?: string

    Plan-only display string for resolved system prompt source (when present).