nikivdev/code · error

{} exited with status {}

Error message

{} exited with status {}

What it means

Error "{} exited with status {}" thrown in nikivdev/code.

Source

Thrown at src/ai.rs:5628

                );
            }
            status
        }
        Provider::Cursor => {
            bail!(
                "Cursor transcripts are readable only; use `f cursor list`, `f cursor copy`, or `f cursor context`"
            );
        }
    };

    let name = match provider {
        Provider::Claude | Provider::All => "claude",
        Provider::Codex => "codex",
        Provider::Cursor => "cursor",
    };

    if !status.success() {
        bail!("{} exited with status {}", name, status);
    }

    Ok(())
}

fn find_codex_session(
    path: Option<String>,
    query: Vec<String>,
    exact_cwd: bool,
    json_output: bool,
    limit: usize,
    scope: CodexFindScope,
    provider: Provider,
) -> Result<()> {
    if provider != Provider::Codex {
        bail!("find is only supported for Codex sessions; use `f ai codex find ...`");
    }

View on GitHub (pinned to a747e741ae)

When it happens

Trigger: Thrown at src/ai.rs:5628 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of nikivdev/code@a747e741ae (2026-09-01). Data as JSON: /api/errors/5b7b79952c16374e. Report an issue: GitHub.