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

# Troubleshooting

> Fix common Dispatches visibility, scope, output, and CLI mode issues.

Use this page when Dispatches are missing, the summary is empty or too thin, or the CLI command rejects the scope you provided.

<AccordionGroup>
  <Accordion title="Dispatches are not visible in Entire.io">
    Dispatches may be enabled gradually for Entire.io accounts.

    If you do not see Dispatches in the sidebar or command palette:

    * confirm you are signed in to the right Entire.io account
    * confirm the workspace has access to Dispatches
    * use `entire dispatch` from the CLI while web access is unavailable
  </Accordion>

  <Accordion title="The summary is empty or too thin">
    Check whether the selected scope contains captured work.

    Try this:

    * choose a longer time window
    * choose a repository or branch that has recent checkpoints or sessions
    * push recent checkpoint data if you expect cloud dispatches to include it
    * use local mode if the work exists locally but has not been pushed

    ```bash theme={null}
    entire dispatch --local
    ```
  </Accordion>

  <Accordion title="The wrong repositories or branches are included">
    Check the dispatch scope.

    In Entire.io, branch selection appears only when you select one repository. If you select multiple repositories, Dispatches use each repository's default branch.

    In the CLI, pass cloud repository slugs with `owner/repo` format:

    ```bash theme={null}
    entire dispatch --repos entireio/cli,entireio/entire.io
    ```
  </Accordion>

  <Accordion title="`--repos` does not work with `--local`">
    `--repos` is for cloud dispatches. `--local` reads from the local repository instead.

    Use cloud mode for specific remote repositories:

    ```bash theme={null}
    entire dispatch --repos entireio/cli
    ```

    Use local mode for the current checkout:

    ```bash theme={null}
    entire dispatch --local
    ```
  </Accordion>

  <Accordion title="`--all-branches` did not include a branch">
    `--all-branches` only includes existing local branches in local mode. Renamed or deleted branches are skipped.

    Check local branches first:

    ```bash theme={null}
    git branch
    ```

    Then run:

    ```bash theme={null}
    entire dispatch --local --all-branches
    ```
  </Accordion>

  <Accordion title="The voice or audience is wrong">
    Use a preset voice or provide custom guidance.

    ```bash theme={null}
    entire dispatch --voice neutral
    ```

    ```bash theme={null}
    entire dispatch --voice "Audience: leadership. Focus on impact and risks."
    ```
  </Accordion>

  <Accordion title="Still stuck?">
    Include these details when asking for help:

    * `entire version`
    * whether you used Entire.io or the CLI
    * the repositories and branches you selected
    * the time window
    * whether the work appears in checkpoints or sessions
    * the full error message, if the CLI failed

    You can file an issue at [github.com/entireio/cli](https://github.com/entireio/cli) or ask in the [Entire Discord](https://discord.gg/jZJs3Tue4S).
  </Accordion>
</AccordionGroup>

## Continue with

<CardGroup cols={2}>
  <Card title="Dispatches" icon="newspaper" href="/guides/dispatches/overview">
    Learn what Dispatches summarize and when to use them.
  </Card>

  <Card title="Dispatches in CLI" icon="terminal" href="/guides/dispatches/dispatches-in-cli">
    Generate dispatches from the terminal.
  </Card>
</CardGroup>
