@karmaniverous/jeeves-runner
    Preparing search index...

    Interface ExecutionResult

    Result of a job execution.

    interface ExecutionResult {
        durationMs: number;
        error: string | null;
        exitCode: number | null;
        resultMeta: string | null;
        status: "error" | "timeout" | "ok";
        stderrTail: string;
        stdoutTail: string;
        tokens: number | null;
    }
    Index

    Properties

    durationMs: number

    Total execution duration in milliseconds.

    error: string | null

    Error message if execution failed.

    exitCode: number | null

    Process exit code (null if timeout or spawn error).

    resultMeta: string | null

    Additional result metadata parsed from JR_RESULT output.

    status: "error" | "timeout" | "ok"

    Execution outcome: 'ok', 'error', or 'timeout'.

    stderrTail: string

    Last N lines of stderr.

    stdoutTail: string

    Last N lines of stdout.

    tokens: number | null

    Token count parsed from JR_RESULT output (for LLM jobs).