> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trynito.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Your Setup

> Confirm the plugin is signed in and healthy with the status card and the doctor command.

Two commands confirm everything is working: `status` for your account, and `doctor` for your local install.

## Check Your Status

<Tabs>
  <Tab title="Claude Code">
    ```text theme={"theme":{"light":"github-light","dark":"github-dark"},"languages":{"custom":["typescript","python","curl"]}}
    /nito:status
    ```
  </Tab>

  <Tab title="Codex">
    ```text theme={"theme":{"light":"github-light","dark":"github-dark"},"languages":{"custom":["typescript","python","curl"]}}
    $nito:status
    ```
  </Tab>
</Tabs>

The status card shows your signed-in profile, which environment you are pointed at, how you authenticated, your plan, and your usage. It is the quickest confirmation that you are connected.

## Run Doctor

From the terminal:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"},"languages":{"custom":["typescript","python","curl"]}}
nito doctor
```

Doctor checks the local pieces the plugin depends on and prints a line per check:

* the `nito` binary is installed,
* your agent profile has a credential,
* your harness (Claude Code or Codex) is found,
* the Codex hook's trust state,
* the gateway is reachable and authenticated,
* your default model resolves.

## What Healthy Looks Like

Every check reads `PASS`, with `INFO` lines where a check does not apply. That means the plugin is installed, signed in, and pointed at something reachable.

<Note>
  Doctor also runs a tiny live **inference** check. If that one line reports a failure but your `ask` and `private` commands actually work, re-run `nito doctor`. The inference smoke test can be transiently flaky and is not a reliable signal on its own.
</Note>

If a check other than inference fails, [Troubleshooting](/help/troubleshooting) maps each symptom to a fix.
