gespenst API - v0.1.1
    Preparing search index...

    Interface BashKitShellCapabilities

    Runtime features exposed by a BashKit session.

    interface BashKitShellCapabilities {
        arbitraryWasiModules: false;
        crossOriginIsolation: false;
        filesystem: true;
        interactiveInput: true;
        resize: false;
        subprocesses: false;
    }
    Index
    arbitraryWasiModules: false

    BashKit cannot execute arbitrary external WASI modules.

    crossOriginIsolation: false

    BashKit is single-threaded and does not require cross-origin isolation.

    filesystem: true

    Whether the interpreter exposes a stateful virtual filesystem.

    interactiveInput: true

    Whether terminal input can execute commands.

    resize: false

    BashKit does not expose PTY window-size updates.

    subprocesses: false

    BashKit does not launch operating-system child processes.