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

# Quickstart

> Set up authentication and run your first CLI command.

After [installing](/latest/cli/installation) the Versori CLI, follow these steps to authenticate and start managing your resources.

<Steps>
  <Step title="Generate a JWT for the CLI">
    Generate a JWT token from the [Versori console](https://ai.versori.com/account?content=keys) for the organisation you want to manage.

    <Frame caption="Generating a JWT for the CLI">
      <img src="https://mintcdn.com/versori/Fbszpjay3tN1gPJt/images/cli/generate-jwt-for-cli.png?fit=max&auto=format&n=Fbszpjay3tN1gPJt&q=85&s=040ef639abf6592ad2f54dc3e41dfb20" width="2554" height="1129" data-path="images/cli/generate-jwt-for-cli.png" />
    </Frame>
  </Step>

  <Step title="Add a context">
    A context stores your authentication credentials for an organisation. You need a JWT token generated from the [Versori console](https://ai.versori.com/account?content=keys) for the organisation you want to manage.

    ```sh theme={null}
    versori context add \
      --name my-context \
      --organisation <organisation-id> \
      --jwt <jwt-token>
    ```

    <Tip>
      Pass in `--jwt -` to read the JWT from stdin.
    </Tip>
  </Step>

  <Step title="Verify your context">
    Confirm the context was created and is active:

    ```sh theme={null}
    versori context list
    ```
  </Step>

  <Step title="Run your first command">
    List the projects in your organisation:

    ```sh theme={null}
    versori projects list
    ```
  </Step>
</Steps>

## Next steps

<CardGroup cols={2}>
  <Card title="Project Workflow" icon="arrows-spin" href="/latest/cli/workflow">
    Follow a complete project lifecycle from creation to deployment.
  </Card>

  <Card title="Configuration" icon="gear" href="/latest/cli/configuration">
    Learn about the config file, contexts, and global flags.
  </Card>
</CardGroup>
